:root {
  --color-deep-blue: #1f3a5f;
  --color-deep-blue-top: #182b45;
  --color-gold: #c6a75e;
  --color-ivory: #f4ebdd;
  --color-ivory-soft: #f9f2e6;
  --color-burgundy: #5a1e25;
  --color-charcoal: #2b2b2b;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top navigation bar - Sticky header (Hands Carpets style) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    var(--color-deep-blue-top),
    var(--color-deep-blue)
  );
  border-bottom: 1px solid var(--color-gold);
  color: var(--color-ivory-soft);
  transition: transform 0.35s ease;
  will-change: transform;
}

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

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 12px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
}

/* Hamburger button (left) */
.hamburger-btn {
  justify-self: start;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-ivory-soft);
  transition: color 0.2s ease;
  border-radius: 4px;
}

.hamburger-btn:hover {
  color: var(--color-gold);
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*
  Flex lives on .brand-lockup inside the <a>, not on the <a> itself.
  Some browsers mishandle display:flex on <a> when it wraps a block <div>,
  which caused the logo and name to stack. The inner span is a reliable
  flex container; the title is a <span> so the link only contains phrasing content.
*/
.brand {
  display: inline-block;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

/* Circular frame behind the mark (matches header palette) */
.brand-logo-circle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 55%
    ),
    rgba(8, 22, 40, 0.65);
  border: 1px solid rgba(198, 167, 94, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 14px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  padding: 8px;
  overflow: hidden;
  align-self: center;
}

.brand-logo {
  width: 150%;
  height: 150%;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 769px) {
  .brand-logo-circle {
    width: 120px;
    height: 120px;
    padding: 12px;
  }
}

/* Luxury wordmark lockup (primary serif + subtitle sans, similar tier to high-end rug brands) */
.brand-name {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  gap: 2px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.brand-name-primary {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(19px, 4vw, 28px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ivory-soft);
}

.brand-name-secondary {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(8px, 1.85vw, 10px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.9);
  margin-top: 1px;
}

.brand-name-by {
  font-weight: 300;
  letter-spacing: 0.24em;
  margin-right: 0.35em;
  opacity: 0.95;
}

.brand-name-persia {
  font-weight: 500;
  letter-spacing: 0.36em;
}

.nav-bar-right {
  justify-self: end;
  width: auto;
  min-height: 56px;
  display: flex;
  align-items: center;
}

/* Ask the Expert ? nav CTA (matches header ivory / gold) */
.nav-expert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: 44px;
  border: 1px solid rgba(198, 167, 94, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08)),
    rgba(8, 19, 34, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--color-ivory-soft);
  text-decoration: none;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-expert-link:hover {
  color: var(--color-gold);
  border-color: rgba(198, 167, 94, 0.95);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 14px rgba(0, 0, 0, 0.28);
}

.nav-expert-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.nav-expert-link[aria-current="page"] {
  border-color: rgba(198, 167, 94, 0.95);
  color: var(--color-gold);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.06)),
    rgba(12, 28, 48, 0.92);
}

.nav-expert-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: inherit;
}

.nav-expert-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-expert-label {
  display: none;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .nav-expert-label {
    display: inline;
  }

  .nav-expert-link {
    padding: 8px 14px 8px 12px;
  }
}

@media (min-width: 480px) and (max-width: 620px) {
  .nav-expert-link {
    font-size: 9px;
    letter-spacing: 0.02em;
    padding: 8px 12px 8px 10px;
    gap: 6px;
  }
}

/* Language selector */
.language-switcher {
  min-width: 156px;
  position: relative;
}

.language-switcher-label {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.72);
}

.language-switcher .goog-te-gadget {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: rgba(244, 235, 221, 0.92);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switcher .goog-te-gadget .goog-te-combo {
  min-height: 34px;
  width: 100%;
  padding: 6px 34px 6px 12px;
  border: 1px solid rgba(198, 167, 94, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08)),
    rgba(8, 19, 34, 0.8);
  color: var(--color-ivory-soft);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-switcher::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(244, 235, 221, 0.9);
  border-bottom: 1.5px solid rgba(244, 235, 221, 0.9);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.language-switcher .goog-te-gadget .goog-te-combo:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(198, 167, 94, 0.35), 0 10px 26px rgba(0, 0, 0, 0.42);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.06)),
    rgba(11, 24, 41, 0.88);
}

.language-switcher .goog-te-gadget .goog-te-combo:hover {
  border-color: rgba(198, 167, 94, 0.95);
}

.language-switcher .goog-te-gadget span {
  color: rgba(244, 235, 221, 0.7);
}

.language-switcher .goog-te-gadget a {
  color: rgba(244, 235, 221, 0.72);
  text-decoration: none;
}

/* Menu drawer - left slide-out (Hands Carpets style) */
.menu-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  /* Wide enough for All Collections + About / Customer Service two-column row */
  width: min(480px, 94vw);
  max-width: 480px;
  height: 100vh;
  transition: width 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(
    to bottom,
    var(--color-deep-blue-top),
    var(--color-deep-blue)
  );
  border-right: 1px solid rgba(198, 167, 94, 0.5);
  z-index: 201;
  transform: translateX(-100%);
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

.menu-drawer.is-open {
  transform: translateX(0);
}

