:root {
  --cream: #f8f5ef;
  --cream-light: #fbfaf7;
  --cream-panel: #f4f0e7;
  --navy: #0b1a33;
  --ink: #11151e;
  --muted: #666a6e;
  --soft: #dad4c7;
  --border: #e5ded2;
  --hero-gray: #bebfba;
  --video-gray: #c1c1be;
  --white: #fff;
  --overlay: rgba(0, 0, 0, 0.58);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --drawer-width: min(30rem, 92vw);
  --header-offset: 10.4rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.is-locked { overflow: hidden; }
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 247, 0.97);
  border-bottom: 1px solid rgba(229, 222, 210, 0.75);
  backdrop-filter: blur(16px);
}
.top-nav {
  min-height: 6.6rem;
  padding: 1.25rem 2rem 0.7rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: 2.35rem;
}
.nav-right { justify-content: flex-end; gap: 2rem; }
.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #0e1321;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--muted); }
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  letter-spacing: -0.055em;
  line-height: 1;
  color: #11151e;
  white-space: nowrap;
}
.icon-only, .bag-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #11151e;
  padding: 0;
}
.menu-icon {
  width: 2.1rem;
  display: grid;
  gap: 0.44rem;
}
.menu-icon span {
  height: 1px;
  width: 100%;
  background: currentColor;
  display: block;
}
.bag-button {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: grid;
  place-items: center;
}
.bag-button svg, .floating-cart svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-badge {
  position: absolute;
  top: -0.7rem;
  right: -0.75rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}
.announcement {
  margin: 0 2rem 1.25rem;
  min-height: 2.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5d62;
  background: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  font-weight: 500;
}

.hero {
  min-height: clamp(38rem, 70vh, 54rem);
  background: linear-gradient(rgba(11, 26, 51, 0.45), rgba(11, 26, 51, 0.45)), url('images/hero-editorial.jpg') no-repeat center/cover;
  display: grid;
  place-items: start center;
  padding-top: clamp(5rem, 9vw, 9rem);
  text-align: center;
  color: var(--white);
}
.hero-inner { width: min(88vw, 88rem); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.1rem, 9.1vw, 10.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.hero p {
  margin: 2.8rem 0 4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.45;
  font-size: clamp(0.95rem, 1.5vw, 1.7rem);
  font-weight: 400;
}
.button {
  min-height: 3.85rem;
  padding: 0 2.8rem;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-ghost-light { color: var(--white); background: transparent; }
.button-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button-light { color: var(--ink); background: transparent; border-color: var(--border); }

.product-showcase {
  padding: 2.6rem 2.6rem 4.4rem;
  background: var(--cream);
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 33rem 22rem;
  gap: 2.5rem;
  align-items: stretch;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: #eeeae2;
  min-height: 18rem;
  border: 1px solid rgba(229, 222, 210, 0.45);
}
.card-square { min-height: 33rem; }
.card-tall { grid-row: span 2; min-height: 57.5rem; }
.card-short { min-height: 22rem; }
.product-card img { transition: transform 500ms ease; }
.product-card:hover img { transform: scale(1.018); }
.product-overlay::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48), rgba(0,0,0,0));
}
.card-copy {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 1.65rem;
  color: var(--white);
  display: grid;
  gap: 0.3rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.card-copy span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}
.card-copy strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.05;
}
.card-copy em {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.4rem;
}
.card-copy-small strong { font-size: 1.25rem; }
.card-copy-small span { font-size: 0.67rem; }
.card-copy-small em { font-size: 1.05rem; }
.card-blank {
  background: #fff;
  color: #14191f;
  display: grid;
  align-items: start;
  padding: 0.55rem;
  font-size: 1.38rem;
  min-height: 22rem;
}
.broken-image-mark {
  place-self: center;
  width: 1rem;
  height: 1rem;
  border: 1px solid #7ea1be;
  color: #2977af;
  font-size: .78rem;
  line-height: 1;
  display: grid;
  place-items: center;
  font-family: var(--sans);
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6.6rem);
  align-items: center;
  padding: 3.9rem 2rem 0;
  background: var(--cream);
  min-height: 54rem;
}
.editorial-image {
  height: clamp(38rem, 72vw, 57rem);
  overflow: hidden;
}
.editorial-copy { max-width: 42.5rem; padding-top: 2rem; }
.eyebrow {
  margin: 0 0 2.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
  font-weight: 800;
}
.editorial-copy h2, .fabric h2, .section-heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.editorial-copy h2 {
  font-size: clamp(4.1rem, 6vw, 6.4rem);
  line-height: 0.92;
  margin: 0;
}
.editorial-copy h2 span {
  font-style: italic;
  color: #6e7176;
}
.editorial-text {
  color: #5a5d62;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  margin: 3.2rem 0 3.6rem;
  max-width: 47rem;
}
.button-row { display: flex; gap: 1.35rem; flex-wrap: wrap; }

