/* ============================================================
   NADÉLIE V2 "AMBRE" — style.css
   Palette: cream / amber / espresso / blush / ivory
   Fonts: Instrument Serif (display) + Syne (body)
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --cream:        #FBF6EC;
  --amber:        #9B6B3A;
  --amber-light:  #C4955E;
  --espresso:     #2A1A06;
  --blush:        #E8A068;
  --ivory:        #FFFFF8;
  --dark:         #1C1109;
  --dark-mid:     #2E1D0C;
  --text:         #3D2508;
  --text-muted:   #7A5C3A;
  --border:       rgba(155, 107, 58, 0.18);
  --border-dark:  rgba(255, 255, 255, 0.1);
  --glass-bg:     rgba(251, 246, 236, 0.78);
  --glass-border: rgba(155, 107, 58, 0.22);
  --radius:       4px;
  --radius-md:    8px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:        72px;
  --container:    1200px;
  --container-narrow: 760px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Syne', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
fieldset { border: none; }
textarea, input, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--blush));
  z-index: 10000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Containers ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section bg helpers ── */
.section-dark  { background-color: var(--dark); color: var(--ivory); }
.section-ivory { background-color: var(--ivory); }

/* ── Typography helpers ── */
.section-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--amber-light); }

.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--ivory); }
.section-title em { font-style: italic; color: var(--amber); }

.section-subtitle {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 520px;
}
.section-subtitle.light { color: rgba(255, 255, 248, 0.6); }

.section-header { margin-bottom: 3rem; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover   { transform: translateY(-2px); }
.btn:active  { transform: translateY(0); }

.btn-amber {
  background: var(--amber);
  color: var(--ivory);
}
.btn-amber:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 28px rgba(155, 107, 58, 0.38);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(255, 255, 248, 0.45);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 248, 0.1);
  border-color: var(--ivory);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(255, 255, 248, 0.25);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 248, 0.07);
  border-color: rgba(255, 255, 248, 0.55);
}

.btn-lg { padding: 1.05rem 2.5rem; font-size: 0.85rem; }

/* Magnetic CTA — JS will add inline transform */
.magnetic-btn {
  transition:
    transform 0.35s var(--ease-out),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
}

#nav.nav-scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--glass-border), 0 4px 24px rgba(42, 26, 6, 0.08);
}
#nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.35s var(--ease);
}
#nav.nav-scrolled .nav-logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 248, 0.8);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

#nav.nav-scrolled .nav-links a { color: var(--text-muted); }
#nav.nav-scrolled .nav-links a:hover { color: var(--amber); }
#nav.nav-scrolled .nav-links a::after { background: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--ivory) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  letter-spacing: 0.1em !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 901;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
#nav.nav-scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--espresso);
}

/* Real photo — diagonal clip on the right */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG_7524.jpeg');
  background-size: cover;
  background-position: center 30%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 26% 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(28, 17, 9, 0.45) 0%, transparent 65%);
}

/* Espresso gradient over the left side */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
    var(--espresso) 0%,
    rgba(42, 26, 6, 0.97) 26%,
    rgba(42, 26, 6, 0.72) 46%,
    transparent 64%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem 6rem;
  padding-top: calc(var(--nav-h) + 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text-block { max-width: 560px; }

/* Hero eyebrow — treated as .reveal with custom delay */
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

/* Split-title chars */
.hero-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
}

.split-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.7s var(--ease-out),
    opacity   0.5s var(--ease);
}

.hero-sub {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: rgba(255, 255, 248, 0.65);
  margin-bottom: 2rem;
}
.hero-sub .amp { color: var(--blush); font-style: normal; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.hero-tags li {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 248, 0.5);
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(255, 255, 248, 0.15);
  border-radius: var(--radius);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-logo-badge {
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}
.hero-logo-badge img {
  width: 130px; height: 130px;
  object-fit: contain;
  opacity: 0.65;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s var(--ease) 1.6s both;
}
.scroll-line {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 248, 0.35);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── MARQUEE ── */
.marquee {
  background: var(--amber);
  color: var(--ivory);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track {
  display: flex;
  align-items: center;
}
.marquee-track span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 1.5rem;
}
.marquee-sep { color: rgba(255, 255, 248, 0.45); padding: 0 0.25rem !important; }

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

/* ── ABOUT ── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame { position: relative; }
.about-portrait {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.about-img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 55%;
  height: 55%;
  border: 2px solid var(--amber-light);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--amber);
  border-left: 2.5px solid var(--amber-light);
  padding-left: 1.25rem;
  line-height: 1.55;
  margin: 0.25rem 0;
}

.about-stats {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0.5rem;
}
.stat-item {
  flex: 1;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.stat-number, .stat-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--amber);
  line-height: 1;
}
.stat-unit {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.3rem;
  color: var(--amber);
  vertical-align: baseline;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.stat-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}
/* Number row wrapper */
.stat-item .stat-row {
  display: flex;
  align-items: baseline;
  gap: 0;
}

/* ── GALLERY ── */
.gallery { padding: 7rem 0; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 248, 0.45);
  border: 1px solid rgba(255, 255, 248, 0.14);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.filter-btn:hover {
  color: var(--ivory);
  border-color: rgba(255, 255, 248, 0.4);
}
.filter-btn.active {
  background: var(--amber);
  color: var(--ivory);
  border-color: var(--amber);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 9, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
  line-height: 1.3;
}
.gallery-item:hover .gallery-item-title { transform: translateY(0); }

.gallery-item.gallery-hidden { display: none; }

/* ── OCCASIONS ── */
.occasions {
  padding: 7rem 0;
  background: var(--ivory);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 260px;
  cursor: default;
}
.bento-wide  { grid-column: span 2; }
.bento-tall  { grid-row: span 2; min-height: 540px; }

.bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.bento-card:hover .bento-bg-img { transform: scale(1.06); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 17, 9, 0.88) 0%,
    rgba(28, 17, 9, 0.25) 55%,
    transparent 100%
  );
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--ivory);
}