.menu-drawer-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-ivory);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu-drawer-close:hover {
  color: var(--color-gold);
  background: transparent;
}

.menu-drawer-nav {
  padding: 64px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* About us + Customer service sit side by side */
.menu-drawer-columns-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
}

@media (min-width: 769px) {
  .menu-drawer {
    width: min(520px, 90vw);
    max-width: 520px;
  }

  .menu-drawer-nav {
    padding: 64px 36px 40px;
  }

  .menu-drawer-columns-row {
    gap: 24px 36px;
  }
}

.menu-drawer-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Subsection labels inside drawer columns (e.g. "By style", "By quality") */
.menu-drawer-subheading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.55);
  margin-top: 10px;
  margin-bottom: 4px;
}

/* Brand: Section label ? Montserrat (body), refined, minimal */
.menu-drawer-heading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.55);
  margin-bottom: 10px;
  padding: 0;
}

.menu-drawer-column--collections > .menu-drawer-heading:first-of-type {
  white-space: nowrap;
}

/* Invisible heading used to keep column alignment in the drawer;
   matches heading height but is not shown visually */
.menu-drawer-heading--placeholder {
  visibility: hidden;
}

/* Legacy quality-column toggles (kept for older markup if present) */
.menu-drawer-subheading--desktop-quality,
.menu-drawer-link--desktop-quality {
  display: none;
}

/* Extra breathing room before section group headings in drawer */
.menu-drawer-heading--group-start {
  margin-top: 18px;
}

.menu-drawer-columns-row .menu-drawer-heading {
  font-size: 15px;
  letter-spacing: 0.14em;
}

/* Brand: Main links ? Cormorant Garamond (luxury serif), large refined */
.menu-drawer-link {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory);
  padding: 12px 0;
  transition: color 0.2s ease;
}

.menu-drawer-link:hover {
  text-decoration: none;
  color: var(--color-gold);
}

/* Brand: Sub-links ? Cormorant Garamond, Warm Ivory, minimal */
.menu-drawer-link--sub {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.88);
  padding: 10px 0;
  padding-left: 8px;
  transition: color 0.2s ease;
}

.menu-drawer-columns-row .menu-drawer-link--sub {
  padding-left: 0;
  letter-spacing: 0.08em;
}

.menu-drawer-link--sub:hover {
  text-decoration: none;
  color: var(--color-gold);
}

/* Hero slider */

.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  color: var(--color-ivory);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1512;
  background-repeat: no-repeat;
  background-position: center center;
  /* Fill by height so ornate rug frames are never cropped top/bottom */
  background-size: auto 100%;
}

.hero-slide-bg--frame-01 {
  /* Keep the framed painting high so the bottom tagline sits on the sofa */
  background-position: 68% 8%;
  background-size: auto 118%;
}

.hero-slide-bg--frame-02 {
  background-position: center center;
}

.hero-slide-bg--frame-03 {
  background-position: 55% center;
}

@media (max-width: 768px) {
  /* On narrow screens, fill width and keep frames in the visible band */
  .hero-slide-bg {
    background-size: cover;
  }

  .hero-slide-bg--frame-01 {
    background-position: 72% 12%;
    background-size: cover;
  }

  .hero-slide-bg--frame-02 {
    background-position: center 35%;
  }

  .hero-slide-bg--frame-03 {
    background-position: center 35%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at left top,
      rgba(0, 0, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(
      circle at right center,
      rgba(0, 0, 0, 0.2),
      transparent 55%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.08),
      transparent
    );
}

.hero-overlay--variant {
  background: radial-gradient(
      circle at right bottom,
      rgba(0, 0, 0, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at left center,
      rgba(0, 0, 0, 0.15),
      transparent 55%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.06),
      transparent
    );
}

.hero-overlay--warm {
  background: radial-gradient(
      circle at center,
      rgba(90, 30, 37, 0.12),
      transparent 50%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.08),
      transparent
    );
}

.hero-overlay--collage {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.05) 45%,
      transparent 70%
    ),
    radial-gradient(
      circle at center,
      transparent 40%,
      rgba(0, 0, 0, 0.18) 100%
    );
  pointer-events: none;
}

/* Fourth slide ? triptych collage of framed rugs */
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3px;
  background: rgba(198, 167, 94, 0.55);
  margin: 0;
}

.hero-collage--duo {
  grid-template-columns: 1fr 1fr;
}

.hero-collage-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #14100e;
  min-height: 0;
}

.hero-collage-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transition: transform 1.4s ease;
}

.hero-slide--active .hero-collage-panel img {
  transform: scale(1);
}

.hero-collage-panel--left img {
  object-position: center 28%;
}

.hero-collage--duo .hero-collage-panel--left img {
  /* Prefer the top of the frame so the ballerina's head isn't cropped */
  object-position: center top;
}

.hero-collage-panel--center {
  background: #f3ebe0;
}

.hero-collage-panel--center img {
  object-fit: contain;
  object-position: center center;
}

.hero-collage-panel--right img {
  object-position: center 32%;
}

.hero-collage--duo .hero-collage-panel--right img {
  object-position: center 30%;
}

