@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --void:        #080706;
  --obsidian:    #0D0C0A;
  --onyx:        #141210;
  --charcoal:    #1C1A16;
  --gold:        #C9A96E;
  --gold-bright: #DFC088;
  --gold-muted:  #9A7A3A;
  --cream:       #F2EDE0;
  --parchment:   #BEB8A8;
  --stone:       #6E6860;
  --gold-border: rgba(201,169,110,0.15);
  --gold-glow:   rgba(201,169,110,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-20: 10rem;

  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1.25rem;
  --r-xl:   2rem;
  --r-full: 9999px;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);
  --t-fast:    0.2s cubic-bezier(0.16,1,0.3,1);
  --t-base:    0.45s cubic-bezier(0.16,1,0.3,1);
  --t-slow:    0.8s cubic-bezier(0.16,1,0.3,1);
  --t-luxury:  1.2s cubic-bezier(0.16,1,0.3,1);

  --shadow-card:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 48px rgba(201,169,110,0.15);
  --shadow-depth: 0 24px 64px rgba(0,0,0,0.7);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--obsidian);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
}

a   { color: inherit; text-decoration: none; transition: color var(--t-fast); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--cream);
}

h1 { font-size: clamp(3.5rem, 8vw, 8rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 5rem); font-weight: 300; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.75rem); font-weight: 400; }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 400; }

p {
  margin-bottom: var(--sp-2);
  color: var(--parchment);
  font-weight: 300;
}

.label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

em { font-style: italic; color: var(--gold); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, opacity .25s;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
}

.cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-bright));
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.header-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: background var(--t-base), transform var(--t-slow), box-shadow var(--t-base);
}

.header-wrapper.scrolled {
  background: rgba(13,12,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-border);
}

.header-wrapper.hidden { transform: translateY(-100%); }

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: opacity var(--t-fast);
}
.logo-text:hover { opacity: 0.72; }

.main-nav {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}

.nav-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.burger-line {
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: all var(--t-base);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4.5px,4.5px);
  background: var(--gold);
}
.burger-menu.active .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px,-4.5px);
  background: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--void);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 15% 85%, rgba(201,169,110,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 5%;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  transform: translateY(1rem);
  animation: fadeUp var(--t-slow) var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  transform: translateY(2.5rem);
  animation: fadeUp var(--t-luxury) var(--ease-out) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--parchment);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto var(--sp-8);
  transform: translateY(1.5rem);
  animation: fadeUp var(--t-slow) var(--ease-out) 0.85s forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  transform: translateY(1rem);
  animation: fadeUp var(--t-slow) var(--ease-out) 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  z-index: 2;
  animation: fadeIn var(--t-slow) var(--ease-out) 1.9s forwards;
}

.hero-scroll span {
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
}

.scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.35; transform: scaleY(0.8); }
  50%      { opacity: 1;    transform: scaleY(1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--void);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--t-base);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,169,110,0.35);
  color: var(--void);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--cream);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--t-base);
  border: 1px solid rgba(242,237,224,0.22);
  font-family: var(--font-body);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-fast), opacity var(--t-fast);
}
.btn-text:hover { gap: 0.875rem; opacity: 0.75; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  overflow: hidden;
  background: var(--onyx);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.875rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  white-space: nowrap;
}

.marquee-text {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.marquee-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   LAYOUT — SECTION
   ============================================================ */
.section {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--sp-16) 5%;
}

.section-band {
  width: 100%;
  background: var(--onyx);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--sp-16) 5%;
}

.section-header { margin-bottom: var(--sp-12); }
.section-header.centered { text-align: center; }
.section-header.centered .label { justify-content: center; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-content {
  opacity: 0;
  transform: translateX(-2.5rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
}
.split-content.visible { opacity: 1; transform: translateX(0); }

.split-visual {
  transform: translateX(2.5rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
  position: relative;
}
.split-visual.visible { opacity: 1; transform: translateX(0); }

.split-image-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--charcoal);
}
.split-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.05);
  transition: transform var(--t-luxury);
}
.split-image-frame:hover img { transform: scale(1.04); }

