/* =========================================================
   Vlad Boit — Contemporary Tattoo Art · București
   Polished build: monochrome (brand-kit black), sentence-case
   body copy, performance + accessibility hardened.
   Palette: Warm White #f4f2ee · Concrete #d7d5cf · Charcoal #2e2e2e
   Accent: ink black (replaces the previous burgundy)
   ========================================================= */

/* Brand display face — Horizon (self-hosted). All-caps geometric; single weight,
   declared across the whole weight range so requested 400–700 never synth-bolds.
   RO comma-below ș/ț are patched into the cmap (aliased to the cedilla glyphs). */
@font-face {
  font-family: 'Horizon';
  src: url('../fonts/horizon.woff2') format('woff2'),
       url('../fonts/horizon.woff') format('woff');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Horizon Outlined';
  src: url('../fonts/horizon-outlined.woff2') format('woff2'),
       url('../fonts/horizon-outlined.woff') format('woff');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --warm-white: #f4f2ee;
  --concrete: #d7d5cf;
  --charcoal: #2e2e2e;
  --ink: #141414;                 /* accent: brand-kit black, deeper than body text */
  --accent: var(--ink);           /* accent on LIGHT sections */
  --accent-on-dark: var(--warm-white); /* accent on DARK sections */
  --charcoal-soft: rgba(46,46,46,0.72);
  --hairline: rgba(46,46,46,0.12);
  --display: 'Clash Display', Georgia, serif; /* display face for titles */
  --display-hero: 'Horizon', Georgia, serif;  /* brand face — hero headline only */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }

/* Accessibility helpers */
.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 1000;
  background: var(--charcoal); color: var(--warm-white);
  padding: 0.7rem 1.1rem; text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; transition: top 0.25s ease;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.booking-section :focus-visible { outline-color: var(--warm-white); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 3rem;
  background: transparent;          /* always transparent — no scrolled fill */
  transition: padding 0.3s;
}
/* Stays transparent on scroll; only tightens the padding slightly. */
nav.is-scrolled { padding-top: 1rem; padding-bottom: 1rem; }

/* When the nav floats over a dark section, flip its colours to warm-white. */
nav.on-dark .nav-name, nav.on-dark .nav-links a, nav.on-dark .lang-btn { color: var(--warm-white); }
nav.on-dark .nav-location { color: rgba(244,242,238,0.6); }
nav.on-dark .nav-cta { color: var(--warm-white); }
nav.on-dark .nav-cta:hover { color: var(--concrete); }
nav.on-dark .nav-toggle span { background: var(--warm-white); }
nav.on-dark .lang-switcher { border-color: var(--warm-white); }
nav.on-dark .lang-divider { background: var(--warm-white); }
nav.on-dark .lang-btn.active { background: var(--warm-white); color: var(--charcoal); }
/* Stacked brand: name over location (far left) */
.nav-brand { display: flex; flex-direction: column; gap: 0.15rem; text-decoration: none; line-height: 1.12; }
.nav-name {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal);
}
.nav-location {
  font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal-soft);
}
.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-right { display: flex; align-items: center; gap: 1.6rem; }
.nav-cta {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal);
  text-decoration: none; white-space: nowrap; transition: color 0.3s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav-cta:hover { color: var(--accent); }
.nav-cta-arrow { font-size: 0.9em; }
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--charcoal); text-decoration: none;
  transition: color 0.3s; font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }

/* MOBILE MENU TOGGLE */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 99;
  background: rgba(244,242,238,0.99);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem;
  transform: translateY(-100%); transition: transform 0.4s ease;
  visibility: hidden;
}
@supports (height: 100dvh) { .nav-mobile-panel { height: 100dvh; } }
.nav-mobile-panel.is-open { transform: translateY(0); visibility: visible; }
.nav-mobile-panel a {
  font-family: var(--display); font-size: 1.25rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none; letter-spacing: 0.02em;
}
.nav-mobile-panel a:hover { color: var(--accent); }
.nav-mobile-panel .lang-switcher { margin-top: 1rem; }