@media (max-width: 768px) {
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.15fr 0.85fr;
    gap: 2px;
  }

  .hero-collage--duo {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .hero-collage-panel--center {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-collage-panel--left {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-collage-panel--right {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-collage--duo .hero-collage-panel--left,
  .hero-collage--duo .hero-collage-panel--right {
    grid-row: 1;
  }

  .hero-collage--duo .hero-collage-panel--left {
    grid-column: 1;
  }

  .hero-collage--duo .hero-collage-panel--right {
    grid-column: 2;
  }

  .hero-collage-panel--center img {
    object-fit: cover;
    object-position: center 20%;
  }
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 24px 72px;
  text-align: center;
  pointer-events: none;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.hero-text-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.hero-text-block {
  display: block;
  text-align: left;
  padding: 14px 28px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(32px, 3.3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  line-height: 1.15;
  margin: 0;
  color: var(--color-ivory-soft);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(244, 235, 221, 0.9);
  max-width: 360px;
  margin: 0;
  padding: 12px 22px;
  line-height: 1.45;
}

/* Divider line under the tagline with dark gradient behind */
.hero-divider {
  width: 100%;
  height: 1px;
  margin: 2px 0 8px;
  position: relative;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.hero-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: rgba(244, 235, 221, 0.92);
}

.hero-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-cta:hover {
  text-decoration: none;
  background: var(--color-gold);
  color: var(--color-deep-blue);
  border-color: var(--color-gold);
}

/* Slider controls */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: var(--color-ivory-soft);
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(31, 58, 95, 0.9);
  color: var(--color-gold);
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(244, 235, 221, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-dot:hover {
  background: rgba(244, 235, 221, 0.4);
}

.hero-dot--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

@media (max-width: 640px) {
  .hero-slider-prev,
  .hero-slider-next {
    width: 40px;
    height: 40px;
  }
  .hero-slider-prev {
    left: 12px;
  }
  .hero-slider-next {
    right: 12px;
  }
}

/* Simple spacer sections only to satisfy anchors */

.spacer-section {
  height: 1px;
}

/* Homepage about features ? alternating image + gist */

.home-features {
  scroll-margin-top: var(--header-height);
  background:
    radial-gradient(
      circle at top left,
      rgba(90, 30, 37, 0.08),
      transparent 50%
    ),
    var(--color-ivory);
  color: var(--color-charcoal);
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: min(72vh, 640px);
  border-bottom: 1px solid rgba(31, 58, 95, 0.1);
}

.home-feature--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.home-feature--reverse .home-feature-media {
  order: 2;
}

.home-feature--reverse .home-feature-copy {
  order: 1;
}

.home-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #1a1512;
}

.home-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.1s ease;
}

.home-feature:hover .home-feature-media img {
  transform: scale(1.04);
}

.home-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.home-feature-kicker {
  margin: 0 0 12px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-burgundy);
}

.home-feature-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-deep-blue);
}

.home-feature-text {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(17px, 1.35vw, 19px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(43, 43, 43, 0.88);
}

.home-feature-link {
  align-self: flex-start;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-feature-link:hover {
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  text-decoration: none;
}

@media (max-width: 900px) {
  .home-feature,
  .home-feature--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-feature--reverse .home-feature-media,
  .home-feature--reverse .home-feature-copy {
    order: unset;
  }

  .home-feature-media {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .home-feature-copy {
    padding: 36px 24px 48px;
    max-width: none;
  }
}

/* Contact section layout */

.contact-section {
  padding: 60px 20px 80px;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 206, 121, 0.18), transparent 48%),
    radial-gradient(circle at 85% 15%, rgba(240, 178, 98, 0.14), transparent 43%),
    linear-gradient(145deg, #2a0000 0%, #5b0306 42%, #2f0103 100%);
  color: #f6e4c7;
}

.booking-shell {
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(246, 198, 118, 0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 65%),
    rgba(50, 3, 6, 0.75);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  align-items: start;
}

.booking-sidebar {
  border-right: 1px solid rgba(246, 198, 118, 0.3);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 197, 120, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(79, 10, 13, 0.86), rgba(58, 7, 8, 0.86));
}

.booking-sidebar-brand {
  padding: 30px 34px 26px;
  border-bottom: 1px solid rgba(246, 198, 118, 0.3);
}

.booking-sidebar-mark {
  width: 118px;
  height: 30px;
  margin: 0 auto 8px;
  background-image: url("./logo-footer-menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.booking-sidebar-name {
  text-align: center;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 46px;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #f5d9a6;
}

.booking-sidebar-content {
  padding: 30px 34px 34px;
}

.booking-sidebar-kicker {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #f2d6a7;
}

.booking-sidebar-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 50px;
  line-height: 0.95;
  color: #f8deaf;
}

.booking-sidebar-meta {
  margin: 0 0 10px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(244, 235, 221, 0.92);
}

.booking-sidebar-description {
  margin: 20px 0 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(244, 235, 221, 0.92);
}

.booking-sidebar-description--tight {
  margin-top: 12px;
}

.booking-sidebar-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.booking-sidebar-points li {
  margin: 10px 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(244, 235, 221, 0.92);
}

.booking-sidebar-cta {
  margin: 20px 0 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(244, 235, 221, 0.92);
  pointer-events: none;
}

.booking-main {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.booking-date-time,
.booking-entry {
  padding: 26px 28px 28px;
}

.booking-date-time {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 26px;
  border-bottom: 1px solid rgba(246, 198, 118, 0.3);
}

.booking-panel-title {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  line-height: 0.92;
  color: #f6dfa9;
}

.booking-month-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 31px;
  color: #f6dfa9;
}

.booking-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(246, 198, 118, 0.74);
  background: rgba(34, 5, 6, 0.5);
  color: #f6dfa9;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.booking-weekdays,
.booking-days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-weekdays {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.78);
}

.booking-weekdays span {
  text-align: center;
}

.booking-days-grid {
  gap: 8px 6px;
}

.booking-days-grid span {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 198, 118, 0.28);
  color: rgba(244, 235, 221, 0.88);
}

