/* ============================================================
   AJ FLOWERS — "Atelier"
   An original design, not modelled on another florist.
   Warm ivory canvas, deep botanical ink, terracotta accent.
   Fraunces for display, DM Sans for everything you read or
   click. Filled CTAs, cards that lift, an ink footer that
   closes the page.

   Variable names are kept compatible with the other themes
   (--green = brand dark, --gold = accent) because the cart,
   checkout, product and admin screens style themselves from
   these tokens.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* palette — ink + terracotta on warm ivory */
    --green:       #16211c;                    /* brand dark / primary */
    --green-mid:   #2c3b32;
    --green-light: #eceff0;
    --sage:        #9baa9f;
    --sage-deep:   #6e8375;
    --gold:        #c2603a;                    /* accent (terracotta) */
    --gold-deep:   #9e4a2b;
    --gold-light:  #e8b79e;
    --gold-pale:   #fbeee7;
    --plum:        #16211c;                    /* aliases for shared partials */
    --plum-soft:   #55635b;
    --dark:        #16211c;
    --gray:        #7c8a81;
    --light:       #f6f3ee;
    --white:       #ffffff;
    --cream:       #fcfaf7;
    --border:      rgba(22, 33, 28, .12);
    --hairline:    rgba(22, 33, 28, .08);
    --shadow:      0 18px 44px -22px rgba(22, 33, 28, .30);
    --shadow-sm:   0 10px 24px -16px rgba(22, 33, 28, .26);
    --radius:      12px;
    --radius-lg:   18px;
    --transition:  .3s cubic-bezier(.2, .7, .3, 1);
    --font-serif:  'Fraunces', 'Georgia', serif;
    --font-sans:   'DM Sans', -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--plum-soft);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
    font-family: var(--font-serif);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -.01em;
    color: var(--dark);
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
em  { font-style: normal; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section   { padding: 84px 0; }

::selection { background: var(--gold-pale); color: var(--gold-deep); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 30px;
    min-height: 52px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    cursor: pointer;
    border: 1px solid var(--dark);
    background: var(--dark);
    color: #fff;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn:hover { background: var(--green-mid); border-color: var(--green-mid); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: none; box-shadow: none; }

/* accent — the one that asks for the sale */
.btn-primary { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-secondary,
.btn-outline { background: transparent; border-color: var(--border); color: var(--dark); }
.btn-secondary:hover,
.btn-outline:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

.btn-light { background: var(--white); border-color: var(--white); color: var(--dark); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.btn-fill { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-fill:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-ghost,
.btn-ghost-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover,
.btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--dark); }

.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13.5px; }

/* ============ HEADER ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 250, 247, .88);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--hairline);
}
.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 88px;
    gap: 24px;
}
.navbar-brand { order: 0; justify-self: start; }
.navbar-menu  { order: 1; justify-self: center; display: flex; gap: 34px; }
.navbar-icons { order: 2; justify-self: end; display: flex; gap: 4px; align-items: center; }

.navbar-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--plum-soft);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}
.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--dark); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }

/* drawer-only chrome — the mobile media query turns these on */
.navbar-menu-footer { display: none; }
.nav-overlay { display: none; }
.navbar-lead { display: contents; }

.logo { display: flex; align-items: center; gap: 13px; }
.logo img {
    width: 46px; height: 46px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--border);
}
.logo span {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.015em;
    color: var(--dark);
    line-height: 1.1;
}
.logo span em { color: var(--gold); }

.icon-link {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 16px;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
}
.icon-link:hover { background: var(--gold-pale); color: var(--gold-deep); }
.cart-badge {
    position: absolute;
    top: 3px; right: 0;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--cream);
}

/* announcement strip above the header */
.utility-bar {
    background: var(--green);
    position: relative;
    padding: 10px 0;
    text-align: center;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: .02em;
    color: rgba(255,255,255,.86);
}
.utility-bar .utility-social {
    position: absolute;
    left: 40px; top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 16px;
}
.utility-bar .utility-social a { color: rgba(255,255,255,.6); font-size: 14px; transition: color var(--transition); }
.utility-bar .utility-social a:hover { color: var(--gold-light); }

/* ============ HERO ============ */
.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--green);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(22,33,28,.78) 0%, rgba(22,33,28,.42) 46%, rgba(22,33,28,.10) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0;
    padding: 104px 0;
    text-align: left;
}
.hero-title {
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.02em;
    margin-bottom: 0;
}
.hero-title em { color: var(--gold-light); }
.hero-divider {
    width: 58px; height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    margin: 26px 0 22px;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.86);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 34px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.hero-leaf { display: none; }

