/* ============ Tokens ============ */
:root {
  --bg: #faf6f2;
  --bg-2: #f3e8de;
  --cream: #fffaf5;
  --ink: #1e1411;
  --ink-soft: #5a4641;
  --rose: #d8859a;
  --rose-deep: #9d4665;
  --gold: #b88848;
  --gold-soft: #d9b876;
  --blush: #f5d6d0;
  --shadow: 0 12px 40px rgba(45, 20, 20, .08);
  --shadow-lg: 0 30px 70px rgba(45, 20, 20, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -.015em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); line-height: 1.02; font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.08; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1em; }
a { color: var(--rose-deep); text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0 0 1em;
}
.eyebrow-light { color: var(--gold-soft); }
.lede { color: var(--ink-soft); font-size: 1.08rem; max-width: 640px; margin-inline: auto; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 242, .9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(157, 70, 101, .08);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}
.logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2.1rem;
  color: var(--rose-deep);
  line-height: 1;
}
.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--rose-deep); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.cart-btn {
  position: relative;
  background: var(--ink);
  color: #fff;
  border: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s;
}
.cart-btn:hover { background: var(--rose-deep); transform: translateY(-1px); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 5px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 14vw, 160px) 24px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1535254973040-607b474cb50d?auto=format&fit=crop&w=2400&q=85');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: heroPan 30s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,20,17,.35) 0%, rgba(30,20,17,.65) 100%),
    radial-gradient(60% 60% at 50% 50%, transparent, rgba(30,20,17,.45));
  z-index: -1;
}
.hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #f5d6d0, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin: 1.4em auto 2.4em;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep), #7a2d4a);
  color: #fff;
  box-shadow: 0 10px 30px rgba(157, 70, 101, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(157, 70, 101, .5); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.95); color: var(--ink); border-color: #fff; }
.btn-full { width: 100%; letter-spacing: .04em; }

/* ============ Marquee ============ */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  font-style: italic;
}
.marquee-track span { color: var(--gold-soft); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section {
  padding: clamp(80px, 11vw, 140px) 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 70px; }
.base-note {
  max-width: 640px;
  margin: 18px auto 0;
  padding: 14px 22px;
  background: rgba(157, 70, 101, .06);
  border-left: 3px solid var(--rose-deep);
  border-radius: 6px;
  font-size: .88rem;
  color: var(--ink-soft);
  text-align: left;
}
.base-note strong { color: var(--ink); font-weight: 600; }

/* ============ Add-Ons ============ */
.addons {
  margin-top: clamp(60px, 8vw, 100px);
  padding: clamp(40px, 5vw, 60px);
  background: linear-gradient(135deg, var(--cream), #fff);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(157, 70, 101, .08);
}
.addons-head { text-align: center; margin-bottom: 40px; }
.addons-head h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 .3em;
}
.addons-head .lede { font-size: .98rem; }

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.addons-card {
  background: var(--cream);
  border: 1px solid rgba(157, 70, 101, .1);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
}
.addons-card::before {
  content: "";
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.addons-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30, 20, 17, .08);
  letter-spacing: 0;
  text-transform: none;
}
.addons-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.addons-card li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(30, 20, 17, .08);
  font-size: .92rem;
  line-height: 1.5;
}
.addons-card li:last-child { border-bottom: 0; }
.addons-card li span {
  color: var(--ink);
  flex: 1;
}
.addons-card li em {
  display: block;
  font-style: italic;
  font-size: .78rem;
  color: var(--ink-soft);
  font-family: 'Cormorant Garamond', serif;
  margin-top: 2px;
}
.addons-card li strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--rose-deep);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 760px) {
  .addons-grid { grid-template-columns: 1fr; gap: 22px; }
  .addons { padding: 28px 22px; }
}

/* ============ Ordering Policies ============ */
.policies {
  margin-top: clamp(40px, 6vw, 70px);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.policy-tile {
  background: var(--cream);
  border: 1px solid rgba(157, 70, 101, .1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.policy-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.policy-tile-wide { grid-column: span 2; text-align: left; }

.policy-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  opacity: .85;
}
.policy-tile-wide .policy-icon { text-align: left; }
.policy-tile h5 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0 0 12px;
}
.policy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 10px;
}
.policy-tile p {
  font-size: .86rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.policy-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(30, 20, 17, .08);
  font-size: .9rem;
  color: var(--ink);
}
.policy-list li:last-child { border-bottom: 0; }
.policy-list li strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose-deep);
  font-weight: 600;
}

@media (max-width: 960px) {
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-tile-wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .policies-grid { grid-template-columns: 1fr; }
  .policy-tile-wide { grid-column: auto; }
}