.brand-quote {
  text-align: center;
  padding: clamp(5.5rem, 9vw, 8.9rem) 2rem clamp(6.5rem, 10vw, 9.5rem);
  border-bottom: 1px solid rgba(229,222,210,.6);
}
.brand-quote .eyebrow { margin-bottom: 2.2rem; color: #63666e; }
.brand-quote blockquote {
  margin: 0 auto;
  max-width: 65rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.1vw, 4.25rem);
  line-height: 1.17;
  letter-spacing: -0.035em;
  color: var(--navy);
}
.quote-rule {
  display: block;
  width: 8rem;
  height: 1px;
  background: #cfc8bb;
  margin: 3.6rem auto 0;
}

.curated {
  padding: clamp(3.4rem, 6vw, 5rem) 2.6rem clamp(4rem, 8vw, 7rem);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.05rem);
}
.section-heading button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
.essentials-grid .product-card { min-height: 36rem; }

.fabric {
  display: grid;
  grid-template-columns: 0.92fr 2fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(5rem, 8vw, 7.5rem) 2rem 7rem;
  background: var(--cream);
}
.fabric-copy { max-width: 31rem; }
.fabric h2 {
  margin: 0 0 2.25rem;
  font-size: clamp(3rem, 4vw, 4.45rem);
}
.fabric-copy > p {
  margin: 0 0 3.4rem;
  color: #5f6267;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.48;
}
.fabric-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.55rem; }
.fabric-list li { display: grid; grid-template-columns: 4.2rem 1fr; gap: 1.25rem; align-items: center; }
.fabric-list li > span {
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.54);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
}
.fabric-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.fabric-list p { margin: .25rem 0 0; color: #5f6267; font-size: .94rem; }
.texture-video {
  position: relative;
  min-height: clamp(33rem, 48vw, 42rem);
  background: var(--video-gray);
  border: 1px solid rgba(70,70,70,.1);
  color: #171b20;
  padding: .2rem .35rem;
}
.texture-video > span { font-size: 1.35rem; }
.texture-video button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6.5rem;
  height: 6.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 0.5rem 1.5rem rgba(11, 26, 51, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}
.texture-video button:hover, .texture-video button:focus-visible {
  transform: scale(1.08);
  background: var(--white);
}
.texture-video svg { width: 2.4rem; height: 2.4rem; fill: currentColor; transform: translateX(3px); }

.floating-cart {
  position: fixed;
  right: 2.6rem;
  bottom: 2.7rem;
  z-index: 24;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 999px;
  border: 2px solid #f0dfb4;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 0.8rem 2rem rgba(20,20,20,.08);
}
.floating-cart .cart-badge { top: .1rem; right: -.05rem; background: #f4e6c2; color: var(--navy); }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.overlay.is-visible { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: var(--drawer-width);
  height: 100dvh;
  background: var(--cream-light);
  color: var(--navy);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 260ms ease, visibility 260ms ease;
  padding: 1.45rem 1.75rem 6.25rem;
  box-shadow: -1.2rem 0 3rem rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.close-button, .full-menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  position: absolute;
  right: 1.25rem;
  top: 1.1rem;
  font-size: 1.2rem;
  line-height: 1;
}
.drawer h2 {
  margin: .45rem 0 .45rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--navy);
}
.drawer > p {
  margin: 0 0 2.2rem;
  color: #606369;
  font-size: .84rem;
  line-height: 1.55;
}
.drawer-list { display: grid; gap: 1.2rem; align-content: start; }
.drawer-list a {
  font-size: .92rem;
  font-weight: 600;
  color: #1b2333;
}
.drawer-list a:hover { opacity: .62; }
.drawer-cta {
  appearance: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  height: 2.9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  margin-top: auto;
}
.cart-drawer { padding-bottom: 1rem; }
.cart-items { display: grid; gap: .85rem; overflow: auto; padding-right: .25rem; }
.cart-line {
  display: grid;
  grid-template-columns: 4.8rem 1fr auto;
  gap: .8rem;
  align-items: start;
  padding: .55rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.35);
}
.cart-line img { height: 4.4rem; object-fit: cover; }
.cart-line h3 {
  margin: 0 0 .08rem;
  font-family: var(--serif);
  font-size: .93rem;
  line-height: 1.1;
}
.cart-line p { margin: 0; color: #5a5d62; font-size: .67rem; }
.cart-line strong { display: block; margin-top: .36rem; font-size: .73rem; }
.remove-button {
  appearance: none;
  border: 0;
  background: transparent;
  align-self: center;
  color: #1c2536;
  font-size: .68rem;
}
.cart-empty {
  color: #606369;
  border: 1px solid var(--border);
  padding: 1rem;
  background: rgba(255,255,255,.36);
  font-size: .9rem;
}
.cart-footer { margin-top: auto; display: grid; gap: .7rem; }
.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: #4c5056;
  margin-top: 1.25rem;
}
.subtotal-row strong { color: var(--navy); font-size: .83rem; }
.checkout { width: 100%; margin-top: 0; }
.continue-button {
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: .72rem;
}