/* LANG SWITCHER */
.lang-switcher { display: flex; align-items: center; gap: 0; border: 1px solid var(--charcoal); }
.lang-btn {
  font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.65rem; cursor: pointer;
  border: none; background: transparent; color: var(--charcoal); font-weight: 600;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--charcoal); color: var(--warm-white); }
.lang-divider { width: 1px; height: 1.2rem; background: var(--charcoal); }

/* HERO — tall scroll stage; inner panel sticks to the top and scrubs */
.hero { position: relative; height: 300vh; z-index: 2; padding: 0; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0 3rem 5rem;
  background: var(--concrete);
}
/* Concrete backdrop so the video's white can multiply-blend into it. */
.hero-visual { position: absolute; inset: 0; z-index: 0; background: var(--concrete); will-change: opacity; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center center;   /* whole column visible */
  opacity: 0; transition: opacity 0.7s ease;
  mix-blend-mode: multiply;   /* white background blends into the concrete */
  transform: translateY(4vh);  /* nudge the column down, clear of the nav */
}
.hero-video.is-ready { opacity: 1; }
/* Concrete corner mask over the clip's bottom-right AI watermark */
.hero-video-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(280px 240px at 100% 100%, var(--concrete) 44%, rgba(215,213,207,0) 100%);
}
/* Full-bleed copy layer — faded/nudged as one unit by the scroll scrub. Holds
   all three Horizon texts, each positioned relative to the central column. */
.hero-content { position: absolute; inset: 0; z-index: 2; will-change: transform, opacity; }
.hero-lead { position: absolute; left: 3rem; bottom: 7.5rem; max-width: 42%; transform: translateY(var(--sy, 0px)); }
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.3rem; font-weight: 600;
}
.hero-title {
  font-family: var(--display-hero);
  font-size: clamp(1.8rem, 3.6vw, 3.5rem); font-weight: 400; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 1.5rem; color: var(--charcoal); max-width: 100%;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
/* CTA pinned to the bottom-centre of the hero, independent of the fading texts */
.hero-cta-bottom { position: absolute; left: 50%; bottom: 3rem; transform: translateX(-50%); z-index: 3; }

/* Texts 2 & 3 — same Horizon face as the headline */
.hero-line {
  position: absolute; margin: 0; font-family: var(--display-hero); font-weight: 400;
  line-height: 1.02; letter-spacing: -0.01em; color: var(--charcoal);
}
.hero-line--right {
  right: 3rem; top: 50%; transform: translate(0, calc(-50% + var(--sy, 0px)));
  text-align: right; max-width: 34%; font-size: clamp(1.6rem, 3vw, 3.4rem);
}
.hero-line--lowleft {
  left: 3rem; bottom: 6rem; transform: translateY(var(--sy, 0px));
  text-align: left; max-width: 42%; font-size: clamp(1.6rem, 3.4vw, 3.8rem);
}
.btn-primary {
  display: inline-block; padding: 1rem 2.3rem;
  background: var(--charcoal); color: var(--warm-white);
  font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: all 0.3s; border: 1px solid var(--charcoal); cursor: pointer;
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost {
  display: inline-block; padding: 1rem 2.3rem;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: all 0.3s; background: transparent; cursor: pointer;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--warm-white); }

/* AMBIENT INK BACKGROUND */

/* SECTIONS */
section { padding: 7rem 3rem; }
.section-label {
  font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 600;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 400; line-height: 1.2;
  letter-spacing: -0.005em; margin-bottom: 2rem; color: var(--charcoal);
}
.section-title em { font-style: normal; color: var(--accent); }

/* ABOUT */
.about-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 4.5rem; align-items: center; }
.about-img-wrap { position: relative; max-width: 460px; width: 100%; justify-self: center; }
.about-img-frame { width: 100%; aspect-ratio: 2/3; background: var(--concrete); position: relative; overflow: hidden; }
.about-img-frame::before {
  content: ''; position: absolute; top: -1.5rem; left: -1.5rem;
  width: 50%; height: 50%; border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent); z-index: 1;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #c9c7c0 0%, #d7d5cf 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.6rem;
}
.about-text p { color: var(--charcoal-soft); line-height: 1.85; margin-bottom: 1.4rem; font-size: 0.98rem; }
.about-text .section-label { color: var(--accent); } /* keep accent over the generic .about-text p rule */
.about-text strong { color: var(--charcoal); font-weight: 600; }
.quote-line {
  font-family: 'Inter', sans-serif; font-style: italic; font-weight: 500; font-size: 1.05rem;
  color: var(--charcoal); border-left: 2px solid var(--accent);
  padding-left: 1.5rem; margin: 1.8rem 0; line-height: 1.7; letter-spacing: 0.01em;
}