.image-accent {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 55%; height: 55%;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  z-index: -1;
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-right: 1px solid var(--gold-border);
  transform: translateY(2rem);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-suffix { color: var(--gold); }

.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.product-card {
  background: var(--onyx);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  transform: translateY(2.5rem);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover {
  border-color: rgba(201,169,110,0.38);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--charcoal);
}
.product-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.07);
  filter: brightness(1);
}

.product-body { padding: var(--sp-4); }

.product-name {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--sp-1);
  color: var(--cream);
}
.product-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.feature-card {
  background: var(--onyx);
  padding: var(--sp-8) var(--sp-6);
  transition: background var(--t-base);
  transform: translateY(1.5rem);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { background: var(--charcoal); }

.feature-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.feature-icon {
  font-size: 1.375rem;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.feature-title {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: var(--sp-2);
  color: var(--cream);
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TIMELINE (artistry page)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 1.75rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent 90%);
}

.timeline-item {
  display: flex;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  transform: translateX(-2rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-step {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  background: var(--obsidian);
  position: relative;
  z-index: 1;
}

.timeline-body { padding-top: 0.5rem; flex: 1; }
.timeline-body h3 { font-size: 1.5rem; margin-bottom: var(--sp-1); }
.timeline-body p  { font-size: 0.9375rem; color: var(--stone); margin: 0; }

/* ============================================================
   PRINCIPLES GRID (artistry page)
   ============================================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.principle-card {
  background: var(--onyx);
  padding: var(--sp-8) var(--sp-6);
  transition: background var(--t-base), opacity var(--t-slow), transform var(--t-luxury);
  transform: translateY(1.5rem);
}
.principle-card.visible { opacity: 1; transform: translateY(0); }
.principle-card:hover { background: var(--charcoal); }

.principle-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.principle-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}
.principle-desc {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ACCORDION (contact page)
   ============================================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.accordion-item { background: var(--onyx); }
.accordion-item.active { background: var(--charcoal); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  cursor: pointer;
  transition: color var(--t-fast);
  gap: var(--sp-4);
}
.accordion-trigger:hover { color: var(--gold); }

.accordion-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  text-align: left;
  color: white;
}

.accordion-icon {
  width: 1.75rem; height: 1.75rem;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--t-base), background var(--t-fast), border-color var(--t-fast);
  font-size: 0.75rem;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.accordion-body.open { max-height: 500px; }

.accordion-answer {
  padding: 0 var(--sp-6) var(--sp-4);
  color: var(--stone);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrapper {
  background: var(--onyx);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -25%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.info-icon-wrap {
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.info-content p { font-size: 0.9375rem; color: var(--parchment); margin: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.form-input, .form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--stone); }
.form-textarea { min-height: 140px; resize: vertical; }

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-checkbox {
  width: 1rem; height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox-label {
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.5;
  cursor: pointer;
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 420px;
}
.map-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.5) brightness(0.75) sepia(0.15);
}

/* ============================================================
   EDITORIAL / CTA
   ============================================================ */
.editorial-block {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--onyx);
}

.editorial-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}
.editorial-bg img { width: 100%; height: 100%; object-fit: cover; }

.editorial-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,7,6,0.85) 0%, transparent 60%);
}

.editorial-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: var(--sp-12) var(--sp-12);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  position: relative;
  padding-left: var(--sp-8);
}
.pull-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -1.5rem;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-display);
}

/* ============================================================
   HORIZONTAL SCROLL (blooms page)
   ============================================================ */
.h-scroll-outer { overflow: hidden; }

.h-scroll-container {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--sp-2) 5% var(--sp-4);
  cursor: grab;
}
.h-scroll-container::-webkit-scrollbar { display: none; }
.h-scroll-container.grabbing { cursor: grabbing; }

.h-scroll-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--onyx);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.h-scroll-card:hover { border-color: rgba(201,169,110,0.35); }

.h-scroll-img {
  height: 260px;
  background: var(--charcoal);
  overflow: hidden;
}
.h-scroll-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.h-scroll-card:hover .h-scroll-img img { transform: scale(1.06); }
.h-scroll-body { padding: var(--sp-4); }