.full-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream-light);
  color: var(--navy);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  display: grid;
  place-items: center;
}
.full-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.full-menu-close { left: 2.35rem; right: auto; top: 3.4rem; font-size: 1.5rem; }
.full-menu nav {
  display: grid;
  gap: 1.45rem;
  text-align: center;
  transform: translateY(1rem);
}
.full-menu a {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}
.full-menu a:hover { opacity: .6; }

@media (max-width: 980px) {
  .top-nav { padding-inline: 1.3rem; }
  .nav-cluster { gap: 1.35rem; }
  .nav-link { font-size: .78rem; letter-spacing: .16em; }
  .announcement { margin-inline: 1.3rem; letter-spacing: .2em; font-size: .66rem; }
  .masonry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: auto; }
  .card-tall { grid-row: auto; min-height: 36rem; }
  .editorial-section, .fabric { grid-template-columns: 1fr; }
  .editorial-image { height: 42rem; }
  .editorial-copy { padding: 0 1rem 5rem; }
  .essentials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .top-nav {
    min-height: 5.5rem;
    padding: 1rem 1rem .45rem;
    grid-template-columns: auto 1fr auto;
  }
  .brand { font-size: 1.65rem; justify-self: center; }
  .nav-left .nav-link, .nav-right .nav-link { display: none; }
  .nav-cluster { gap: .9rem; }
  .announcement {
    min-height: 1.9rem;
    margin: 0 .9rem .85rem;
    padding: 0 .7rem;
    letter-spacing: .12em;
    font-size: 0.65rem;
    text-align: center;
    color: #5a5d62;
  }
  .hero { min-height: 34rem; padding-top: 5.4rem; }
  .hero h1 { font-size: clamp(3.9rem, 17vw, 6rem); }
  .hero p { margin: 2rem 0 2.6rem; font-size: .82rem; }
  .button { width: 100%; min-height: 3.4rem; padding: 0 1.4rem; }
  .product-showcase, .curated { padding-inline: 1rem; }
  .masonry-grid, .essentials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .product-card, .card-square, .card-tall, .card-short { min-height: 30rem; }
  .card-blank { min-height: 20rem; }
  .editorial-section { padding: 2rem 1rem 0; gap: 2rem; }
  .editorial-image { height: 33rem; }
  .editorial-copy { padding-inline: 0; }
  .editorial-copy h2 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .button-row { gap: .85rem; }
  .brand-quote { padding-inline: 1.1rem; }
  .section-heading { margin-bottom: 2rem; align-items: end; }
  .section-heading h2 { font-size: 2.7rem; }
  .section-heading button { font-size: .78rem; }
  .fabric { padding: 4rem 1rem 5rem; gap: 2rem; }
  .texture-video { min-height: 24rem; }
  .floating-cart { width: 4.35rem; height: 4.35rem; right: 1rem; bottom: 1rem; }
  .drawer { width: 100vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* --- Added Production Styles --- */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 1rem 2rem;
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* Focus indicators */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
}
.full-menu :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--cream);
}

