/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Colors pulled from the vibe of your mockup */
:root {
    --bg: #f6efe6;
    --text-main: #3a2416;
    --accent: #21543a;
    --accent-dark: #163628;
}

/* Global styles */
body {
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

/* Center content on large screens */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
	height: 100px;
	overflow: visible;
	display: flex;
	align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

/* Brand/logo group */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 2px solid var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    color: var(--text-main);
}

.nav-links a:hover {
    opacity: 0.65;
}

/* HERO SECTION */
.hero {
    padding: 3.5rem 0 2.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    font-family: "Playfair Display", serif;
    font-size: 6rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 28rem;
    margin-bottom: 2rem;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    background-color: var(--accent);
    color: #fdfbf7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
}

/* Little doodle placeholder on the right */
.hero-doodles {
    position: relative;
    min-height: 160px;
}

.branch-top img {
    height: 500px;
	width: auto;
    left: 30%;
	top: 0;
}

.bottom-branches {
    bottom: 0;
    left: 0;
    width: 100%;      /* stretch container across the page */
}

.bottom-branches img {
    width: 100%;      /* stretch the actual image */
    height: auto;     /* keep proportions */
    display: block;
}


/* HERO IMAGE */
.hero-image {
    padding-bottom: .5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* STORY SECTION */
.story {
    padding: 0 0 -3rem;
}
.story-inner h2 {
    font-family: "Playfair Display", serif;
    font-size: 80px;
    margin-bottom: 0.75rem;
}

.story-inner p {
    font-size: 1.3rem;
}

/* ----------------------------- */
/*        RESPONSIVE STYLES      */
/* ----------------------------- */

/* Medium screens */
@media (max-width: 900px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .hero-inner {
        grid-template-columns: 1.4fr 1fr;
    }
}

/* Phones */
@media (max-width: 640px) {

    .nav-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-doodles {
        display: none;  /* hide doodle on small screens to keep it clean */
    }


    .hero-copy h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .story-inner h2 {
        font-size: 1.6rem;
    }
}
.logo-img {
    height: 160px;
    width: auto;
    object-fit: contain;
	margin-top: 10px;
}
.shop-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
}

.shop-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.shop-header p {
    font-size: 1.1rem;
    color: var(--text-main);
}

.product-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #fcf8f2;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.product-card .price {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}
/* ABOUT PAGE */

.about-hero {
    padding: 4rem 1.5rem 2.5rem;
    background-color: var(--bg);
}

.about-hero .container {
    max-width: 900px;
}

.about-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    color: var(--text-main);
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.05rem;
    max-width: 36rem;
}

/* Main about layout */

.about-layout {
    padding: 2rem 0 4rem;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p + p {
    margin-top: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* Values section */

.about-values {
    padding: 3rem 1.5rem 5rem;
    background-color: #fcf8f2;
}

.about-values .container {
    max-width: 1100px;
}

.about-values h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #f7efe4;
    border-radius: 12px;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.98rem;
}

/* Responsive tweaks for About */

@media (max-width: 800px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1; /* image above text on mobile if you want */
    }
}
/* CONTACT PAGE */

.contact-hero {
    padding: 4rem 1.5rem 2.5rem;
    background-color: var(--bg);
}

.contact-hero .container {
    max-width: 900px;
}

.contact-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-hero p {
    font-size: 1.05rem;
    max-width: 38rem;
}

/* Layout */

.contact-layout {
    padding: 2.5rem 0 5rem;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: start;
}

/* Left column */

.contact-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.contact-list li + li {
    margin-top: 0.75rem;
}

.contact-list .label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    color: rgba(0, 0, 0, 0.6);
}

.contact-list a {
    color: var(--text-main);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.small-note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Right column – form */

.contact-form-card {
    background-color: #fcf8f2;
    border-radius: 14px;
    padding: 1.8rem 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.7rem 0.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #fdf9f3;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(33, 84, 58, 0.25);
}

/* Make button align nicely with form */

.contact-form .btn-primary {
    margin-top: 0.5rem;
}

/* Responsive */

@media (max-
