/* ============================================================================
   Ojavik(TM) - Brand Stylesheet
   ============================================================================ */

:root {
  --forest:     #2D4A2B;
  --forest-d:   #1A3018;
  --forest-l:   #4A6B47;
  --saffron:    #C8851A;
  --saffron-l:  #E5A93D;
  --saffron-d:  #A06914;
  --cream:      #F4ECD8;
  --cream-d:    #E8DCC0;
  --cream-dd:   #DCCEA9;
  --ink:        #1A1A1A;
  --ink-2:      #2D2D2D;
  --terracotta: #B5573F;
  --muted:      #6B6157;
  --muted-l:    #9B9085;
  --white:      #FEFCF7;
  --shadow:     rgba(45, 74, 43, 0.10);
  --shadow-lg:  rgba(45, 74, 43, 0.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

.serif    { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }
.tracking { letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; }
.eyebrow  { font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase; font-weight: 600; color: var(--saffron); }

a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--saffron); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }
section.compact { padding: 56px 0; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--forest-d);
  color: rgba(244, 236, 216, .85);
  font-size: 12px;
  padding: 8px 32px;
  text-align: center;
  letter-spacing: .04em;
}
.topbar strong { color: var(--saffron-l); font-weight: 600; }
.topbar a { color: var(--cream); border-bottom: 1px solid rgba(244, 236, 216, .3); }
.topbar a:hover { color: var(--saffron-l); border-color: var(--saffron-l); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 216, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 74, 43, 0.10);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-brand img { width: 64px; height: 64px; }
.nav-brand .tm { font-size: 16px; vertical-align: super; color: var(--saffron); font-family: 'Inter', sans-serif; font-weight: 600; margin-left: 2px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  /* No drop shadow — the cream nav has a transparent backdrop, and any
     shadow leaked below the nav border, making the button look detached. */
  box-shadow: none;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover {
  background: var(--saffron) !important;
  color: var(--white) !important;
  border-color: var(--saffron-d);
}
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .25s, opacity .25s; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(160deg, var(--forest-d) 0%, var(--forest) 100%);
  color: var(--cream);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 133, 26, .12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 236, 216, .08), transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 76px); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; color: var(--cream); margin-bottom: 24px; }
.hero h1 em { color: var(--saffron-l); font-style: italic; }
.hero p { font-size: 18px; color: rgba(244, 236, 216, .8); margin-bottom: 36px; max-width: 540px; }
.hero .badges { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(244, 236, 216, .08);
  border: 1px solid rgba(244, 236, 216, .15);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(244, 236, 216, .85);
}
.hero .badge::before { content: '✓'; color: var(--saffron-l); font-weight: 700; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img { max-width: 100%; max-height: 540px; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-d); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(200, 133, 26, .35); }
.btn-secondary { background: transparent; color: var(--cream); border-color: rgba(244, 236, 216, .4); }
.btn-secondary:hover { background: rgba(244, 236, 216, .1); color: var(--cream); border-color: var(--cream); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); }

/* ============ SECTION HEADER ============ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { color: var(--saffron); margin-bottom: 16px; display: block; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 52px); font-weight: 500; line-height: 1.1; color: var(--forest-d); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ============ PRODUCT GRID ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  border: 1px solid var(--cream-d);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px var(--shadow-lg); border-color: var(--saffron-l); }
.product-card .img-wrap {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.product-card img { max-height: 100%; width: auto; filter: drop-shadow(0 16px 24px rgba(0,0,0,.15)); }
.product-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--forest-d); margin-bottom: 6px; }
.product-card .sku { font-size: 11px; letter-spacing: .28em; color: var(--saffron); text-transform: uppercase; font-weight: 600; }
.product-card .desc { font-size: 13px; color: var(--muted); margin-top: 12px; flex-grow: 1; }
.product-card .pcard-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--cream-d); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--forest); font-weight: 600; }
.product-card .arrow { transition: transform .2s; }
.product-card:hover .arrow { transform: translateX(4px); }

/* ============ FEATURE STRIP ============ */
.features {
  background: var(--white);
  border-top: 1px solid var(--cream-d);
  border-bottom: 1px solid var(--cream-d);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 24px 12px;
}
.feature .ico {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--saffron);
}
.feature h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--forest-d); margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--muted); }