/* PORTFOLIO */
.portfolio-section { background: rgba(215,213,207,0.94); position: relative; z-index: 2; }
.portfolio-title { text-align: center; }

/* Scroll-in fade (applied to the portfolio section) */
.reveal-up { opacity: 0; transform: translateY(48px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-up.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-up { opacity: 1; transform: none; transition: none; } }

/* About — the container is just the trigger; each element fades in staggered */
.about-reveal { opacity: 1; transform: none; transition: none; }
.about-reveal .about-img-wrap,
.about-reveal .about-text > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.about-reveal.is-visible .about-img-wrap,
.about-reveal.is-visible .about-text > * { opacity: 1; transform: none; }
.about-reveal.is-visible .about-img-wrap { transition-delay: 0s; }
.about-reveal.is-visible .about-text > *:nth-child(1) { transition-delay: 0.12s; }
.about-reveal.is-visible .about-text > *:nth-child(2) { transition-delay: 0.20s; }
.about-reveal.is-visible .about-text > *:nth-child(3) { transition-delay: 0.28s; }
.about-reveal.is-visible .about-text > *:nth-child(4) { transition-delay: 0.36s; }
.about-reveal.is-visible .about-text > *:nth-child(5) { transition-delay: 0.44s; }
.about-reveal.is-visible .about-text > *:nth-child(6) { transition-delay: 0.52s; }
@media (prefers-reduced-motion: reduce) {
  .about-reveal .about-img-wrap,
  .about-reveal .about-text > * { opacity: 1; transform: none; transition: none; }
}

/* Carousel: two big square slots; arrows overlaid on the image edges */
.carousel { position: relative; width: 100%; max-width: 1500px; margin: 3rem auto 0; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); will-change: transform; }
.carousel-slide { flex: 0 0 50%; max-width: 50%; padding: 0 clamp(6px, 1vw, 12px); box-sizing: border-box; }
.carousel-img { aspect-ratio: 1 / 1; overflow: hidden; background: #c4c2bb; position: relative; }
.carousel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.carousel-slide:hover .carousel-img img { transform: scale(1.04); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px; border: none; cursor: pointer;
  background: transparent; color: var(--warm-white);
  font-family: 'Inter', sans-serif; font-size: 2.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
  text-shadow: 0 2px 10px rgba(20,20,20,0.55);
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.carousel-arrow:hover { color: var(--concrete); }
.carousel-prev:hover { transform: translateY(-50%) translateX(-3px); }
.carousel-next:hover { transform: translateY(-50%) translateX(3px); }
.carousel-prev { left: clamp(0.75rem, 2.5vw, 1.75rem); }
.carousel-next { right: clamp(0.75rem, 2.5vw, 1.75rem); }
.carousel-arrow[disabled] { opacity: 0; pointer-events: none; }
.portfolio-more { text-align: center; margin-top: 2.2rem; }
.link-quiet { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-soft); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--hairline); padding-bottom: 3px; transition: color 0.3s, border-color 0.3s; }
.link-quiet:hover { color: var(--accent); border-color: var(--accent); }