.booking-days-grid span.muted {
  opacity: 0.78;
}

.booking-days-grid span.selected {
  border-color: #f2c675;
  box-shadow: 0 0 0 1px rgba(242, 198, 117, 0.5),
    0 0 24px rgba(242, 198, 117, 0.36);
  color: #fff4dc;
}

.booking-timezone {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(244, 235, 221, 0.88);
}

.booking-time-title {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 30px;
  color: #f6dfa9;
}

.booking-slots {
  display: grid;
  gap: 10px;
}

.booking-slots button {
  height: 49px;
  border-radius: 4px;
  border: 1px solid rgba(246, 198, 118, 0.9);
  background: rgba(44, 4, 7, 0.6);
  color: #f9e0b1;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 33px;
  cursor: pointer;
}

.booking-entry {
  max-width: 760px;
}

.booking-calendly {
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgba(246, 198, 118, 0.3);
  background: rgba(39, 3, 5, 0.55);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.booking-calendly.calendly-inline-widget {
  width: min(100%, 860px);
  border: 1px solid rgba(246, 198, 118, 0.28);
  border-radius: 8px;
  overflow: hidden;
}

.booking-calendly iframe {
  border: 0;
}

.booking-calendly--light {
  padding: 0;
  width: 100%;
  border-bottom: none;
  background: transparent;
}

.booking-calendly--light.calendly-inline-widget {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-form label,
.booking-form legend {
  font-size: 16px;
  color: rgba(244, 235, 221, 0.95);
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"] {
  height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(246, 198, 118, 0.75);
  background: rgba(74, 11, 14, 0.5);
  color: #f6e4c7;
  padding: 6px 10px;
  font-size: 14px;
}

.booking-form fieldset {
  border: 0;
  margin: 10px 0 0;
  padding: 0;
}

.booking-form fieldset label {
  display: block;
  margin: 6px 0;
}

.booking-form input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #f2c675;
}

.booking-submit-button {
  margin-top: 14px;
  align-self: flex-start;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(246, 198, 118, 0.95);
  background: linear-gradient(to bottom, #f7ebd5, #d6a95a);
  color: #3f1911;
  padding: 10px 36px;
  cursor: pointer;
}

.contact-details-below {
  max-width: 960px;
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  background: var(--color-ivory);
}

.contact-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 42px;
  margin: 0 0 20px;
  color: var(--color-charcoal);
}

.contact-detail-group {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(90, 30, 37, 0.18);
}

.contact-detail-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(90, 30, 37, 0.85);
  margin-bottom: 4px;
}

.contact-label-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-label-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-detail-value {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.contact-map-embed {
  margin-top: 6px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  max-width: none;
  width: 100%;
  border: 1px solid rgba(90, 30, 37, 0.2);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-map-embed iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-map-embed iframe {
    height: 220px;
  }
}

.contact-link {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* WhatsApp floating action button */

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 50;
}

.whatsapp-fab svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.whatsapp-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.whatsapp-fab:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
}

/* Generic inner pages (Services, Team) */

.page-section {
  padding: 72px 24px 80px;
  background:
    radial-gradient(
      circle at top left,
      rgba(90, 30, 37, 0.1),
      transparent 55%
    ),
    var(--color-ivory);
  color: var(--color-charcoal);
}

.page-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Ask the Expert: one left column (subtitle + copy) vs Calendly ? avoids grid row split that pushed copy below the widget */
.page-inner--booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, min(42vw, 460px));
  grid-template-rows: auto auto;
  column-gap: 32px;
  row-gap: 24px;
  align-items: start;
}

.page-header--booking {
  margin-bottom: 0;
  grid-column: 1 / -1;
  grid-row: 1;
}

.page-inner--booking .booking-page-main {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.page-subtitle--booking {
  max-width: 36em;
}

.booking-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.booking-meta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: rgba(90, 30, 37, 0.88);
}

.booking-meta-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.booking-meta-text {
  flex: 1;
  min-width: 0;
}

.page-inner--booking .booking-page-copy {
  margin-top: 28px;
  min-width: 0;
}

.page-inner--booking .booking-calendly {
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  width: 100%;
  max-width: 460px;
  min-width: 0;
}

.page-header {
  margin-bottom: 32px;
}

.page-inner--under-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42vh;
  padding: 48px 24px;
  box-sizing: border-box;
}

.page-under-dev-message {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin: 0;
  text-align: center;
}

.page-kicker {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(90, 30, 37, 0.8);
  margin: 0 0 4px;
}

.page-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--color-charcoal);
}

.page-subtitle {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
  color: var(--color-charcoal);
}