/* ============================================================
   FILTER TABS (blooms page)
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.5rem 1.5rem;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  transition: all var(--t-fast);
  background: transparent;
  font-family: var(--font-body);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

/* ============================================================
   CARE GUIDE (blooms page)
   ============================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.care-item {
  padding: var(--sp-6);
  background: var(--onyx);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: border-color var(--t-base), background var(--t-base);
  transform: translateY(1.5rem);
}
.care-item.visible { opacity: 1; transform: translateY(0); }
.care-item:hover { border-color: rgba(201,169,110,0.3); background: var(--charcoal); }

.care-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
}
.care-body h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.375rem; }
.care-body p  { font-size: 0.875rem; color: var(--stone); margin: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(5rem + var(--sp-12)) 5% var(--sp-12);
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.page-hero-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-label {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.page-hero-title {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.page-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--parchment);
  max-width: 580px;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-minimal {
  background: var(--onyx);
  border-top: 1px solid var(--gold-border);
  padding: var(--sp-8) 5%;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--gold); }

.footer-info {
  font-size: 0.8125rem;
  color: var(--stone);
  margin: 0;
}

/* ============================================================
   PRIVACY POPUP
   ============================================================ */
.privacy-popup {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--onyx);
  border-top: 1px solid var(--gold-border);
  padding: var(--sp-4) 5%;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform var(--t-slow);
}
.privacy-popup.visible { transform: translateY(0); }

.privacy-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.privacy-text { font-size: 0.875rem; color: var(--stone); margin: 0; flex: 1; }

.privacy-actions { display: flex; gap: var(--sp-2); flex-shrink: 0; }

.btn-accept {
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: var(--void);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  border: 1px solid var(--gold);
}
.btn-accept:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn-decline {
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--stone);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-decline:hover { border-color: var(--stone); color: var(--parchment); }

/* ============================================================
   REVEAL UTILITIES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity var(--t-slow), transform var(--t-luxury);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ============================================================
   THANK YOU & ERROR PAGES
   ============================================================ */
.thank-you-container,
.error-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) 5%;
  background: var(--void);
}

.luxury-thanks-wrapper,
.luxury-error-wrapper {
  max-width: 700px;
  background: var(--onyx);
  border: 1px solid var(--gold-border);
  padding: var(--sp-12);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-depth);
  position: relative;
  overflow: hidden;
}
.luxury-thanks-wrapper::before,
.luxury-error-wrapper::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 60%);
  animation: rotate 25s linear infinite;
}

.thank-you-icon,
.luxury-thanks-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  animation: scaleIn var(--t-slow) var(--ease-out) forwards;
  position: relative;
  z-index: 1;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(201,169,110,0.15);
  position: relative;
  z-index: 1;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(5rem + var(--sp-12)) 5% var(--sp-12);
}

.policy-section {
  margin-bottom: var(--sp-8);
  background: var(--onyx);
  padding: var(--sp-8);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-base);
}
.policy-section:hover { border-color: rgba(201,169,110,0.28); }

.policy-section h2 {
  font-size: 2rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-4);
  color: var(--cream);
}
.policy-section h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.policy-section p, .policy-section ul { color: var(--stone); font-size: 0.9375rem; }
.policy-section ul { padding-left: var(--sp-4); }
.policy-section li { margin-bottom: var(--sp-1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--gold-border); }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 320px;
    height: 100vh;
    background: var(--onyx);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-12) var(--sp-8);
    z-index: 999;
    transition: right var(--t-base);
    gap: var(--sp-6);
  }
  .main-nav.active { right: 0; }
  .nav-link { font-size: 1.125rem; letter-spacing: 0.1em; }
  .burger-menu { display: flex; z-index: 1001; }

  .split-layout,
  .split-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-layout.reverse > * { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-wrapper { padding: var(--sp-6) var(--sp-4); }

  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }

  .editorial-content { padding: var(--sp-8) var(--sp-6); }

  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .privacy-content { flex-direction: column; }
  .privacy-actions { flex-direction: row; }
  .footer-links { gap: var(--sp-3); }
  .h-scroll-card { flex: 0 0 290px; }
}