/* TESTIMONIALS */
.testimonials-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; text-align: center; }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 600; }
.testimonials-title { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--maxw); margin: 0 auto; }
.testimonial { border: 1px solid var(--hairline); background: var(--warm-white); padding: 2.4rem 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.testimonial-quote { font-family: 'Inter', sans-serif; font-style: italic; font-size: 1.02rem; line-height: 1.6; color: var(--charcoal); }
.testimonial-by { font-style: normal; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; margin-top: auto; }

/* PROCESS CTA */
.process-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* Centered section headers: How It Works, Journal, Gift Cards, FAQ */
.process-section > .section-label,
.blog-section > .section-label,
.gift-section > .section-label,
.faq-section > .section-label { justify-content: center; }
.process-section > .section-label::before,
.blog-section > .section-label::before,
.gift-section > .section-label::before,
.faq-section > .section-label::before { display: none; }
.process-section > .section-title,
.blog-section > .section-title,
.gift-section > .section-title,
.faq-section > .section-title { text-align: center; }
.gift-section > .gift-intro { margin-left: auto; margin-right: auto; text-align: center; }

/* Booking page: extra top room so the title clears the fixed nav */
.page-booking .booking-section { padding-top: clamp(7rem, 12vw, 9.5rem); }

/* Sub-pages (Journal, FAQ) — top section clears the fixed nav */
.page-top { padding-top: clamp(8rem, 13vw, 10.5rem); }
.page-intro { max-width: 52ch; margin-top: 1.2rem; color: var(--charcoal-soft); line-height: 1.7; }

/* FAQ accordion */
.faq-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; }
.faq-list { max-width: 820px; margin: 3rem auto 0; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 2.6rem 1.5rem 0; position: relative;
  font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--charcoal); font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--accent); transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 2.6rem 1.7rem 0; color: var(--charcoal-soft); line-height: 1.8; max-width: 72ch; }
.faq-cta { text-align: center; margin-top: 2.8rem; font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--charcoal-soft); }

/* PROCESS */
.process-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; }
.divider { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.divider-icon { color: var(--accent); font-size: 0.65rem; letter-spacing: 0.2em; font-family: 'Inter', sans-serif; font-weight: 600; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.process-step { position: relative; padding-top: 2rem; }
.step-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, var(--accent), transparent); }
.step-num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: rgba(20,20,20,0.16); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.75rem; font-weight: 600; }
.step-desc { font-size: 0.92rem; color: var(--charcoal-soft); line-height: 1.7; }

/* BLOG */
.blog-section { background: rgba(215,213,207,0.94); position: relative; z-index: 2; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card { display: block; border: 1px solid rgba(46,46,46,0.1); padding: 2rem; transition: border-color 0.3s, transform 0.3s; cursor: pointer; background: var(--warm-white); text-decoration: none; color: inherit; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); }
/* Card cover thumbnail — full-bleed to the card edges */
.blog-card > img { display: block; width: calc(100% + 4rem); margin: -2rem -2rem 1.6rem; aspect-ratio: 16 / 9; object-fit: cover; background: var(--concrete); }