.page-article {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.page-article p {
  margin: 0 0 1em;
}

.page-article p:last-child {
  margin-bottom: 0;
}

.service-body.page-legal-meta {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(90, 30, 37, 0.65);
}

.service-item .service-body a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.page-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-column--span-full {
  grid-column: 1 / -1;
}

.booking-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 8px;
  align-items: start;
}

.booking-page-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-page-copy > .team-body {
  margin: 0 0 1em;
}

.booking-page-copy > .team-body:last-child {
  margin-bottom: 0;
}

.booking-page-copy--tight {
  margin-top: 12px !important;
}

.booking-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.booking-points li {
  position: relative;
  padding-left: 1.1em;
  margin: 6px 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.booking-points li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  font-weight: 300;
  color: rgba(43, 43, 43, 0.38);
}

.booking-page-cta {
  margin-top: 20px;
}

.service-item {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(90, 30, 37, 0.18);
}

.service-item:last-of-type {
  border-bottom: none;
}

.service-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--color-burgundy);
}

.service-body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: var(--color-charcoal);
}

.page-inner--team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-header--team {
  width: 100%;
  text-align: center;
}

.team-intro {
  margin-top: 8px;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.team-intro .team-body:first-child {
  margin-top: 0;
}

.team-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  width: 100%;
}

.team-member {
  padding: 18px 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(198, 167, 94, 0.7);
  background: rgba(244, 235, 221, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 46rem;
  text-align: left;
  box-sizing: border-box;
}

.team-member--with-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.team-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  width: 100%;
}

.team-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.team-content {
  min-width: 0;
  width: 100%;
}

.team-header {
  margin-bottom: 8px;
  text-align: center;
}

.team-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 2px;
  color: var(--color-burgundy);
}

.team-role {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-charcoal);
}

.team-body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 8px 0 0;
  color: var(--color-charcoal);
}

.team-closing {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(198, 167, 94, 0.45);
  max-width: 46rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.team-closing-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--color-burgundy);
}

/* The Story (editorial layout, Hands Carpets?style rhythm) */

.page-section--story {
  padding-top: 56px;
}

.page-inner--story {
  max-width: min(920px, 100%);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header--story {
  margin-bottom: 28px;
  text-align: center;
  width: 100%;
}

.page-header--story .page-heading {
  margin-bottom: 1.5rem;
}

.story-article {
  margin-top: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-prose {
  margin: 0 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-stanza + .story-stanza {
  margin-top: 2em;
}

.story-stanza {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--color-charcoal);
  text-align: center;
  width: 100%;
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.story-leadership {
  margin: 0 auto 64px;
  padding: 0;
  width: 100%;
  max-width: 38em;
  border: none;
  text-align: center;
  box-sizing: border-box;
}

.story-leadership-attrib {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-burgundy);
}

.story-leadership-attrib strong {
  font-weight: 600;
  letter-spacing: 0.14em;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 40px;
  width: 100%;
  max-width: 920px;
  align-self: center;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(198, 167, 94, 0.22);
}

.story-gallery-item {
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  border-radius: 0;
}

.story-gallery-item img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
}

.story-tagline {
  margin: 0 auto 0;
  padding: 28px 24px 32px;
  width: 100%;
  max-width: 38em;
  box-sizing: border-box;
  border-top: 1px solid rgba(198, 167, 94, 0.55);
  border-bottom: 1px solid rgba(198, 167, 94, 0.55);
  text-align: center;
}

.story-tagline p {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(17px, 2.5vw, 21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--color-burgundy);
}

@media (max-width: 639px) {
  .story-gallery {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
    gap: 0;
    border-radius: 0;
  }

  .story-gallery-item img {
    height: clamp(200px, 55vw, 380px);
  }

  .story-stanza {
    font-size: 14px;
    line-height: 1.95;
  }
}

/* Footer ? per BRANDING GUIDELINES: minimal, elegant, museum-like */

.site-footer {
  background: linear-gradient(
    to top,
    var(--color-deep-blue-top),
    var(--color-deep-blue)
  );
  border-top: 1px solid var(--color-gold);
  color: var(--color-ivory);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .brand-logo-circle {
  margin-bottom: 4px;
}

/* Footer: same wordmark structure as header, scaled down and centered */
.footer-name {
  display: flex;
  justify-content: center;
}

.footer-name .brand-name {
  align-items: center;
  text-align: center;
}

.footer-name .brand-name-primary {
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 0.2em;
}

.footer-name .brand-name-secondary {
  font-size: clamp(7px, 1.2vw, 9px);
  letter-spacing: 0.34em;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 24px 48px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Body text: Montserrat ? section labels in uppercase */
.footer-nav-heading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.6);
  margin-bottom: 4px;
}

/* Links: Cormorant Garamond for refined luxury feel */
.footer-link {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-ivory);
}

.footer-link:hover {
  text-decoration: none;
  color: var(--color-gold);
}

/* Subsection labels inside footer columns (e.g. "By style", "By quality") */
.footer-nav-subheading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.55);
  margin-top: 8px;
  margin-bottom: 2px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-language-switcher {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer .language-switcher {
  min-width: 160px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 235, 221, 0.85);
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 16px;
}

/* Body text: Montserrat */
.footer-copyright {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244, 235, 221, 0.6);
  margin: 0;
}

