/* =============================================================================
   From Your Place — Index / Homepage
   Max-width 1240px · US-first · Light theme
   ============================================================================= */

/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --bg:       #F7F5F1;
  --bg2:      #EEEBE4;
  --white:    #FFFFFF;
  --ink:      #1A1612;
  --muted:    #7A7268;
  --muted-l:  #ABA49C;
  --gold:     #B8923E;
  --border:   rgba(0,0,0,.10);
  --border-s: rgba(0,0,0,.06);
  --radius:   5px;
  --mw:       1240px;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  overflow-x: hidden;
}

/* ── SHARED INNER CONTAINER ────────────────────────────────────────────────── */
.nav-inner, .hero-inner, .trust-inner, .section-inner, .footer-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────────────────── */
.ann-bar {
  background: var(--ink);
  height: 34px;
  overflow: hidden;
  display: flex; align-items: center;
}
.ann-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ann-ticker 26s linear infinite;
  will-change: transform;
}
.ann-bar:hover .ann-track { animation-play-state: paused; }
.ann-msg {
  display: inline-block; flex-shrink: 0;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.82); font-weight: 400;
  padding-right: 80px;
  pointer-events: none;
}
@keyframes ann-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border-s);
  box-shadow: 0 1px 0 var(--border-s);
}
.nav-inner {
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 300; letter-spacing: .16em;
  color: var(--ink); text-decoration: none; white-space: nowrap; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; letter-spacing: .14em;
  color: var(--ink); line-height: 1;
}
.logo-name b, .logo b { color: var(--gold); font-weight: 400; }
.logo-tag {
  font-family: 'Jost', sans-serif; font-size: .47rem; font-weight: 400;
  text-transform: uppercase; color: rgba(0,0,0,.38); line-height: 1;
  letter-spacing: .18em; text-align: center;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-r { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.currency-select {
  border: 1px solid var(--border);
  background: var(--white); color: var(--ink);
  font-family: 'Jost', sans-serif; font-size: .75rem;
  padding: 6px 10px; border-radius: var(--radius);
  cursor: pointer; outline: none; transition: border-color .2s;
}
.currency-select:hover, .currency-select:focus { border-color: var(--ink); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--ink); text-decoration: none; transition: border-color .2s;
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--ink); color: #fff;
  border-radius: 99px;
  font-size: .6rem; font-weight: 500; line-height: 16px; text-align: center;
}

.nav-cta {
  background: var(--gold); color: #1A1410;
  padding: 9px 20px; border-radius: var(--radius);
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(184,146,62,.30);
  transition: filter .2s;
}
.nav-cta:hover { filter: brightness(1.08); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero { padding: 72px 0 80px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.hero-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.14; letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-h em { font-style: italic; }
.hero-sub {
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 22px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem; color: var(--muted);
}
.hm-sep { opacity: .4; }

/* Mockup placeholder (replace with real product photo) */
.hero-visual { position: relative; }
.hero-mockup-placeholder {
  width: 100%; aspect-ratio: 3/4; max-height: 540px;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hmp-inner {
  width: 90%; height: 90%;
  display: flex; align-items: center; justify-content: center;
}
.hmp-frame {
  width: 100%; height: 100%;
  border: 12px solid #C8A96E;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.hmp-map {
  width: 100%; height: 100%;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.hmp-label {
  padding: 20px; text-align: center; color: #2D2418;
  width: 100%; background: rgba(245,240,232,.9);
}
.hmp-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: .16em;
}
.hmp-region { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin: 4px 0 2px; }
.hmp-coords { font-size: .55rem; opacity: .45; }

/* ── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding: 14px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px 36px;
}
.tb-item { font-size: .7rem; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.hiw-section { padding: 80px 0; }
.section-eyebrow {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300; letter-spacing: .03em; margin-bottom: 8px;
}
.section-sub { font-size: .84rem; color: var(--muted); margin-bottom: 40px; }

.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.hiw-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--border);
  margin-bottom: 12px; line-height: 1;
}
.hiw-ttl { font-size: .9rem; font-weight: 500; margin-bottom: 8px; letter-spacing: .02em; }
.hiw-txt { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ── 7 STYLES SECTION ──────────────────────────────────────────────────────── */
.styles-section { padding: 80px 0; background: var(--bg2); }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}

/* 7 cards: first 4 in 2×2, last 3 fill row — CSS handles naturally with 3-col */
.style-card {
  background: var(--white);
  border-radius: 8px; overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}

.style-preview {
  height: 220px; position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.sp-label {
  padding: 14px 16px; text-align: center; width: 100%;
  background: inherit;
}
.sp-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; letter-spacing: .18em;
}
.sp-region { font-size: .5rem; letter-spacing: .22em; opacity: .6; margin-top: 2px; }

.style-info { padding: 16px 18px 18px; }
.style-name {
  font-size: .88rem; font-weight: 500; letter-spacing: .04em; margin-bottom: 5px;
}
.style-desc { font-size: .76rem; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.style-cta {
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color .2s;
}
.style-cta:hover { border-color: var(--ink); }

.styles-cta-row {
  display: flex; justify-content: center; margin-top: 48px;
}

/* ── GIFT / EMOTIONAL ──────────────────────────────────────────────────────── */
.gift-section { padding: 80px 0; }
.gift-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.gift-body { font-size: .86rem; color: var(--muted); line-height: 1.75; margin: 18px 0 22px; }
.gift-list {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 28px;
}
.gift-list li {
  font-size: .8rem; color: var(--muted); padding-left: 16px; position: relative;
}
.gift-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: .7rem;
}
.gift-visual { display: flex; align-items: center; justify-content: center; }
.gv-stack { position: relative; width: 240px; height: 300px; }
.gv-card {
  position: absolute; width: 170px; height: 220px;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex; align-items: flex-end; justify-content: center;
}
.gv-card:nth-child(1) { left: 0; top: 40px; z-index: 1; }
.gv-card:nth-child(2) { left: 50px; top: 10px; z-index: 2; }
.gv-card:nth-child(3) { left: 100px; top: 60px; z-index: 3; }
.gv-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; letter-spacing: .16em;
  padding: 10px; text-align: center; width: 100%;
  background: rgba(0,0,0,.1);
}

/* ── USP ───────────────────────────────────────────────────────────────────── */
.usp-section { padding: 72px 0; background: var(--bg2); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 0; }
.usp-ico { font-size: 1.2rem; margin-bottom: 10px; opacity: .6; }
.usp-ttl { font-size: .86rem; font-weight: 500; margin-bottom: 7px; letter-spacing: .02em; }
.usp-txt { font-size: .76rem; color: var(--muted); line-height: 1.65; }

/* ── FINAL CTA ─────────────────────────────────────────────────────────────── */
.final-cta-section { padding: 100px 0; text-align: center; }
.fcs-inner { max-width: 560px; }
.fcs-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300; letter-spacing: .03em; margin-bottom: 12px;
}
.fcs-sub { font-size: .84rem; color: var(--muted); margin-bottom: 28px; }
.fcs-trust { font-size: .65rem; color: var(--muted-l); margin-top: 14px; }