/* JOURNAL ARTICLE PAGES */
.article-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; }
.article { max-width: 720px; margin: 0 auto; }
.article-back { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); text-decoration: none; font-weight: 600; margin-bottom: 2.4rem; transition: color 0.3s; }
.article-back:hover { color: var(--accent); }
.article-meta { display: flex; gap: 0.9rem; align-items: center; font-family: 'Inter', sans-serif; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; margin-bottom: 1.1rem; }
.article-cat { color: var(--accent); }
.article-title { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.12; letter-spacing: -0.005em; color: var(--charcoal); margin-bottom: 2.4rem; }
.article-hero { margin-bottom: 2.6rem; aspect-ratio: 16 / 9; overflow: hidden; background: var(--concrete); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--charcoal-soft); }
.article-body p { margin-bottom: 1.5rem; }
.article-body .article-lead { font-size: 1.22rem; line-height: 1.65; color: var(--charcoal); margin-bottom: 2rem; }
.article-body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.35rem, 2.6vw, 1.7rem); color: var(--charcoal); line-height: 1.3; margin: 2.6rem 0 1rem; }
.article-body strong { color: var(--charcoal); font-weight: 600; }
.article-foot { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.blog-cat { font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 600; }
.blog-title { font-family: var(--display); font-size: 1.05rem; font-weight: 600; line-height: 1.4; margin-bottom: 1rem; color: var(--charcoal); }
.blog-excerpt { font-size: 0.95rem; color: var(--charcoal-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.blog-meta { font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(46,46,46,0.5); font-weight: 600; }

/* BOOKING */
.booking-section { background: rgba(28,28,28,0.98); color: var(--warm-white); position: relative; z-index: 2; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.booking-section .section-title { color: var(--warm-white); }
.booking-section .section-title em { color: var(--concrete); }
.booking-section .section-label { color: var(--accent-on-dark); }
.booking-section .section-label::before { background: var(--accent-on-dark); }
.booking-note { margin-top: 2rem; padding: 1.8rem; border-left: 2px solid rgba(244,242,238,0.5); background: rgba(244,242,238,0.04); }
.booking-note p { font-size: 0.95rem; color: rgba(244,242,238,0.72); line-height: 1.75; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,242,238,0.6); margin-bottom: 0.5rem; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(244,242,238,0.05); border: 1px solid rgba(244,242,238,0.18);
  color: var(--warm-white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  letter-spacing: 0.01em; transition: border-color 0.3s; outline: none; -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { opacity: 0.5; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f4f2ee' opacity='0.6' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px; padding-right: 2.5rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--warm-white); }
.form-select option { background: var(--charcoal); color: var(--warm-white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-file {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(244,242,238,0.7);
  background: rgba(244,242,238,0.05); border: 1px dashed rgba(244,242,238,0.28);
  padding: 0.8rem 1rem; cursor: pointer; transition: border-color 0.3s; border-radius: 0;
}
.form-file:hover, .form-file:focus { outline: none; border-color: rgba(244,242,238,0.6); }
.form-file::file-selector-button {
  font-family: 'Inter', sans-serif; font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  background: var(--warm-white); color: var(--charcoal); border: none;
  padding: 0.55rem 1.1rem; margin-right: 1rem; transition: background 0.3s;
}
.form-file::file-selector-button:hover { background: var(--concrete); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; margin-top: 0.5rem; border: 1px solid var(--warm-white);
  background: var(--warm-white); color: var(--charcoal); font-size: 0.68rem;
  padding: 1rem; font-family: 'Inter', sans-serif; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: transparent; color: var(--warm-white); }
.form-submit:disabled { opacity: 0.6; cursor: default; }
.form-status { margin-top: 1rem; font-size: 0.85rem; line-height: 1.6; padding: 0.9rem 1rem; border: 1px solid rgba(244,242,238,0.2); }
.form-status.ok { border-color: var(--warm-white); background: rgba(244,242,238,0.06); }
.form-status.err { border-color: rgba(244,242,238,0.4); }

/* GIFT CARDS */
.gift-section { background: rgba(244,242,238,0.94); position: relative; z-index: 2; }
.gift-intro { color: var(--charcoal-soft); max-width: 480px; line-height: 1.8; margin-bottom: 1rem; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.gift-card { border: 1px solid var(--hairline); padding: 2.8rem 2rem; text-align: center; position: relative; background: var(--concrete); transition: border-color 0.3s, transform 0.3s; cursor: pointer; }
.gift-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.gift-card.featured { background: var(--charcoal); }
.gift-badge {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--warm-white); color: var(--charcoal);
  font-family: 'Inter', sans-serif; font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.3rem 1rem; font-weight: 600;
}
.gift-amount { font-family: var(--display); font-size: 2.7rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 0.5rem; }
.gift-card.featured .gift-amount { color: var(--warm-white); }
.gift-currency { font-size: 1.4rem; vertical-align: top; line-height: 2; }
.gift-desc { font-size: 0.92rem; color: var(--charcoal-soft); margin: 1rem 0 1.8rem; line-height: 1.7; }
.gift-card.featured .gift-desc { color: rgba(244,242,238,0.7); }
.gift-btn {
  display: inline-block; width: 100%; padding: 0.85rem;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: all 0.3s; background: transparent; cursor: pointer;
}
.gift-card.featured .gift-btn { border-color: var(--warm-white); color: var(--warm-white); }
.gift-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--warm-white); }
.gift-card.featured .gift-btn:hover { background: var(--warm-white); border-color: var(--warm-white); color: var(--charcoal); }
.gift-note { text-align: center; margin-top: 2rem; font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; }
.gift-note a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }

/* FOOTER */
footer {
  background: rgba(215,213,207,0.96); border-top: 1px solid var(--hairline);
  padding: 4rem 3rem; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 3rem;
  position: relative; z-index: 2;
}
.footer-logo { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.06em; color: var(--charcoal); display: block; margin-bottom: 1rem; text-transform: uppercase; }
.footer-brand p { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.7; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 1.4rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.8rem; color: var(--charcoal-soft); text-decoration: none; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--hairline); background: rgba(215,213,207,0.96);
  padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(46,46,46,0.5); font-weight: 600; position: relative; z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.4rem; }
  nav.is-scrolled { padding: 0.8rem 1.4rem; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero { height: 220vh; }
  .hero-sticky { padding: 6.5rem 1.5rem 3rem; }
  .hero-lead { left: 1.5rem; right: 1.5rem; bottom: 6.5rem; max-width: 100%; }
  .hero-title { font-size: 2.2rem; }
  /* Stack the texts vertically; CTA pinned full-width at the very bottom */
  .hero-line--lowleft { top: auto; bottom: 9.5rem; left: 1.5rem; right: auto; transform: translateY(var(--sy, 0px)); text-align: left; max-width: 80%; font-size: clamp(1.3rem, 6vw, 2.2rem); }
  .hero-line--right { top: 34%; right: 1.5rem; transform: translateY(var(--sy, 0px)); max-width: 62%; font-size: clamp(1.2rem, 5vw, 2rem); }
  .hero-actions.hero-cta-bottom { left: 1.5rem; right: 1.5rem; bottom: 1.8rem; transform: none; width: auto; }
  /* Fill the tall phone screen so the column is large (was letterboxed by contain) */
  .hero-video { object-fit: cover; object-position: center 42%; transform: none; }
  /* On mobile the headline sits full-width at the bottom, so add a
     vertical scrim for legibility regardless of the video frame. */
  .hero-video-veil {
    background:
      radial-gradient(80% 32% at 100% 100%, rgba(244,242,238,0.96) 0%, rgba(244,242,238,0.5) 46%, rgba(244,242,238,0) 75%),
      linear-gradient(0deg, rgba(244,242,238,0.92) 0%, rgba(244,242,238,0.4) 38%, rgba(244,242,238,0.08) 70%),
      linear-gradient(90deg, rgba(244,242,238,0.85) 0%, rgba(244,242,238,0.3) 55%, rgba(244,242,238,0.05) 100%);
  }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; }
  .blog-grid { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 560px) {
  .nav-name { font-size: 0.95rem; }
  .hero-sticky { padding: 6rem 1.2rem 2.5rem; }
  .hero-title { font-size: 1.7rem; }
  .hero-video { object-fit: cover; object-position: center 42%; transform: none; }
  .btn-primary, .btn-ghost { padding: 0.9rem 1.6rem; font-size: 0.62rem; width: 100%; text-align: center; }
  .hero-actions { width: 100%; }
  .section-title { font-size: 1.9rem; }
  section { padding: 3.5rem 1.2rem; }
  /* How It Works → swipeable carousel on phones (grid stays on desktop) */
  .process-steps {
    display: flex; grid-template-columns: none; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 0.6rem;
  }
  .process-steps::-webkit-scrollbar { display: none; }
  .process-step { flex: 0 0 84%; scroll-snap-align: start; }
  .carousel-slide { flex-basis: 100%; max-width: 100%; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.3rem; }
  .booking-grid, .about-grid { gap: 2rem; }
  .form-row { gap: 0.9rem; }
  footer { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-video { opacity: 1; }
}

/* ============================ GIFT-CARD CHECKOUT ============================ */
.checkout-section { background: var(--warm-white); position: relative; z-index: 2; }
.checkout-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.checkout-head .gift-intro { margin: 1rem auto 0; }
.checkout-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 3.5rem; align-items: start; }

.checkout-step { margin-bottom: 3rem; }
.step-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.6rem; }
.step-num-badge { width: 1.9rem; height: 1.9rem; flex: none; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; }
.step-head h2 { font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); }

/* product picker */
.gc-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gc-option { position: relative; cursor: pointer; border: 1px solid var(--hairline); background: var(--concrete); padding: 0.8rem; transition: border-color .25s, transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.gc-option:hover { transform: translateY(-3px); border-color: var(--charcoal-soft); }
.gc-option.is-selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.gc-option input { position: absolute; opacity: 0; pointer-events: none; }
.gc-badge-pop { position: absolute; top: -0.6rem; left: 0.8rem; background: var(--accent); color: var(--warm-white); font-family: 'Inter', sans-serif; font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 0.28rem 0.6rem; z-index: 2; }
.gc-thumb { aspect-ratio: 1913 / 1346; overflow: hidden; background: #fff; }
.gc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gc-info { display: block; padding: 1rem 0.4rem 0.4rem; }
.gc-name { display: block; font-family: var(--display); font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--charcoal); line-height: 1.1; }
.gc-price { display: block; font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--charcoal); margin-top: 0.35rem; }
.gc-desc { display: block; font-size: 0.8rem; color: var(--charcoal-soft); line-height: 1.55; margin-top: 0.55rem; }
.gc-check { position: absolute; top: 0.8rem; right: 0.8rem; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--accent); color: var(--warm-white); display: grid; place-items: center; font-size: 0.85rem; opacity: 0; transform: scale(0.6); transition: .2s; z-index: 2; }
.gc-option.is-selected .gc-check { opacity: 1; transform: none; }

/* config panel */
.gc-config[hidden] { display: none; }
.gc-config { border-top: 1px solid var(--hairline); padding-top: 2rem; margin-top: 0.5rem; }
.gc-config-card { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--charcoal-soft); margin-bottom: 1.6rem; }
.gc-config-card strong { color: var(--charcoal); font-weight: 600; }
.field-label { display: block; font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; margin-bottom: 0.6rem; }
.seg { display: inline-flex; border: 1px solid var(--hairline); background: var(--concrete); }
.seg button { appearance: none; border: 0; background: transparent; padding: 0.7rem 1.4rem; font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--charcoal-soft); cursor: pointer; transition: .2s; }
.seg button.is-active { background: var(--accent); color: var(--warm-white); }
.gc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.gc-fields[hidden] { display: none; }
.gc-field-full { grid-column: 1 / -1; }
.gc-input, .gc-textarea { width: 100%; background: #fff; border: 1px solid var(--hairline); padding: 0.85rem 1rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--charcoal); }
.gc-input:focus, .gc-textarea:focus { outline: none; border-color: var(--accent); }
.gc-textarea { resize: vertical; min-height: 90px; }

.qty-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.8rem; flex-wrap: wrap; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--hairline); background: #fff; }
.stepper button { width: 2.6rem; height: 2.6rem; border: 0; background: transparent; font-size: 1.15rem; line-height: 1; cursor: pointer; color: var(--charcoal); }
.stepper button:disabled { opacity: 0.28; cursor: default; }
.stepper input { width: 2.8rem; text-align: center; border: 0; border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); font-family: 'Inter', sans-serif; font-size: 0.95rem; height: 2.6rem; background: transparent; color: var(--charcoal); -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-max { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; }
.gc-add { width: 100%; margin-top: 1.9rem; }