.footer-separator {
  opacity: 0.6;
  color: var(--color-ivory);
}

/* Responsive */

@media (max-width: 768px) {
  .nav-bar {
    padding: 12px 16px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-logo-circle {
    width: 52px;
    height: 52px;
    padding: 6px;
  }

  .brand-name-primary {
    font-size: 17px;
    letter-spacing: 0.18em;
  }

  .brand-name-secondary {
    font-size: 7.5px;
    letter-spacing: 0.32em;
  }

  .language-switcher {
    min-width: 136px;
  }

  .menu-drawer {
    width: min(460px, 94vw);
    max-width: 460px;
  }

  .hero-content {
    padding: 20px 16px 64px;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-page-grid {
    grid-template-columns: 1fr;
  }

  .page-inner--booking {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .page-inner--booking .booking-page-copy {
    margin-top: 20px;
  }

  .page-inner--booking .booking-calendly {
    max-width: none;
    width: 100%;
  }

  .booking-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 198, 118, 0.3);
  }

  .booking-calendly {
    border-bottom: 0;
    padding: 0;
    min-height: 0;
    justify-content: stretch;
  }

  .booking-calendly.calendly-inline-widget {
    width: 100%;
    min-height: 700px;
  }

  .booking-panel-title {
    font-size: 36px;
  }

  .booking-month-row {
    font-size: 26px;
  }

  .booking-time-title {
    font-size: 24px;
  }

  .booking-slots button,
  .booking-submit-button {
    font-size: 26px;
  }
}

/* Blog */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-section--blog {
  background: var(--color-ivory-soft);
}

.page-inner--blog {
  max-width: 1100px;
}

.blog-root {
  margin-top: 28px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-filter {
  border: 1px solid rgba(31, 58, 95, 0.18);
  background: #fff;
  color: var(--color-deep-blue);
  padding: 8px 14px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-filter.is-active,
.blog-filter:hover {
  background: var(--color-deep-blue);
  color: var(--color-ivory-soft);
  border-color: var(--color-deep-blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(90, 30, 37, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.62);
}

.blog-category {
  color: var(--color-burgundy);
}

.blog-card-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--color-deep-blue);
}

.blog-card-title a {
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--color-burgundy);
}

.blog-card-excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(198, 167, 94, 0.16);
  color: var(--color-deep-blue);
}

.blog-card-link,
.blog-back-link a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  text-decoration: none;
}

.blog-card-link:hover,
.blog-back-link a:hover {
  text-decoration: underline;
}

.blog-article-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--color-deep-blue);
}

.blog-article-byline {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.68);
}

.blog-article-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 24px 0 32px;
}

.blog-article-content h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin: 28px 0 12px;
}

.blog-article-content p,
.blog-article-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-charcoal);
}

.blog-article-content ul {
  padding-left: 1.2em;
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(90, 30, 37, 0.14);
}

.blog-share-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-right: 6px;
}

.blog-share-btn {
  border: 1px solid rgba(31, 58, 95, 0.18);
  background: #fff;
  color: var(--color-deep-blue);
  padding: 8px 12px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.blog-share-btn:hover {
  background: var(--color-deep-blue);
  color: var(--color-ivory-soft);
}

.blog-newsletter {
  margin-top: 48px;
  padding: 28px;
  background: rgba(31, 58, 95, 0.06);
  border: 1px solid rgba(31, 58, 95, 0.12);
}

.blog-newsletter-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--color-deep-blue);
}

.blog-newsletter-copy {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
}

.blog-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(31, 58, 95, 0.18);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 14px;
}