/* ── 360px: catch-all for small phones ────────────────────── */
@media (max-width: 360px) {
  html { font-size: 93.75%; } /* 15px base */

  .section,
  .section-inner {
    padding-left:  var(--sp-3);
    padding-right: var(--sp-3);
    padding-top:   var(--sp-8);
    padding-bottom: var(--sp-8);
  }

  .logo-text { font-size: 1.25rem; }

  .hero-title    { font-size: clamp(3rem, 18vw, 4rem); }
  .hero-eyebrow  { font-size: 0.5625rem; letter-spacing: 0.2em; }
  .hero-subtitle { font-size: 0.875rem; }

  .page-hero-title { font-size: clamp(2.5rem, 14vw, 3.5rem); }

  .stat-item  { padding: var(--sp-4) var(--sp-2); }
  .stat-number { font-size: clamp(2rem, 10vw, 3rem); }
  .stat-label  { font-size: 0.5625rem; }

  .feature-card    { padding: var(--sp-4) var(--sp-3); }
  .feature-number  { font-size: 2.5rem; }
  .principle-card  { padding: var(--sp-6) var(--sp-4); }
  .principle-num   { font-size: 2.75rem; }

  .product-img-wrapper { height: 220px; }
  .product-body        { padding: var(--sp-3); }
  .product-name        { font-size: 1.25rem; }
  .product-price       { font-size: 1.375rem; }

  .split-image-frame  { height: 260px !important; }
  .image-accent       { display: none; }

  .timeline::before { left: 1.25rem; }
  .timeline-item    { gap: var(--sp-3); margin-bottom: var(--sp-6); }
  .timeline-step    { width: 2.5rem; height: 2.5rem; font-size: 0.875rem; }

  .care-item   { padding: var(--sp-4) var(--sp-3); gap: var(--sp-2); }
  .care-number { font-size: 2rem; width: 2.5rem; }

  .contact-wrapper { padding: var(--sp-6) var(--sp-3); }

  .accordion-trigger { padding: var(--sp-3); }
  .accordion-question { font-size: 1rem; }
  .accordion-answer   { padding: 0 var(--sp-3) var(--sp-3); font-size: 0.875rem; }
  .accordion-icon { width: 1.5rem; height: 1.5rem; }

  .h-scroll-card  { flex: 0 0 270px; }
  .h-scroll-img   { height: 210px; }
  .h-scroll-body  { padding: var(--sp-3); }

  .pull-quote         { font-size: 1.5rem; padding-left: var(--sp-6); }
  .pull-quote::before { font-size: 4.5rem; }

  .editorial-content { padding: var(--sp-8) var(--sp-4) !important; }

  .btn-primary,
  .btn-secondary    { padding: 0.875rem 1.75rem; font-size: 0.625rem; }

  .map-wrapper { height: 280px; }

  .privacy-popup   { padding: var(--sp-3); }
  .privacy-actions { flex-direction: column; }
  .btn-accept,
  .btn-decline     { width: 100%; text-align: center; }

  .footer-minimal { padding: var(--sp-6) var(--sp-3); }
  .footer-links   { gap: var(--sp-2); }
  .footer-link    { font-size: 0.5625rem; }
  .footer-info    { font-size: 0.6875rem; }
  .footer-logo    { font-size: 1.1rem; }

  .policy-container { padding: calc(4rem + var(--sp-6)) var(--sp-3) var(--sp-8); }
  .policy-section   { padding: var(--sp-4) var(--sp-3); }
  .policy-section h2 { font-size: 1.5rem; }

  .luxury-thanks-wrapper,
  .luxury-error-wrapper { padding: var(--sp-8) var(--sp-4); }
}