/* cart */
.cart { position: sticky; top: 6.5rem; border: 1px solid var(--hairline); background: var(--concrete); padding: 1.8rem; }
.cart-title { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.2rem; }
.cart-empty { font-size: 0.85rem; color: var(--charcoal-soft); line-height: 1.7; padding: 1rem 0 1.4rem; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 0.8rem; padding: 1.1rem 0; border-top: 1px solid var(--hairline); }
.cart-item-name { font-family: var(--display); text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.02em; }
.cart-item-price { font-weight: 600; font-family: 'Inter', sans-serif; font-size: 0.9rem; white-space: nowrap; }
.cart-item-meta { grid-column: 1 / -1; font-size: 0.72rem; color: var(--charcoal-soft); line-height: 1.5; }
.cart-item-controls { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.cart-remove { border: 0; background: none; padding: 0; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-soft); cursor: pointer; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cart-remove:hover { color: var(--accent); }
.stepper--mini button { width: 2rem; height: 2rem; font-size: 1rem; }
.stepper--mini input { width: 2.2rem; height: 2rem; font-size: 0.85rem; }
.cart-summary { border-top: 1px solid var(--accent); margin-top: 0.4rem; padding-top: 1.2rem; }
.cart-line { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--charcoal-soft); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--display); font-size: 1.35rem; font-weight: 600; color: var(--charcoal); margin-top: 0.7rem; }
.cart-checkout { margin-top: 1.6rem; }
.cart-checkout .gc-input { margin-bottom: 0.9rem; }
.cart-checkout .btn-primary { width: 100%; }
.cart-checkout .btn-primary:disabled { opacity: 0.45; cursor: default; }
.cart-note { font-size: 0.68rem; color: var(--charcoal-soft); line-height: 1.65; margin-top: 1rem; }
.cart-status { margin-top: 1rem; font-size: 0.82rem; padding: 0.9rem 1rem; border: 1px solid var(--accent); background: rgba(20,20,20,0.05); line-height: 1.6; color: var(--charcoal); }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gc-picker { grid-template-columns: 1fr; }
  .cart { position: static; }
}
@media (max-width: 560px) {
  .gc-fields { grid-template-columns: 1fr; }
}