/* ============ STORY ============ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.15; color: var(--forest-d); margin-bottom: 24px; }
.story-copy p { font-size: 16px; color: var(--ink-2); margin-bottom: 18px; }
.story-copy .emphasis {
  background: var(--white);
  border-left: 3px solid var(--saffron);
  padding: 24px 28px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--forest-d);
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}
.story-copy .emphasis em { color: var(--saffron); font-weight: 600; }
.story-visual { display: flex; justify-content: center; align-items: center; }
.story-visual img { max-width: 380px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.blog-card { background: var(--white); border-radius: 14px; overflow: hidden; transition: transform .3s, box-shadow .3s; border: 1px solid var(--cream-d); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow-lg); }
.blog-card .img-wrap { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--cream-d); }
.blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.blog-card:hover .img-wrap img { transform: scale(1.04); }
.blog-card .img-wrap .badge { position: absolute; top: 16px; left: 16px; background: var(--white); padding: 6px 12px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--forest); z-index: 1; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.blog-card .content { padding: 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .meta { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-l); margin-bottom: 12px; font-weight: 600; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; line-height: 1.25; color: var(--forest-d); margin-bottom: 12px; }
.blog-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex-grow: 1; }
.blog-card .read-more { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron); }

/* Blog post body */
.post-cover { background: var(--cream); padding: 0; margin-top: -32px; }
.post-cover .container { max-width: 1080px; padding: 0 20px; }
.post-cover img { width: 100%; height: auto; max-height: 460px; object-fit: cover; border-radius: 16px; box-shadow: 0 30px 60px rgba(0, 0, 0, .25); display: block; margin: 0 auto; transform: translateY(-32px); }
.post-hero { background: linear-gradient(160deg, var(--forest-d), var(--forest)); color: var(--cream); padding: 80px 0 64px; text-align: center; }
.blog-post-hero { padding-bottom: 96px; }
.post-hero .meta { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--saffron-l); margin-bottom: 16px; font-weight: 600; }
.post-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 500; line-height: 1.1; max-width: 880px; margin: 0 auto 16px; }
.post-hero p { font-size: 17px; color: rgba(244, 236, 216, .8); max-width: 640px; margin: 0 auto; }
.post-body { background: var(--white); padding: 72px 0; }
.post-body article { max-width: 720px; margin: 0 auto; padding: 0 32px; font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.post-body article h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--forest-d); margin: 48px 0 18px; }
.post-body article h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--forest); margin: 32px 0 12px; }
.post-body article p { margin-bottom: 18px; }
.post-body article blockquote { border-left: 3px solid var(--saffron); padding: 14px 24px; margin: 28px 0; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--forest-d); }
.post-body article ul { margin: 0 0 24px 24px; }
.post-body article li { margin-bottom: 8px; }

/* ============ VIDEOS ============ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.video-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--cream-d); transition: transform .3s, box-shadow .3s; }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px var(--shadow-lg); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--forest-d); overflow: hidden; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 18px 22px; }
.video-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--forest-d); margin-bottom: 6px; }
.video-info p { font-size: 13px; color: var(--muted); }

/* ============ INSTAGRAM ============ */
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.ig-tile { aspect-ratio: 1; background: linear-gradient(135deg, var(--saffron-l), var(--terracotta)); border-radius: 12px; position: relative; overflow: hidden; cursor: pointer; transition: transform .3s; display: flex; align-items: center; justify-content: center; color: var(--white); }
.ig-tile:hover { transform: scale(1.02); }
.ig-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26, 48, 24, .25);
  opacity: 0;
  transition: opacity .25s;
}
.ig-tile:hover::before { opacity: 1; }
.ig-tile .icon {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 1;
}
.ig-tile .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  font-size: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: var(--white);
  z-index: 1;
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--forest-d); margin-bottom: 14px; line-height: 1.15; }
.contact-info p { color: var(--muted); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }
.contact-info ul { list-style: none; }
.contact-info li { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.contact-info li .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--saffron); }
.contact-info li .label { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--muted-l); display: block; margin-bottom: 4px; }
.contact-info li .value { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.45; word-break: break-word; }
.contact-info li .value a { color: var(--forest); border-bottom: 1px solid transparent; }
.contact-info li .value a:hover { border-color: var(--saffron); color: var(--saffron); }

.contact-form { background: var(--white); border-radius: 18px; padding: 36px 40px; border: 1px solid var(--cream-d); box-shadow: 0 16px 40px rgba(45, 74, 43, 0.06); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--forest-d); margin-bottom: 8px; line-height: 1.2; }
.contact-form .lead { color: var(--muted); font-size: 14px; margin-bottom: 28px; line-height: 1.5; }

/* "Your message is ready" panel shown after submit (replaces the form) */
.contact-ready { background: var(--white); border: 1px solid var(--cream-d); border-radius: 18px; padding: 36px 40px; box-shadow: 0 16px 40px rgba(45, 74, 43, 0.06); }
.contact-ready__head h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--forest-d); margin: 0 0 8px; line-height: 1.2; }
.contact-ready__head p { color: var(--muted); font-size: 14px; margin: 0 0 22px; line-height: 1.5; }
.contact-ready__meta { background: var(--cream); border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; display: grid; gap: 8px; }
.contact-ready__meta .lbl { display: inline-block; min-width: 72px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-l); font-weight: 700; margin-right: 12px; }
.contact-ready__meta .val { font-size: 14px; color: var(--ink); font-weight: 500; word-break: break-word; }
.contact-ready__body { width: 100%; min-height: 180px; background: var(--cream); border: 1px solid var(--cream-dd); border-radius: 10px; padding: 14px 16px; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 13px; line-height: 1.5; color: var(--ink-2); resize: vertical; }
.contact-ready__body:focus { outline: 2px solid var(--saffron); outline-offset: 2px; }
.contact-ready__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.contact-ready__actions .btn.is-copied { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.contact-ready__hint { margin-top: 18px; font-size: 13px; color: var(--muted); }
.contact-ready__hint a { color: var(--forest); border-bottom: 1px solid transparent; }
.contact-ready__hint a:hover { border-color: var(--saffron); color: var(--saffron); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--cream-dd);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.full { grid-column: 1 / -1; }

/* ============ FOOTER ============ */
footer { background: var(--forest-d); color: rgba(244, 236, 216, .7); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--cream); letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand .logo .tm { font-size: 13px; vertical-align: super; color: var(--saffron-l); font-family: 'Inter', sans-serif; }
.footer-brand .tagline { font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--saffron-l); font-weight: 600; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244, 236, 216, .08);
  border: 1px solid rgba(244, 236, 216, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s;
}
.footer-social a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); transform: translateY(-2px); }