/* Add to Bag Button on Cards */
.add-to-bag-btn, .inquire-btn {
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 100%;
}
.add-to-bag-btn:hover, .add-to-bag-btn:focus-visible {
  background: var(--white);
  color: var(--navy);
}
.inquire-btn {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.inquire-btn:hover, .inquire-btn:focus-visible {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
}

/* Premium Footer */
.site-footer {
  background: var(--navy);
  color: var(--cream-light);
  padding: 5rem 2rem 2.5rem;
  border-top: 1px solid rgba(229, 222, 210, 0.15);
  font-family: var(--sans);
}
.footer-grid {
  max-width: 80rem;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
}
.footer-brand h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}
.footer-brand p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 2rem;
  max-width: 18rem;
}
.footer-newsletter h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
  color: var(--white);
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--soft);
  padding-bottom: 0.5rem;
  max-width: 20rem;
}
.newsletter-form input {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
}
.newsletter-form input::placeholder {
  color: var(--soft);
}
.newsletter-form input:focus {
  outline: none;
}
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0 0.5rem;
  font-size: 1.1rem;
}
.newsletter-whatsapp {
  display: inline-flex;
  color: var(--cream);
  border-bottom: 1px solid var(--soft);
  padding-bottom: 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.newsletter-whatsapp:hover,
.newsletter-whatsapp:focus-visible {
  color: var(--white);
  border-color: var(--white);
}
.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1.5rem;
  color: var(--white);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.footer-col a, .footer-col span {
  color: var(--soft);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col a:hover, .footer-col a:focus-visible {
  color: var(--white);
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-socials a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(218, 212, 199, 0.2);
  display: grid;
  place-items: center;
  color: var(--soft);
  transition: all 0.2s ease;
}
.footer-socials a:hover, .footer-socials a:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(218, 212, 199, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--soft);
}
.footer-bottom-links a:hover {
  color: var(--white);
}
.copyright {
  font-size: 0.8rem;
  color: var(--soft);
}
.payment-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Legal Pages Styling */
.legal-hero {
  padding: 6rem 2rem 3.5rem;
  text-align: center;
  background: var(--cream-panel);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 400;
  margin: 0;
  color: var(--navy);
}
.legal-content {
  padding: 4rem 2rem 6rem;
  background: var(--cream-light);
}
.legal-container {
  max-width: 52rem;
  margin: 0 auto;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.75;
}
.legal-container h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  font-weight: 500;
}
.legal-container p {
  margin: 0 0 1.5rem;
  color: #3b4047;
}
.legal-container ul {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.legal-container li {
  margin-bottom: 0.5rem;
  color: #3b4047;
}

/* Contact Page Form & Grid styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 70rem;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
}
.contact-info p {
  color: #5a5d62;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.info-item {
  margin-bottom: 2rem;
}
.info-item strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #8b8e90;
  margin-bottom: 0.5rem;
}
.info-item span, .info-item a {
  font-size: 1.1rem;
  color: var(--navy);
}
.contact-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.02);
}
.whatsapp-contact-card {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.02);
}
.whatsapp-contact-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--navy);
}
.whatsapp-contact-card p {
  color: #5a5d62;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.whatsapp-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: auto;
  min-width: 13rem;
}
.support-note {
  margin-top: 1.5rem !important;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--navy);
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-submit-btn:hover, .form-submit-btn:focus-visible {
  background: #1c2536;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form {
    padding: 2rem;
  }
}

/* 404 Page Styling */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream-light);
}
.error-page h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--navy);
}
.error-page p {
  color: #5a5d62;
  font-size: 1.25rem;
  margin: 0 0 3rem;
  max-width: 30rem;
  line-height: 1.6;
}