.bento-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(155, 107, 58, 0.2);
  border: 1px solid rgba(196, 149, 94, 0.3);
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.55rem;
  align-self: flex-start;
}

.bento-content h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.bento-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 248, 0.62);
  line-height: 1.55;
}

/* ── PRICING ── */
.pricing { padding: 7rem 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 248, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.price-card-inner {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.25rem;
}

.price-featured {
  border-color: var(--amber);
  background: rgba(155, 107, 58, 0.1);
}

.price-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--amber);
  color: var(--ivory);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.price-icon { color: var(--amber-light); font-size: 0.85rem; display: block; margin-bottom: -0.25rem; }

.price-card-header h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.price-desc { font-size: 0.8rem; color: rgba(255, 255, 248, 0.45); }

.price-card-body { flex: 1; }

.price-main {
  font-size: 0.95rem;
  color: rgba(255, 255, 248, 0.7);
  margin-bottom: 1rem;
}
.price-main strong {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--amber-light);
}
.price-unit { font-size: 0.78rem; color: rgba(255, 255, 248, 0.4); }

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 248, 0.6);
  padding-left: 1.1rem;
  position: relative;
}
.price-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--amber-light);
  top: 0.22em;
}

.pricing-note {
  font-size: 0.83rem;
  color: rgba(255, 255, 248, 0.45);
  text-align: center;
}
.pricing-note a { color: var(--amber-light); text-decoration: underline; text-underline-offset: 3px; }

/* ── ORDER FORM ── */
.order {
  padding: 7rem 0;
  background: var(--cream);
}

.order-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--espresso);
  font-size: 0.92rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(155, 107, 58, 0.12);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid { border-color: #b94040; }

.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B6B3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.required { color: var(--amber); }

.field-helper {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: -0.2rem;
}
.field-error {
  font-size: 0.7rem;
  color: #b94040;
  min-height: 1em;
  font-weight: 600;
}

fieldset legend {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  user-select: none;
}
.checkbox-label:hover { border-color: var(--amber-light); background: rgba(155, 107, 58, 0.04); }
.checkbox-label input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--amber);
  flex-shrink: 0;
  padding: 0; border: none; background: none; box-shadow: none;
}

.form-rgpd .checkbox-label {
  border: none; padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-rgpd a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

.form-actions { display: flex; justify-content: center; margin-top: 0.5rem; }

#submitBtn { position: relative; min-width: 220px; }
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 248, 0.3);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
}
#submitBtn.loading .btn-text  { opacity: 0; }
#submitBtn.loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 2.5rem;
  background: rgba(155, 107, 58, 0.06);
  border: 1.5px solid var(--amber-light);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}
.success-icon { font-size: 1.5rem; color: var(--amber); display: block; margin-bottom: 0.75rem; }
.form-success h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--ivory);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.footer-tagline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 248, 0.5);
}
.footer-location {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 248, 0.3);
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-contact a {
  font-size: 0.83rem;
  color: rgba(255, 255, 248, 0.45);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--amber-light); }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255, 255, 248, 0.28); }
.footer-legal a {
  color: rgba(255, 255, 248, 0.28);
  font-size: 0.74rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--amber-light); }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .split-char {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-eyebrow,
  .hero-sub,
  .hero-tags,
  .hero-ctas,
  .hero-logo-badge {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee-inner  { animation: none !important; }
  .scroll-line    { animation: none !important; }
  .hero-scroll-hint { animation: none !important; opacity: 0.6; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration:  0.01ms !important;
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-portrait    { height: 480px; }

  .gallery-grid      { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .bento-grid        { grid-template-columns: repeat(2, 1fr); }
  .bento-tall        { min-height: 260px; grid-row: span 1; }
  .bento-wide        { grid-column: span 2; }

  .pricing-grid      { gap: 1rem; }

  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand      { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(28, 17, 9, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    z-index: 899;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.1rem !important;
    color: var(--ivory) !important;
    letter-spacing: 0.12em !important;
  }
  .nav-cta {
    padding: 0.85rem 2.5rem !important;
    font-size: 1rem !important;
  }

  /* Hero */
  .hero-bg {
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(42, 26, 6, 0.97) 0%,
      rgba(42, 26, 6, 0.93) 45%,
      rgba(42, 26, 6, 0.6)  70%,
      transparent 100%
    );
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5rem;
  }
  .hero-logo-badge { display: none; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 6.5rem); }

  /* About */
  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { height: 360px; }
  .about-img-accent { display: none; }

  /* Gallery */
  .gallery { padding: 5rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Occasions */
  .occasions { padding: 5rem 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-tall { grid-row: span 1; min-height: 220px; }
  .bento-wide { grid-column: span 2; }

  /* Pricing */
  .pricing { padding: 5rem 0; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Order */
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container,
  .container-narrow { padding: 0 1.25rem; }

  .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-tags  { gap: 0.4rem; }

  .about-portrait { height: 300px; }

  .about-stats { flex-direction: column; }
  .stat-sep { width: 100%; height: 1px; }
  .stat-item { padding: 1rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-tall { grid-row: span 1; min-height: 220px; }
  .bento-card { min-height: 210px; }

  .filter-bar { gap: 0.4rem; }
  .filter-btn { padding: 0.38rem 0.8rem; font-size: 0.68rem; }

  .checkbox-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