.blog-newsletter-btn {
  padding: 12px 18px;
  border: none;
  background: var(--color-deep-blue);
  color: var(--color-ivory-soft);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-back-link {
  margin-top: 28px;
}

.blog-empty {
  padding: 24px 0;
}

@media (max-width: 640px) {
  .blog-card-meta {
    flex-direction: column;
    gap: 4px;
  }
}

/* Content pages: figures, lists, FAQ */

.content-figure {
  margin: 0 0 32px;
  max-width: 100%;
  overflow: hidden;
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.content-list,
.content-steps {
  margin: 8px 0 12px;
  padding-left: 1.25em;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.content-list li,
.content-steps li {
  margin: 4px 0;
}

.content-steps {
  list-style: decimal;
}

.service-item .service-body + .service-body,
.service-item .content-list + .service-body,
.service-item .content-steps + .service-body,
.service-item .service-body + .content-list,
.service-item .service-body + .content-steps {
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(90, 30, 37, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(90, 30, 37, 0.18);
  padding: 0;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--color-burgundy);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: rgba(90, 30, 37, 0.55);
  margin-top: 2px;
}

.faq-item[open] > .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 18px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.faq-answer p {
  margin: 0 0 0.85em;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Design Emotion */

.page-subtitle--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 36em;
}

.story-tagline--closing {
  margin-top: 36px;
  margin-bottom: 8px;
}

/* The Story ? DOCX article layout */

.story-prose--docx {
  align-items: stretch;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.story-prose--docx p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  margin: 0 0 1.1em;
  color: var(--color-charcoal);
}

.story-prose--docx p:last-child {
  margin-bottom: 0;
}

.story-lead {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.story-section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 2em 0 0.75em;
  color: var(--color-burgundy);
}

.story-content-list {
  margin: 0.25em 0 1.25em;
}

/* ?? Hand-knotted carpet collection & product pages ?? */

.page-section--collection,
.page-section--product {
  background:
    linear-gradient(180deg, rgba(244, 235, 221, 0.97) 0%, rgba(249, 242, 230, 1) 40%, #f7f0e4 100%);
}

.page-inner--collection,
.page-inner--product {
  max-width: 1180px;
  overflow: visible;
}

.page-section--product {
  overflow: visible;
}

.collection-root,
.product-root {
  margin-top: 12px;
}

.collection-header {
  max-width: 46em;
  margin: 0 0 40px;
}

.collection-header--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.collection-header--centered .page-subtitle {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}

.collection-count {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.collection-intro {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-charcoal);
}

.collection-intro p {
  margin: 0 0 1em;
}

.collection-intro p:last-child {
  margin-bottom: 0;
}

.collection-guide {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(90, 30, 37, 0.16);
}

.collection-guide-inner {
  max-width: 720px;
  margin: 0;
}

.collection-guide-header {
  text-align: left;
  margin-bottom: 24px;
}

.collection-guide-eyebrow {
  margin: 0 0 10px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.collection-guide-title {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-deep-blue);
}

.collection-guide-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 22px;
  margin: 0 0 12px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.45);
}

.collection-guide-nav-link {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--color-burgundy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.collection-guide-nav-link:hover,
.collection-guide-nav-link:focus-visible {
  text-decoration: none;
  border-bottom-color: var(--color-burgundy);
  outline: none;
}

.collection-guide-block {
  padding: 40px 0;
  border-bottom: 1px solid rgba(90, 30, 37, 0.1);
  text-align: left;
  scroll-margin-top: 96px;
}

.collection-guide-block:last-child {
  border-bottom: 0;
  padding-bottom: 8px;
}

.collection-guide-heading {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-burgundy);
}

.collection-guide-heading::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 14px 0 0;
  background: var(--color-gold);
}

.collection-guide-body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-charcoal);
}

.collection-guide-body p {
  margin: 0 0 1em;
}

.collection-guide-body p:last-child {
  margin-bottom: 0;
}

.collection-guide-body ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.collection-guide-body li {
  position: relative;
  margin: 0 0 0.5em;
  padding-left: 1em;
}

.collection-guide-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.collection-guide-body li:last-child {
  margin-bottom: 0;
}

.collection-guide-body a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.product-grid--explore {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-bottom: 1.4em;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 28px rgba(43, 43, 43, 0.14);
}

.product-card-media {
  display: block;
  background: #ebe3d6;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card-media:hover img,
.product-card:hover .product-card-media img {
  transform: scale(1.03);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8dfd0, #d9cfc0);
}

.product-card-body {
  padding: 16px 2px 0;
  text-align: center;
}

.product-card-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--color-deep-blue);
}

.product-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
  text-underline-offset: 4px;
}

.product-card:hover .product-card-title a,
.product-card-title a:hover,
.product-card-title a:focus-visible {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.product-card-meta {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.7);
}

.product-card-size {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-burgundy);
}

.product-card-size span {
  display: inline-block;
  margin-right: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.product-card-price {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-burgundy);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.product-breadcrumb a {
  color: var(--color-burgundy);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-stage {
  position: relative;
  margin-bottom: 64px;
  overflow: visible;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: start;
}

.product-side-arrow {
  position: absolute;
  top: 28%;
  z-index: 5;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-deep-blue);
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.product-side-arrow:hover,
.product-side-arrow:focus-visible {
  color: var(--color-deep-blue);
  background: transparent;
  border: 0;
  text-decoration: none;
  outline: none;
}

.product-side-arrow--prev {
  left: calc(50% - 50vw + 16px);
}

.product-side-arrow--next {
  right: calc(50% - 50vw + 16px);
}

body.lightbox-open .product-side-arrow {
  opacity: 0;
  pointer-events: none;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-wrap {
  min-width: 0;
}

.product-gallery-main {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  position: relative;
}

.product-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  transform-origin: center center;
}

.product-gallery-main:hover img,
.product-gallery-main:focus-visible img {
  transform: scale(1.08);
}

.product-gallery-play {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 1;
}

.product-gallery-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.product-gallery-main.is-video .product-gallery-play {
  display: block;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
}

.product-thumb {
  appearance: none;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
  background: #ebe3d6;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-thumb:hover::after,
.product-thumb:focus-visible::after {
  opacity: 1;
}

.product-thumb.is-active {
  border-color: var(--color-gold);
}

.product-thumb.is-active:hover::after,
.product-thumb.is-active:focus-visible::after {
  opacity: 0.55;
}

.product-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.product-thumb-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.product-thumb--video::after {
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.product-thumb--video:hover::after,
.product-thumb--video:focus-visible::after {
  background: rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.product-info {
  padding-top: 4px;
}

.product-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--color-deep-blue);
}

.product-material {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.75);
}

.product-view-collection {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 30, 37, 0.35);
  padding-bottom: 2px;
}

.product-view-collection:hover {
  border-bottom-color: var(--color-burgundy);
  text-decoration: none;
}

.product-specs {
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid rgba(90, 30, 37, 0.12);
}

.product-spec {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(90, 30, 37, 0.12);
}

.product-spec dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.product-spec dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-charcoal);
}