/* ============ Product Grid ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.card-img {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30,20,17,.55));
  opacity: 0;
  transition: opacity .35s ease;
}
.card:hover .card-img::after { opacity: 1; }
.card-img-cta {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.card:hover .card-img-cta { opacity: 1; transform: translateY(0); }

.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin: 0; font-size: 1.55rem; }
.card-title-link { color: var(--ink); transition: color .2s; }
.card-title-link:hover { color: var(--rose-deep); }
.card .desc { color: var(--ink-soft); font-size: .92rem; margin: 8px 0 20px; flex: 1; line-height: 1.6; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; color: var(--rose-deep); font-weight: 600; }
.price small { font-size: .72rem; color: var(--ink-soft); font-weight: 400; letter-spacing: .04em; }
.add-btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .25s;
  font-family: inherit;
}
.add-btn:hover { background: var(--rose-deep); transform: scale(1.04); }

/* ============ Gallery ============ */
.gallery-section {
  background: linear-gradient(180deg, transparent, var(--bg-2) 25%, var(--bg-2) 75%, transparent);
  max-width: none;
}
.gallery-section .section-head, .gallery { max-width: var(--maxw); margin-inline: auto; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
  padding: 0 24px;
}
.g-tile {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 22px 24px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.g-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.g-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.g-tile:hover img { transform: scale(1.08); }
.g-tile span { position: relative; z-index: 2; text-shadow: 0 2px 14px rgba(0,0,0,.6); letter-spacing: .02em; }
.g-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.6));
  z-index: 1;
}
.g-1 { grid-row: span 2; }
.g-4 { grid-column: span 2; }

/* ============ Instagram Strip ============ */
.instagram-strip {
  background: linear-gradient(135deg, #4a1d3a 0%, #7a2d4a 50%, #b88848 100%);
  padding: clamp(40px, 6vw, 70px) 24px;
  position: relative;
  overflow: hidden;
}
.instagram-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(216, 133, 154, .25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 136, 72, .25), transparent 50%);
  pointer-events: none;
}
.ig-cta {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform .25s ease;
}
.ig-cta:hover { transform: translateY(-2px); }
.ig-icon {
  flex-shrink: 0;
  width: 68px; height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center;
  color: #fff;
}
.ig-copy { flex: 1; }
.ig-copy .eyebrow { color: var(--gold-soft); margin-bottom: .5em; }
.ig-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 .2em;
  color: #fff;
}
.ig-copy p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .98rem; }
.ig-arrow {
  font-size: 2rem;
  color: var(--gold-soft);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.ig-cta:hover .ig-arrow { transform: translateX(6px); }

/* ============ Testimonials ============ */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  max-width: none;
}
.testimonials-section .section-head, .testimonials-grid { max-width: var(--maxw); margin-inline: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  padding: 0 24px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  margin: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--rose-deep);
  opacity: .15;
  line-height: 1;
}
.t-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1rem;
}
.testimonial blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.testimonial figcaption {
  border-top: 1px solid rgba(30, 20, 17, .08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial figcaption strong {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.testimonial figcaption span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}

/* ============ Order Form ============ */
.order-section { background: var(--bg-2); max-width: none; }
.order-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.order-copy h2 { margin-bottom: .3em; }
.bullets { padding-left: 1.2em; color: var(--ink-soft); }
.bullets li { margin-bottom: .5em; }

.order-form, .modal-card {
  background: var(--cream);
  padding: 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.order-form label, .modal-card label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.order-form input, .order-form select, .order-form textarea,
.modal-card input, .modal-card select, .modal-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1.5px solid rgba(30, 20, 17, .12);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: border-color .2s, box-shadow .2s;
}
.order-form input:focus, .order-form select:focus, .order-form textarea:focus,
.modal-card input:focus, .modal-card select:focus, .modal-card textarea:focus {
  outline: none; border-color: var(--rose-deep); box-shadow: 0 0 0 4px rgba(157, 70, 101, .12);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { margin: 0 !important; }
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(30, 20, 17, .15);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.chip input:checked + span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.form-note { font-size: .76rem; color: var(--ink-soft); margin-top: 14px; text-align: center; letter-spacing: .02em; text-transform: none; font-weight: 400; }

/* ============ FAQ ============ */
.faq-section { background: var(--cream); max-width: none; }
.faq-section .section-head, .faq-grid { max-width: 880px; margin-inline: auto; }
.faq-grid {
  display: grid;
  gap: 12px;
  padding: 0 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(30, 20, 17, .08);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: rgba(157, 70, 101, .3);
  box-shadow: 0 4px 18px rgba(45, 20, 20, .06);
}
.faq-item summary {
  padding: 20px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rose-deep);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--rose-deep); }
.faq-item p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.7;
}
.faq-item p em {
  color: var(--rose-deep);
  font-style: italic;
  font-size: .9rem;
}
.faq-item a { color: var(--rose-deep); text-decoration: underline; }

/* ============ About ============ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-image: url('https://images.unsplash.com/photo-1559553156-2e97137af16f?auto=format&fit=crop&w=1200&q=85');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* ============ Contact ============ */
.contact-section { background: var(--ink); color: #fff; max-width: none; }
.contact-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0; }
.contact-wrap .eyebrow { color: var(--gold-soft); }
.contact-wrap h2 { color: #fff; }
.contact-qr {
  margin-top: 50px;
}
.qr-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-decoration: none;
  color: #fff;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.qr-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.qr-card img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream);
  padding: 8px;
}
.qr-copy { flex: 1; }
.qr-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin: 0 0 .3em;
  color: #fff;
}
.qr-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}
.qr-link {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  transition: transform .25s ease;
}
.qr-card:hover .qr-link { transform: translateX(4px); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: 0 0 10px;
}
.contact-grid p { color: rgba(255,255,255,.88); margin: 0; }