/* ── SHARED BUTTONS ────────────────────────────────────────────────────────── */
.btn-dark {
  background: var(--gold); color: #1A1410;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .10em; text-transform: uppercase; text-decoration: none; display: inline-block;
  box-shadow: 0 2px 12px rgba(184,146,62,.32);
  transition: filter .2s;
}
.btn-dark:hover { filter: brightness(1.08); }
.btn-dark.btn-lg { padding: 16px 36px; font-size: .84rem; }

.btn-ghost {
  color: var(--muted); font-size: .8rem; text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--bg2); }
.faq-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.faq-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 56px; margin-top: 44px;
}
.faq-group { margin-bottom: 40px; }
.faq-group-ttl {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border-s);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 13px 0;
  font-size: .88rem; font-weight: 400; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  user-select: none;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.1rem; font-weight: 300; color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold); }
.faq-item p {
  font-size: .82rem; color: var(--muted); line-height: 1.7;
  padding: 0 0 14px;
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; letter-spacing: .14em;
  color: var(--white); margin-bottom: 8px;
}
.f-logo b { color: var(--gold); font-weight: 400; }
.f-sub { font-size: .72rem; line-height: 1.6; }

/* Newsletter in footer */
.f-newsletter { margin-top: 22px; }
.f-nl-label {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px; font-weight: 400;
}
.f-nl-form { display: flex; gap: 0; }
.f-nl-input {
  flex: 1; padding: 9px 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white); font-family: 'Jost', sans-serif; font-size: .78rem;
  outline: none; transition: border-color .2s;
}
.f-nl-input::placeholder { color: rgba(255,255,255,.3); }
.f-nl-input:focus { border-color: var(--gold); }
.f-nl-btn {
  padding: 9px 14px;
  background: var(--gold); color: #1A1410; border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Jost', sans-serif; font-size: .66rem; font-weight: 500;
  letter-spacing: .10em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; transition: filter .2s;
}
.f-nl-btn:hover { filter: brightness(1.08); }
.f-nl-ok { font-size: .78rem; color: var(--gold); margin-top: 8px; }
.f-nl-note { font-size: .64rem; color: rgba(255,255,255,.28); margin-top: 8px; }

/* Cookie consent bar */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-txt {
  font-size: .76rem; color: rgba(255,255,255,.72); line-height: 1.5; flex: 1;
}
.cookie-txt a { color: var(--gold); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 16px; background: var(--gold); color: #1A1410; border: none;
  border-radius: var(--radius); font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em; cursor: pointer;
  transition: filter .2s;
}
.cookie-accept:hover { filter: brightness(1.08); }
.cookie-essential {
  padding: 8px 16px; background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.20); border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: .72rem; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-essential:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.f-col h4 {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 14px; font-weight: 400;
}
.f-col a {
  display: block; font-size: .76rem; color: rgba(255,255,255,.6);
  text-decoration: none; margin-bottom: 8px; transition: color .2s;
}
.f-col a:hover { color: var(--white); }
.f-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  font-size: .65rem; color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-cols { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; } /* hero mockup hidden on mobile until real photo added */
  .hiw-grid { grid-template-columns: 1fr; gap: 28px; }
  .gift-inner { grid-template-columns: 1fr; }
  .gift-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: 1 / -1; }
  .f-bottom { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { gap: 10px; padding: 0 14px; }
  .nav-r { gap: 8px; }
  .logo-tag { display: none; }
  .nav-cta { padding: 8px 14px; font-size: .6rem; letter-spacing: .08em; }
  .currency-select { display: none; }
  .styles-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { gap: 12px 20px; }
}