.footer-col h4 { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 700; color: var(--saffron-l); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(244, 236, 216, .65); }
.footer-col a:hover { color: var(--cream); }

.footer-compliance {
  background: rgba(244, 236, 216, .04);
  border: 1px solid rgba(244, 236, 216, .08);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-compliance img { width: 120px; height: auto; background: var(--white); padding: 8px 12px; border-radius: 6px; }
.footer-compliance .text { font-size: 12px; line-height: 1.7; color: rgba(244, 236, 216, .8); }
.footer-compliance .text strong { color: var(--saffron-l); font-weight: 700; display: block; letter-spacing: .12em; }
.footer-compliance .lic { font-family: 'SF Mono', Menlo, monospace; color: var(--cream); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244, 236, 216, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244, 236, 216, .5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ MISC ============ */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-forest { background: var(--forest-d); color: var(--cream); }
.bg-forest h2 { color: var(--cream); }
.bg-forest .section-header p { color: rgba(244, 236, 216, .75); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

.divider-ornament { text-align: center; margin: 32px 0; }
.divider-ornament svg { color: var(--saffron); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--terracotta) 100%);
  color: var(--white);
  padding: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; margin-bottom: 6px; }
.cta-banner p { font-size: 15px; opacity: .9; max-width: 540px; }
.cta-banner .btn { background: var(--white); color: var(--saffron); }
.cta-banner .btn:hover { background: var(--forest-d); color: var(--cream); }

/* ============ PRODUCT DETAIL ============ */
.pdetail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.pdetail-gallery { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid var(--cream-d); }
.pdetail-main { margin-bottom: 18px; }
.pdetail-main img { width: 100%; max-height: 560px; object-fit: contain; }
.pdetail-thumbs { display: flex; gap: 12px; justify-content: center; }
.pdetail-thumbs button { width: 70px; height: 88px; border-radius: 8px; padding: 6px; cursor: pointer; background: var(--cream); border: 2px solid transparent; transition: border-color .2s; }
.pdetail-thumbs button.active { border-color: var(--saffron); }
.pdetail-thumbs button img { width: 100%; height: 100%; object-fit: contain; }

.pdetail-info .eyebrow { color: var(--saffron); margin-bottom: 12px; }
.pdetail-info h1 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; color: var(--forest-d); line-height: 1.05; margin-bottom: 14px; }
.pdetail-info .lead { font-size: 17px; color: var(--muted); margin-bottom: 28px; }
.pdetail-info .price-row { display: flex; gap: 24px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--cream-d); border-bottom: 1px solid var(--cream-d); margin-bottom: 28px; }
.pdetail-info .price-row .price { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--forest-d); }
.pdetail-info .price-row .net { font-size: 13px; color: var(--muted); letter-spacing: .12em; }
.pdetail-info .attrs { list-style: none; margin: 0 0 28px; }
.pdetail-info .attrs li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 14px; color: var(--ink-2); }
.pdetail-info .attrs li::before { content: '✓'; color: var(--saffron); font-weight: 700; flex-shrink: 0; }

.nutrition-table { width: 100%; background: var(--white); border: 1px solid var(--cream-d); border-radius: 8px; overflow: hidden; }
.nutrition-table thead { background: var(--forest-d); color: var(--cream); }
.nutrition-table th, .nutrition-table td { padding: 10px 16px; text-align: left; font-size: 13px; }
.nutrition-table th { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.nutrition-table tbody tr { border-top: 1px solid var(--cream-d); }
.nutrition-table tbody tr:first-child { border-top: 0; }
.nutrition-table tbody td:last-child { text-align: right; font-weight: 600; color: var(--forest-d); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero .badges { justify-content: center; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-visual img { max-width: 280px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pdetail-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav-brand { font-size: 32px; gap: 12px; }
  .nav-brand img { width: 44px; height: 44px; }
  .nav-brand .tm { font-size: 12px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px; gap: 18px; box-shadow: 0 12px 24px var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 7px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }
  .hero { padding: 64px 0 56px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