/* ============ SECTION TITLES ============ */
.section-title {
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -.02em;
    text-align: left;
    margin-bottom: 0;
}
.section-title::after {
    content: '';
    display: block;
    width: 46px; height: 2px;
    border-radius: 2px;
    background: var(--gold);
    margin-top: 16px;
}
.section-subtitle {
    font-size: 16.5px;
    color: var(--gray);
    text-align: left;
    max-width: 620px;
    margin: 18px 0 40px;
}

/* ============ PAGE HEADERS ============ */
.shop-header, .about-header, .contact-header, .cart-header, .checkout-header {
    background: var(--light);
    border-bottom: 1px solid var(--hairline);
    padding: 66px 0 58px;
}
.shop-header::after, .about-header::after, .contact-header::after,
.cart-header::after, .checkout-header::after { content: none; }
.shop-header .section-title, .about-header .section-title, .contact-header .section-title,
.cart-header .section-title, .checkout-header .section-title { color: var(--dark); }
.shop-header .section-subtitle, .about-header .section-subtitle,
.contact-header .section-subtitle { color: var(--gray); margin-bottom: 0; }

/* ============ COLLECTIONS ============ */
.featured-collections { background: var(--cream); }
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}
.collections-grid:has(> :nth-child(2):last-child),
.collections-grid:has(> :only-child) { grid-template-columns: repeat(auto-fit, minmax(290px, 480px)); justify-content: center; }
.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.collection-card::after { content: none; }
.collection-image {
    height: 430px;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.collection-card:hover .collection-image { transform: scale(1.06); }
.collection-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 30px;
    background: linear-gradient(to top, rgba(22,33,28,.80) 0%, rgba(22,33,28,.30) 42%, rgba(22,33,28,0) 72%);
    transition: background var(--transition);
}
.collection-card:hover .collection-overlay { background: linear-gradient(to top, rgba(22,33,28,.86) 0%, rgba(22,33,28,.38) 48%, rgba(22,33,28,.04) 78%); }
.collection-overlay h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -.015em;
    margin-bottom: 6px;
}
.collection-overlay p {
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 88%;
}

/* ============ PRODUCT CARDS ============ */
.products-section { padding-top: 84px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
    gap: 30px 24px;
    margin-bottom: 56px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.product-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--light);
}
.product-image > a { display: block; width: 100%; height: 100%; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.product-card:hover .product-image img { transform: scale(1.07); }
.product-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 14px;
    background: linear-gradient(to top, rgba(22,33,28,.62), rgba(22,33,28,0));
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; transform: none; }
.product-overlay .btn { background: var(--white); border-color: var(--white); color: var(--dark); box-shadow: none; }
.product-overlay .btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.product-overlay .btn-secondary { background: var(--white); color: var(--dark); border-color: var(--white); }
.product-overlay .btn-secondary:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.product-info { padding: 18px 20px 22px; text-align: left; }
.product-title { font-size: 17.5px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; line-height: 1.4; margin-bottom: 7px; color: var(--dark); }
.product-title a:hover { color: var(--gold-deep); }
.product-description { display: none; }
.product-price { display: flex; align-items: baseline; gap: 9px; }
.price { font-size: 16.5px; font-weight: 700; color: var(--gold-deep); letter-spacing: 0; }
.original-price { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.product-rating { display: none; }

/* ============ FILTERS ============ */
.shop-filters { padding: 34px 0 0; }
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--plum-soft);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--dark); color: var(--dark); }
.filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.sort-select {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 14px;
    cursor: pointer;
    transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--gold); outline: none; }