/* ============ Footer ============ */
.footer {
  text-align: center;
  padding: 30px;
  background: var(--ink);
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  letter-spacing: .04em;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ============ Cart Drawer ============ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(30, 20, 17, .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 90;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  background: var(--cream);
  z-index: 100;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(30, 20, 17, .08);
}
.cart-head h3 { margin: 0; }
.cart-head button { background: none; border: 0; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 28px; }
.cart-empty { color: var(--ink-soft); text-align: center; padding: 40px 0; }
.cart-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(30, 20, 17, .06);
  align-items: center;
}
.cart-thumb {
  width: 60px; height: 60px;
  border-radius: 10px;
  overflow: hidden;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info strong { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.cart-row-info .meta { font-size: .78rem; color: var(--ink-soft); }
.qty { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty button {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(30, 20, 17, .2);
  background: #fff; cursor: pointer; font-weight: 600; color: var(--ink);
}
.qty button:hover { background: var(--ink); color: #fff; }
.cart-foot {
  padding: 22px 28px 26px;
  border-top: 1px solid rgba(30, 20, 17, .08);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--rose-deep); letter-spacing: 0; text-transform: none; }
.remove-btn {
  background: none; border: 0; color: var(--ink-soft); font-size: .72rem;
  cursor: pointer; text-decoration: underline; margin-top: 6px; padding: 0;
}
.remove-btn:hover { color: var(--rose-deep); }

/* ============ Modal ============ */
.modal {
  position: fixed; inset: 0;
  background: rgba(30, 20, 17, .6);
  backdrop-filter: blur(6px);
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card {
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.96);
  transition: transform .3s;
}
.modal.open .modal-card { transform: scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: 0; font-size: 2rem;
  line-height: 1; cursor: pointer; color: var(--ink-soft);
}

/* ============ Checkout Summary + Square Card ============ */
.checkout-summary {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: .92rem;
  color: var(--ink);
}
.checkout-line small { color: var(--ink-soft); }
.checkout-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(30, 20, 17, .12);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}
.checkout-total strong { color: var(--rose-deep); }

.pay-section {
  margin: 18px 0 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 20, 17, .08);
}
.pay-heading {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin: 0 0 14px;
}
.pay-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}
.pay-option { display: block; margin: 0 !important; cursor: pointer; }
.pay-option input { display: none; }
.pay-option-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(30, 20, 17, .12);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.pay-option input:checked + .pay-option-card {
  border-color: var(--rose-deep);
  background: linear-gradient(135deg, rgba(216, 133, 154, .07), rgba(184, 136, 72, .05));
  box-shadow: 0 0 0 3px rgba(157, 70, 101, .12);
}
.pay-option-title {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pay-option input:checked + .pay-option-card .pay-option-title { color: var(--rose-deep); }
.pay-option-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.pay-option-sub {
  font-size: .76rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

#card-container {
  min-height: 90px;
  background: #fff;
  border: 1.5px solid rgba(30, 20, 17, .12);
  border-radius: 10px;
  padding: 4px 8px;
}
.payment-status {
  color: #b03050;
  font-size: .88rem;
  margin-top: 10px;
  min-height: 1.2em;
}
#payBtn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .88rem;
  letter-spacing: .04em;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ Portfolio Page (portfolio.php) ============ */
.portfolio-hero {
  background: var(--bg-2);
  padding: clamp(60px, 9vw, 110px) 24px 60px;
  text-align: center;
}
.portfolio-hero .eyebrow { color: var(--rose-deep); }
.portfolio-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.portfolio-back:hover { color: var(--rose-deep); }

.portfolio-intro {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: clamp(60px, 8vw, 100px) 24px;
  align-items: center;
}
.portfolio-intro h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.portfolio-meta {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.portfolio-meta .meta-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--rose-deep);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.portfolio-meta .meta-unit {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.portfolio-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px clamp(80px, 11vw, 140px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.portfolio-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform .4s, box-shadow .4s;
}
.portfolio-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.portfolio-tile:hover img { transform: scale(1.06); }
.portfolio-tile.tall { grid-row: span 2; aspect-ratio: 4 / 6; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .portfolio-intro { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 246, 242, .98);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(157, 70, 101, .12);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    display: flex;
  }
  .nav-links.open {
    max-height: 80vh;
    padding: 12px 0;
  }
  .nav-links a {
    padding: 16px 28px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 20, 17, .04);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .ig-cta { flex-direction: column; text-align: center; gap: 18px; }
  .ig-arrow { display: none; }
  .qr-card { flex-direction: column; text-align: center; gap: 22px; padding: 24px; }
  .pay-choice { grid-template-columns: 1fr; }
  .order-wrap, .about-wrap { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-1, .g-4 { grid-column: auto; grid-row: auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-tile.tall { grid-row: auto; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .order-form, .modal-card { padding: 28px; }
}