/* Gift-card checkout v2 — single large preview + swatch chooser + buyer info */
.gc-preview { margin-bottom: 2.8rem; }
.gc-preview-card { border: 1px solid var(--hairline); background: #fff; max-width: 620px; box-shadow: 0 18px 40px -28px rgba(20,20,20,0.5); }
.gc-preview-card img { width: 100%; height: auto; display: block; }
.gc-preview-info { margin-top: 1.4rem; max-width: 620px; }
.gc-preview-name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: 0.02em; color: var(--charcoal); line-height: 1.05; }
.gc-preview-price { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--charcoal); margin-top: 0.3rem; }
.gc-preview-desc { color: var(--charcoal-soft); margin-top: 0.7rem; line-height: 1.7; font-size: 0.95rem; }

.gc-swatch { cursor: pointer; border: 1px solid var(--hairline); background: var(--concrete); padding: 0.7rem; display: flex; gap: 0.75rem; align-items: center; text-align: left; transition: border-color .2s, box-shadow .2s, transform .2s; }
.gc-swatch:hover { border-color: var(--charcoal-soft); transform: translateY(-2px); }
.gc-swatch.is-selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.gc-swatch-thumb { width: 68px; flex: none; aspect-ratio: 1913 / 1346; overflow: hidden; background: #fff; border: 1px solid var(--hairline); }
.gc-swatch-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gc-swatch-text { display: flex; flex-direction: column; gap: 0.15rem; }
.gc-swatch-name { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); line-height: 1.15; }
.gc-swatch-price { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--charcoal); }

.buyer-info { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--hairline); }
.buyer-title { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.buyer-fields { margin-top: 0.9rem; }
.cart .btn-primary { width: 100%; margin-top: 1.4rem; }
.cart .btn-primary:disabled { opacity: 0.45; cursor: default; }

@media (max-width: 560px) {
  .buyer-fields { grid-template-columns: 1fr; }
}