/* ============ PAGINATION ============ */
.pagination { display: flex; justify-content: center; gap: 8px; list-style: none; }
.pagination .page-item .page-link,
.page-link {
    min-width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.page-link:hover, .page-link.active, .pagination .page-item.active .page-link {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}
.pagination .page-item.disabled .page-link { opacity: .4; pointer-events: none; }

/* ============ ABOUT / STORY ============ */
.about-preview { background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}
.about-content .section-title { text-align: left; }
.about-content > p { color: var(--plum-soft); margin: 22px 0; line-height: 1.85; }
.feature-list { margin-bottom: 34px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid var(--hairline);
    color: var(--plum-soft);
    font-size: 15.5px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i {
    color: var(--gold-deep);
    font-size: 11px;
    background: var(--gold-pale);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-image { position: relative; }
.about-image::before { content: none; }
.about-image img { width: 100%; border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}
.story-image { position: relative; }
.story-image::before { content: none; }
.story-image img { width: 100%; border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow); }
.story-content h2 { font-size: clamp(27px, 3vw, 38px); font-weight: 500; letter-spacing: -.02em; margin-bottom: 20px; color: var(--dark); }
.story-content p { color: var(--plum-soft); line-height: 1.85; margin-bottom: 16px; }

/* ============ VALUES ============ */
.values-section { background: var(--cream); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card::before { content: none; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-card i {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--gold-pale);
    color: var(--gold-deep);
    font-size: 19px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.value-card h3 { font-size: 21px; font-weight: 500; color: var(--dark); margin-bottom: 9px; }
.value-card p { font-size: 15px; color: var(--plum-soft); line-height: 1.75; }

/* ============ TEAM ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 34px;
}
.team-member { text-align: center; }
.team-member img {
    width: 168px; height: 168px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-member:hover img { transform: translateY(-4px); box-shadow: 0 0 0 2px var(--gold-light), var(--shadow); }
.team-member h3 { font-size: 20px; color: var(--dark); margin-bottom: 3px; }
.team-member p { font-size: 12px; color: var(--gold-deep); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); border-top: 1px solid var(--hairline); }
.testimonials .section-title { color: var(--dark); }
.testimonials .section-subtitle { color: var(--gray); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--light);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.testimonial-content i { font-size: 26px; color: var(--gold-light); margin-bottom: 14px; display: block; }
.testimonial-content p {
    color: var(--plum-soft);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
}
.testimonial-author h4 { font-size: 15.5px; font-weight: 500; color: var(--dark); font-family: var(--font-sans); }
.testimonial-author span { font-size: 11.5px; color: var(--gray); letter-spacing: .14em; text-transform: uppercase; }

/* ============ CTA BANNER (full-bleed photo) ============ */
.cta-section {
    position: relative;
    padding: 128px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: var(--green);
    border: none;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22,33,28,.62), rgba(22,33,28,.72));
    width: auto; height: auto;
    border: none; border-radius: 0;
    transform: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}
.cta-content h2 em { color: var(--gold-light); }
.cta-content p { color: rgba(255,255,255,.86); font-size: 17.5px; line-height: 1.75; max-width: 660px; margin: 0 auto 34px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { background: var(--gold); border-color: var(--gold); color: #fff; }
.cta-buttons .btn:hover { background: #fff; border-color: #fff; color: var(--dark); }
/* the markup gives both CTAs a bare .btn — demote the second so the pair has a hierarchy */
.cta-buttons .btn + .btn { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.7); color: #fff; }
.cta-buttons .btn + .btn:hover { background: #fff; border-color: #fff; color: var(--dark); }
.cta-buttons .btn-secondary,
.cta-buttons .btn-ghost-light { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.7); color: #fff; }
.cta-buttons .btn-secondary:hover,
.cta-buttons .btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--dark); }

/* ============ FEATURES STRIP ============ */
.features-section { background: var(--light); border-top: 1px solid var(--hairline); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 26px;
    text-align: center;
}
.feature-item i {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gold-deep);
    font-size: 19px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: var(--shadow-sm);
}
.feature-item h3 { font-size: 16px; font-family: var(--font-sans); font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--gray); }

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
}
.contact-info h2, .contact-form h2 { font-size: 27px; font-weight: 500; letter-spacing: -.02em; color: var(--dark); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item > i {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gold-pale);
    color: var(--gold-deep);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}
.contact-item h3 { font-size: 12px; font-family: var(--font-sans); font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-item p { font-size: 16px; color: var(--dark); line-height: 1.7; }

.social-links h3 { font-size: 20px; color: var(--dark); margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

/* ============ FORMS ============ */
.message-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); outline: none; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ============ MAP ============ */
.map-section { background: var(--cream); border-top: 1px solid var(--hairline); }
.map-placeholder {
    background: var(--light);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
.map-content { text-align: center; }
.map-content i { font-size: 30px; color: var(--gold-deep); margin-bottom: 14px; display: block; }
.map-content h3 { font-size: 23px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.map-content p { font-size: 15.5px; color: var(--plum-soft); margin-bottom: 22px; }

/* ============ SEARCH BAR ============ */
.search-bar {
    background: var(--white);
    border-bottom: 1px solid var(--hairline);
    padding: 18px 0;
}
.search-form { display: flex; gap: 10px; align-items: center; }
.search-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.search-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); outline: none; }
.search-form button {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.search-form button[type=submit] { background: var(--dark); border-color: var(--dark); color: #fff; }
.search-form button[type=submit]:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.search-form button#searchClose:hover { border-color: var(--dark); background: var(--light); }

/* ============ ALERTS ============ */
.alert-success {
    background: var(--gold-pale);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    color: var(--gold-deep);
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 15px;
}
.alert-success i { color: var(--gold-deep); margin-right: 8px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--green);
    color: rgba(255,255,255,.68);
    margin-top: 0;
}
.footer-ornament {
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}
.footer .container { padding-top: 68px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 46px;
    padding-bottom: 52px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.footer-brand h3 { font-size: 22px; font-weight: 500; color: #fff; letter-spacing: -.015em; }
.footer-column p { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,.66); }
.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.footer-column ul li { margin-bottom: 11px; }
.footer-column ul li a { font-size: 14.5px; color: rgba(255,255,255,.66); transition: color var(--transition); }
.footer-column ul li a:hover { color: var(--gold-light); }
.footer-column p i { color: var(--gold-light); width: 18px; margin-right: 8px; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.8);
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--gold-light); outline: none; }
.newsletter-form button {
    padding: 0 20px;
    min-height: 44px;
    border-radius: 999px;
    border: none;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-deep); }

.footer-nav { display: flex; gap: 26px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.66); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-light); }