/* ── 320px: the tightest viewport — Galaxy S3/4, iPhone 4/5 ── */
@media (max-width: 320px) {
  html { font-size: 87.5%; } /* 14px base — every rem now smaller */

  /* Layout */
  .section,
  .section-inner {
    padding-left:   var(--sp-2);
    padding-right:  var(--sp-2);
    padding-top:    var(--sp-6);
    padding-bottom: var(--sp-6);
  }

  /* Header — prevent logo overflow */
  .main-header  { height: 3.75rem; }
  .logo-text    { font-size: 1.05rem; letter-spacing: 0.04em; }
  .burger-line  { width: 20px; }

  /* Mobile nav panel */
  .main-nav {
    width: 100%;
    max-width: 100%;
    padding: var(--sp-12) var(--sp-4);
    gap: var(--sp-4);
  }
  .nav-link { font-size: 1rem; }

  /* Hero */
  .hero-section       { min-height: 100svh; }
  .hero-eyebrow       { font-size: 0.5rem; letter-spacing: 0.18em; margin-bottom: var(--sp-3); }
  .hero-title         { font-size: clamp(2.75rem, 17vw, 3.25rem); line-height: 0.95; margin-bottom: var(--sp-4); }
  .hero-subtitle      { font-size: 0.8125rem; margin-bottom: var(--sp-6); }
  .hero-ctas          { gap: var(--sp-2); }
  .hero-scroll        { display: none; } /* too cramped at 320px */

  /* Buttons — full-width in hero, normal elsewhere */
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
  }
  .btn-primary,
  .btn-secondary  { padding: 0.875rem 1.5rem; font-size: 0.5625rem; letter-spacing: 0.12em; }
  .btn-text       { font-size: 0.5625rem; }

  /* Marquee — tighter */
  .marquee-wrapper  { padding: 0.625rem 0; }
  .marquee-text     { font-size: 0.5rem; letter-spacing: 0.18em; }
  .marquee-item     { gap: var(--sp-3); padding: 0 var(--sp-3); }
  .marquee-dot      { width: 2px; height: 2px; }

  /* Labels */
  .label { font-size: 0.5rem; letter-spacing: 0.2em; gap: 0.5rem; }
  .label::before { width: 1.25rem; }

  /* Page hero (inner pages) */
  .page-hero         { padding-top: calc(3.75rem + var(--sp-6)); padding-bottom: var(--sp-6); }
  .page-hero-label   { font-size: 0.5rem; letter-spacing: 0.2em; }
  .page-hero-title   { font-size: clamp(2.25rem, 13vw, 3rem); margin-bottom: var(--sp-3); }
  .page-hero-subtitle { font-size: 0.8125rem; }

  /* Stats — stack vertically at 320px */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item        { padding: var(--sp-3) var(--sp-2); }
  .stat-number      { font-size: clamp(1.875rem, 9vw, 2.5rem); }
  .stat-suffix      { font-size: 1.25rem; }
  .stat-label       { font-size: 0.5rem; letter-spacing: 0.08em; }
  /* remove right border from 2nd item */
  .stat-item:nth-child(2) { border-right: none; }
  /* add bottom border between rows */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--gold-border); }

  /* Products */
  .products-grid        { gap: var(--sp-2); }
  .product-img-wrapper  { height: 200px; }
  .product-body         { padding: var(--sp-2) var(--sp-3); }
  .product-name         { font-size: 1.125rem; margin-bottom: 0.25rem; }
  .product-desc         { font-size: 0.8125rem; }
  .product-price        { font-size: 1.25rem; }

  /* Features */
  .features-grid   { gap: 1px; }
  .feature-card    { padding: var(--sp-4) var(--sp-3); }
  .feature-number  { font-size: 2rem; margin-bottom: var(--sp-2); }
  .feature-icon    { font-size: 1.125rem; margin-bottom: var(--sp-2); }
  .feature-title   { font-size: 1rem; }
  .feature-desc    { font-size: 0.8125rem; }

  /* Principles */
  .principles-grid  { gap: 1px; }
  .principle-card   { padding: var(--sp-4) var(--sp-3); }
  .principle-num    { font-size: 2.5rem; margin-bottom: var(--sp-3); }
  .principle-title  { font-size: 1.125rem; }
  .principle-desc   { font-size: 0.8125rem; }

  /* Split sections — images shorter */
  .split-layout     { gap: var(--sp-6); }
  .split-image-frame { height: 220px !important; border-radius: var(--r-lg); }
  .image-accent     { display: none; }

  /* Timeline */
  .timeline::before { left: 1.1rem; }
  .timeline         { padding-left: 0; }
  .timeline-item    { gap: var(--sp-3); margin-bottom: var(--sp-5, 2.5rem); }
  .timeline-step    { width: 2.25rem; height: 2.25rem; font-size: 0.8125rem; }
  .timeline-body h3 { font-size: 1.125rem; }
  .timeline-body p  { font-size: 0.8125rem; }

  /* Care guide */
  .care-grid   { gap: var(--sp-2); }
  .care-item   { padding: var(--sp-3) var(--sp-3); gap: var(--sp-2); flex-wrap: wrap; }
  .care-number { font-size: 1.75rem; width: 2.25rem; }
  .care-body h4 { font-size: 0.9375rem; }
  .care-body p  { font-size: 0.8125rem; }

  /* Horizontal scroll */
  .h-scroll-card  { flex: 0 0 248px; }
  .h-scroll-img   { height: 185px; }
  .h-scroll-body  { padding: var(--sp-3); }
  .h-scroll-body h4 { font-size: 1rem; }

  /* Filter tabs */
  .filter-tabs  { gap: 0.375rem; }
  .filter-tab   { padding: 0.4375rem 1rem; font-size: 0.5625rem; }

  /* Contact form */
  .contact-wrapper      { padding: var(--sp-4) var(--sp-2); border-radius: var(--r-lg); }
  .contact-grid         { gap: var(--sp-6); }
  .info-item            { gap: var(--sp-2); }
  .info-icon-wrap       { width: 2rem; height: 2rem; font-size: 0.75rem; }
  .info-content h4      { font-size: 0.5rem; letter-spacing: 0.15em; }
  .info-content p       { font-size: 0.8125rem; }
  .form-label           { font-size: 0.5rem; }
  .form-input,
  .form-textarea        { padding: 0.75rem; font-size: 0.875rem; }
  .form-checkbox-label  { font-size: 0.75rem; }

  /* Accordion */
  .accordion-trigger  { padding: var(--sp-3) var(--sp-2); gap: var(--sp-2); }
  .accordion-question { font-size: 0.9375rem; }
  .accordion-answer   { padding: 0 var(--sp-2) var(--sp-3); font-size: 0.8125rem; }
  .accordion-icon     { width: 1.375rem; height: 1.375rem; font-size: 0.625rem; }

  /* Pull quote */
  .pull-quote         { font-size: 1.25rem; padding-left: var(--sp-4); }
  .pull-quote::before { font-size: 3.5rem; top: -0.75rem; }

  /* Editorial block */
  .editorial-block    { min-height: auto; border-radius: var(--r-lg); }
  .editorial-content  { padding: var(--sp-6) var(--sp-3) !important; }
  .editorial-content h2 { font-size: 2rem; }

  /* Map */
  .map-wrapper { height: 240px; border-radius: var(--r-lg); }

  /* Footer */
  .footer-minimal { padding: var(--sp-4) var(--sp-2); }
  .footer-logo    { font-size: 1rem; margin-bottom: 0.25rem; }
  .footer-content { gap: var(--sp-2); }
  .footer-links   { gap: 0.375rem var(--sp-2); }
  .footer-link    { font-size: 0.5rem; }
  .footer-info    { font-size: 0.625rem; line-height: 1.5; }

  /* Privacy popup */
  .privacy-popup  { padding: var(--sp-3) var(--sp-2); }
  .privacy-text   { font-size: 0.75rem; }
  .privacy-actions { flex-direction: column; gap: var(--sp-1); }
  .btn-accept,
  .btn-decline    { width: 100%; text-align: center; padding: 0.625rem; }

  /* Policy pages */
  .policy-container  { padding: calc(3.75rem + var(--sp-6)) var(--sp-2) var(--sp-6); }
  .policy-section    { padding: var(--sp-4) var(--sp-2); border-radius: var(--r-md); }
  .policy-section h2 { font-size: 1.375rem; }
  .policy-section h3 { font-size: 1.125rem; }
  .policy-section p,
  .policy-section li { font-size: 0.8125rem; }

  /* Thank you / Error pages */
  .luxury-thanks-wrapper,
  .luxury-error-wrapper { padding: var(--sp-6) var(--sp-3); border-radius: var(--r-lg); }
  .thank-you-icon,
  .luxury-thanks-icon   { font-size: 2.75rem; }
  .error-code           { font-size: clamp(5rem, 25vw, 8rem); }

  /* Section headers */
  .section-header      { margin-bottom: var(--sp-6); }
}