.product-price {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  color: var(--color-deep-blue);
}

.product-availability {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(43, 43, 43, 0.65);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 0;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-cta:hover {
  text-decoration: none;
}

.product-cta--primary {
  background: var(--color-deep-blue);
  color: var(--color-ivory-soft);
  border: 1px solid var(--color-deep-blue);
}

.product-cta--primary:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: #fff;
}

.product-cta--secondary {
  background: transparent;
  color: var(--color-deep-blue);
  border: 1px solid rgba(31, 58, 95, 0.35);
}

.product-cta--secondary:hover {
  border-color: var(--color-deep-blue);
  color: var(--color-burgundy);
}

.product-description-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--color-deep-blue);
}

.product-description-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-charcoal);
}

.product-description-body p {
  margin: 0 0 1em;
}

.product-description-body h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  margin: 1.6em 0 0.75em;
  color: var(--color-burgundy);
}

.product-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(90, 30, 37, 0.12);
}

.product-details-list li {
  display: grid;
  grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(90, 30, 37, 0.12);
  font-size: 14px;
  line-height: 1.5;
}

.product-detail-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.product-detail-value {
  color: var(--color-charcoal);
}

/* Product Details panel (reference layout) */

.product-details-panel {
  margin-top: 36px;
  padding-top: 8px;
}

.product-details-panel-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--color-deep-blue);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 22px;
  margin: 0 0 24px;
  padding: 0;
}

.pd-field {
  margin: 0;
}

.pd-field-label {
  margin: 0 0 6px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.pd-field-value {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-charcoal);
}

.pd-highlights {
  margin: 0 0 28px;
  padding: 0 0 0 1.15em;
  color: var(--color-charcoal);
}

.pd-highlights li {
  margin: 0 0 8px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.pd-highlights li:last-child {
  margin-bottom: 0;
}

.pd-accordions {
  border-top: 1px solid rgba(90, 30, 37, 0.12);
}

.pd-accordion {
  border-bottom: 1px solid rgba(90, 30, 37, 0.12);
}

.pd-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-burgundy);
}

.pd-accordion summary::-webkit-details-marker {
  display: none;
}

.pd-accordion summary::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.pd-accordion[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 12px;
}

.pd-accordion-body {
  padding: 0 0 18px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-charcoal);
}

.pd-accordion-body p {
  margin: 0 0 0.85em;
}

.pd-accordion-body p:last-child {
  margin-bottom: 0;
}

.pd-accordion-body a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Product image lightbox */

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox[hidden] {
  display: none !important;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(92vw, 900px);
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.product-lightbox-stage {
  position: relative;
  width: fit-content;
  max-width: 100%;
  border: 3px solid #fff;
  background: transparent;
  line-height: 0;
}

.product-lightbox-slide {
  display: block;
  margin: 0;
  width: fit-content;
  max-width: 100%;
}

.product-lightbox-slide img,
.product-lightbox-slide video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 900px);
  max-height: min(72vh, 820px);
  object-fit: contain;
  background: transparent;
}

.product-lightbox-slide video {
  width: min(92vw, 900px);
  background: #000;
}

.product-lightbox-slide img[hidden],
.product-lightbox-slide video[hidden] {
  display: none !important;
}

.product-lightbox-nav {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.2s ease;
}

.product-lightbox-stage.is-hovering .product-lightbox-nav,
.product-lightbox-stage:hover .product-lightbox-nav {
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox-nav:hover,
.product-lightbox-nav:focus-visible {
  background: rgba(0, 0, 0, 0.55);
  outline: none;
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox-nav--prev {
  left: 8px;
}

.product-lightbox-nav--next {
  right: 8px;
}

.product-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
  width: 100%;
}

.product-lightbox-counter {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}

.product-lightbox-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.product-lightbox-close span {
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.product-lightbox-close:hover,
.product-lightbox-close:focus-visible {
  opacity: 0.8;
  outline: none;
}

@media (max-width: 640px) {
  .product-lightbox {
    padding: 16px 10px 28px;
  }

  .product-lightbox-slide img,
  .product-lightbox-slide video {
    max-width: 92vw;
    max-height: min(68vh, 640px);
  }

  .product-lightbox-close span {
    font-size: 36px;
  }
}

.product-explore {
  padding-top: 12px;
  border-top: 1px solid rgba(90, 30, 37, 0.14);
}

.product-explore-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 28px;
}

.product-explore-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin: 0;
  color: var(--color-deep-blue);
}

.product-view-all {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  text-decoration: none;
}

.product-view-all:hover {
  text-decoration: underline;
}

.product-card--explore .product-card-title {
  font-size: 22px;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--explore {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .product-grid--explore {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-spec,
  .product-details-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pd-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-cta {
    width: 100%;
  }

  .product-side-arrow {
    width: 32px;
    height: 32px;
    font-size: 28px;
    font-weight: 700;
    top: 28%;
  }

  .product-side-arrow--prev {
    left: calc(50% - 50vw + 8px);
  }

  .product-side-arrow--next {
    right: calc(50% - 50vw + 8px);
  }
}