.footer-heading { font-size: 28px; font-weight: 500; color: #fff; margin-bottom: 24px; text-align: center; }
.footer-contact p { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 12px; text-align: center; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    text-align: center;
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
    .about-grid, .story-grid { gap: 44px; }
    .navbar-menu { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
    .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .container { padding: 0 24px; }
    .utility-bar .utility-social { left: 24px; }
    .section { padding: 62px 0; }
    .products-section { padding-top: 62px; }
}

@media (max-width: 760px) {
    .section { padding: 48px 0; }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-image { height: 320px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
    .product-info { padding: 14px 14px 18px; }
    .product-title { font-size: 15.5px; }
    .price { font-size: 15px; }
    .hero-section { min-height: 500px; }
    .hero-content { padding: 74px 0; }
    .filter-bar { flex-direction: column; align-items: flex-start; }
    .utility-bar { font-size: 12.5px; }
    .utility-bar .utility-social { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .team-member img { width: 140px; height: 140px; }

    /* Mobile menu — slide-in drawer */
    .navbar .container { grid-template-columns: auto 1fr auto; height: 72px; gap: 6px; padding: 0 16px; }
    .navbar-brand { justify-self: start; min-width: 0; }
    .logo { gap: 9px; }
    .logo img { width: 34px; height: 34px; flex-shrink: 0; }
    .logo span { font-size: 16.5px; white-space: nowrap; }
    .navbar-icons { gap: 0; }
    .icon-link { width: 38px; height: 38px; font-size: 15px; }
    .hamburger { display: flex !important; }
    .navbar-lead { display: contents; }

    .navbar-menu {
        display: flex;
        position: fixed;
        top: var(--nav-bottom, 72px); left: 0; right: auto;
        width: calc(100vw - 62px);
        max-width: 400px;
        height: calc(100vh - var(--nav-bottom, 72px));
        height: calc(100dvh - var(--nav-bottom, 72px));
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        justify-self: stretch;
        padding: 22px 0 0;
        gap: 0;
        z-index: 120;
        overflow-y: auto;
        overscroll-behavior: contain;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform var(--transition), visibility var(--transition);
    }
    .navbar-menu.open { transform: translateX(0); visibility: visible; }
    .navbar-menu a {
        padding: 14px 26px;
        font-size: 17px;
        font-weight: 500;
        color: var(--dark);
        border-bottom: 1px solid var(--hairline);
    }
    .navbar-menu a::after { display: none; }
    .navbar-menu a.active { color: var(--gold-deep); background: var(--gold-pale); }

    .navbar-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding: 22px 26px;
        background: var(--green);
    }
    .navbar-menu-footer .drawer-phone { padding: 0; font-size: 15.5px; font-weight: 500; color: #fff; border: none; }
    .drawer-social { display: flex; gap: 18px; }
    .drawer-social a { padding: 0; font-size: 16px; color: rgba(255,255,255,.7); border: none; }
    .drawer-social a:hover { color: var(--gold-light); background: none; }

    .nav-overlay {
        display: block;
        position: fixed;
        top: var(--nav-bottom, 72px); left: 0;
        width: 100vw;
        height: calc(100vh - var(--nav-bottom, 72px));
        height: calc(100dvh - var(--nav-bottom, 72px));
        background: rgba(22, 33, 28, .45);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 110;
    }
    .nav-overlay.open { opacity: 1; visibility: visible; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
}
