@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300;1,400&family=Overpass+Mono:wght@300&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #111010;
  color: #ede8df;
  font-family: "Overpass Mono", monospace;
  font-size: 2.159rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  user-select: none;
  padding-bottom: 60px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 100;
}

.glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 165, 90, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

header {
  text-align: center;
  margin-bottom: 44px;
  margin-top: clamp(40px, 8vh, 80px);
  position: relative;
  z-index: 2;
}
header h1 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.12em;
  color: #ede8df;
}
header p {
  font-size: 0.9rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-top: 7px;
}

/* ── STAGE ── */
.stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 600px;
  cursor: grab;
}
.stage:active {
  cursor: grabbing;
}
.stage::before,
.stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
  z-index: 10;
}
.stage::before {
  left: 0;
  background: linear-gradient(to right, #111010 10%, transparent);
}
.stage::after {
  right: 0;
  background: linear-gradient(to left, #111010 10%, transparent);
}

/* ── TRACK ── */
.track {
  display: flex;
  align-items: center;
  transform-origin: center center;
}

/* ── SLOTS — fixed visual shapes, never move ── */
.slot {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.slot[data-pos="-2"] {
  width: 110px;
  height: 260px;
  margin: 0 10px;
  opacity: 0.45;
  transform: rotateY(22deg) scale(0.88);
  cursor: pointer;
}
.slot[data-pos="-1"] {
  width: 190px;
  height: 380px;
  margin: 0 14px;
  opacity: 0.75;
  transform: rotateY(14deg) scale(0.94);
  cursor: pointer;
}
.slot[data-pos="0"] {
  width: 800px;
  height: 520px;
  margin: 0 20px;
  opacity: 1;
  transform: none;
  transform-style: flat;
  backface-visibility: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 165, 90, 0.22),
    0 0 60px rgba(201, 165, 90, 0.06);
  z-index: 5;
  cursor: default;
}
.slot[data-pos="1"] {
  width: 190px;
  height: 380px;
  margin: 0 14px;
  opacity: 0.75;
  transform: rotateY(-14deg) scale(0.94);
  cursor: pointer;
}
.slot[data-pos="2"] {
  width: 110px;
  height: 260px;
  margin: 0 10px;
  opacity: 0.45;
  transform: rotateY(-22deg) scale(0.88);
  cursor: pointer;
}

/* ── RESPONSIVE — below L (1024px): portrait center, smaller sides ── */
@media (max-width: 1023px) {
  .slot[data-pos="-2"] {
    width: 70px;
    height: 200px;
    margin: 0 7px;
  }
  .slot[data-pos="-1"] {
    width: 120px;
    height: 300px;
    margin: 0 10px;
  }
  .slot[data-pos="0"] {
    width: 520px;
    height: 800px;
    margin: 0 14px;
  }
  .slot[data-pos="1"] {
    width: 120px;
    height: 300px;
    margin: 0 10px;
  }
  .slot[data-pos="2"] {
    width: 70px;
    height: 200px;
    margin: 0 7px;
  }
}

/* ── IMAGE inside each slot — two stacked for crossfade ── */
.slot .img-wrap {
  position: absolute;
  inset: 0;
}
.slot .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
/* outgoing fades out, incoming fades in */
.slot .img-wrap img.leave {
  opacity: 0;
}
.slot .img-wrap img.enter {
  opacity: 1;
}

/* ── VEIL — static per slot ── */
.slot .veil {
  position: absolute;
  inset: 0;
  background: #0e0d0d;
  pointer-events: none;
}
.slot[data-pos="-2"] .veil,
.slot[data-pos="2"] .veil {
  opacity: 0.7;
}
.slot[data-pos="-1"] .veil,
.slot[data-pos="1"] .veil {
  opacity: 0.45;
}
.slot[data-pos="0"] .veil {
  opacity: 0;
}

/* ── TOPBAR — center only ── */
.slot .topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a55a 35%,
    #c9a55a 65%,
    transparent
  );
  opacity: 0;
  pointer-events: none;
}
.slot[data-pos="0"] .topbar {
  opacity: 1;
}

/* ── CAPTION — center only ── */
.slot .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 22px 22px;
  background: linear-gradient(to top, rgba(10, 9, 9, 0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  pointer-events: none;
}
.slot[data-pos="0"] .caption {
  opacity: 1;
  transform: translateY(0);
}
.slot .caption b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #ede8df;
  letter-spacing: 0.03em;
}
.slot .caption small {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a55a;
}

/* ── CONTROLS ── */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 165, 90, 0.45);
  background: rgba(14, 13, 13, 0.55);
  color: #c9a55a;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  backdrop-filter: blur(6px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
  box-shadow: 0 0 0 0 rgba(201, 165, 90, 0);
}
#prev {
  left: 24px;
}
#next {
  right: 24px;
}
.btn:hover {
  background: rgba(201, 165, 90, 0.15);
  border-color: #c9a55a;
  box-shadow: 0 0 18px rgba(201, 165, 90, 0.22);
  transform: translateY(-50%) scale(1.08);
}
.btn:active {
  transform: translateY(-50%) scale(0.92);
}

/* ── DOTS ── */
.dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 165, 90, 0.4);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.dot:hover {
  border-color: #c9a55a;
  transform: scale(1.2);
}
.dot.on {
  background: #c9a55a;
  border-color: #c9a55a;
  box-shadow: 0 0 8px rgba(201, 165, 90, 0.5);
  transform: scale(1.25);
}

.hint {
  margin-top: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.22);
  position: relative;
  z-index: 2;
}
/* ── CATEGORY SECTION ── */
.category-section {
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.category-header {
  text-align: center;
  margin-bottom: 16px;
}
.category-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  color: #ede8df;
}
.category-header p {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-top: 5px;
}

.rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a55a, transparent);
  margin: 10px auto 0;
}

/* ── GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── CARD ── */
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(201, 165, 90, 0.1);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover img {
  transform: scale(1.07);
}

.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 9, 0.88) 0%,
    rgba(10, 9, 9, 0.15) 55%,
    transparent 100%
  );
}

.cat-card .cat-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a55a;
  border: 1px solid rgba(201, 165, 90, 0.45);
  padding: 3px 6px;
  background: rgba(14, 13, 13, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.cat-card:hover .cat-tag {
  opacity: 1;
  transform: translateY(0);
}

.cat-card .cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 10px;
}
.cat-card .cat-info b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #ede8df;
  letter-spacing: 0.02em;
}
.cat-card .cat-info small {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.75);
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 0.3s ease 0.04s,
    transform 0.3s ease 0.04s;
}
.cat-card:hover .cat-info small {
  opacity: 1;
  transform: translateY(0);
}

.cat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a55a, transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ══════════════════════════════════════════
     SHARED SECTION WRAPPER
  ══════════════════════════════════════════ */
.section {
  width: 100%;
  max-width: 1200px;
  padding: 80px 32px 0;
  position: relative;
  z-index: 2;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.1em;
  color: #ede8df;
}
.section-head p {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-top: 8px;
}
.section-head .rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a55a, transparent);
  margin: 14px auto 0;
}

/* ══════════════════════════════════════════
     HOW IT WORKS
  ══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* connecting line */
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 165, 90, 0.3) 20%,
    rgba(201, 165, 90, 0.3) 80%,
    transparent
  );
}
@media (max-width: 768px) {
  .steps::before {
    display: none;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.35);
  background: rgba(201, 165, 90, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #c9a55a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #ede8df;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(237, 232, 223, 0.55);
}

/* ══════════════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.tcard {
  border: 1px solid rgba(201, 165, 90, 0.12);
  padding: 32px 28px;
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.tcard:hover {
  border-color: rgba(201, 165, 90, 0.3);
  background: rgba(201, 165, 90, 0.03);
}
.tcard::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 165, 90, 0.15);
  position: absolute;
  top: 12px;
  left: 20px;
}
.tcard blockquote {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(237, 232, 223, 0.75);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}
.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcard-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: #ede8df;
}
.tcard-detail {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-top: 2px;
}
.tcard-stars {
  margin-left: auto;
  color: #c9a55a;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════
     PRICING
  ══════════════════════════════════════════ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.price-card {
  border: 1px solid rgba(201, 165, 90, 0.12);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.price-card:hover {
  border-color: rgba(201, 165, 90, 0.35);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: rgba(201, 165, 90, 0.4);
  background: rgba(201, 165, 90, 0.04);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a55a;
  color: #111010;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 14px;
}
.price-tier {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #ede8df;
  margin-bottom: 6px;
}
.price-from {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.4);
  margin-bottom: 16px;
}
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  color: #c9a55a;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 1rem;
  vertical-align: super;
}
.price-currency {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.35);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  border-top: 1px solid rgba(201, 165, 90, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(237, 232, 223, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: "—";
  color: #c9a55a;
  flex-shrink: 0;
}
.price-cta {
  margin-top: 28px;
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid rgba(201, 165, 90, 0.4);
  color: #c9a55a;
  font-family: "Overpass Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition:
    background 0.25s,
    color 0.25s;
}
.price-cta:hover {
  background: #c9a55a;
  color: #111010;
}
.price-card.featured .price-cta {
  background: #c9a55a;
  color: #111010;
}
.price-card.featured .price-cta:hover {
  background: transparent;
  color: #c9a55a;
}

/* ══════════════════════════════════════════
     TURNAROUND TIMES
  ══════════════════════════════════════════ */
.turnaround-table {
  width: 100%;
  border-collapse: collapse;
}
.turnaround-table thead th {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a55a;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 165, 90, 0.2);
}
.turnaround-table tbody tr {
  border-bottom: 1px solid rgba(237, 232, 223, 0.06);
  transition: background 0.2s;
}
.turnaround-table tbody tr:hover {
  background: rgba(201, 165, 90, 0.04);
}
.turnaround-table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(237, 232, 223, 0.7);
}
.turnaround-table tbody td:first-child {
  color: #ede8df;
}
.turnaround-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid;
}
.turnaround-badge.fast {
  color: #7dbf8e;
  border-color: rgba(125, 191, 142, 0.35);
}
.turnaround-badge.mid {
  color: #c9a55a;
  border-color: rgba(201, 165, 90, 0.35);
}
.turnaround-badge.slow {
  color: rgba(237, 232, 223, 0.5);
  border-color: rgba(237, 232, 223, 0.2);
}

/* ══════════════════════════════════════════
     FABRIC GALLERY
  ══════════════════════════════════════════ */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1023px) {
  .fabric-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .fabric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fabric-swatch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(201, 165, 90, 0.1);
  transition: border-color 0.3s;
}
.fabric-swatch:hover {
  border-color: rgba(201, 165, 90, 0.45);
}
.fabric-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fabric-swatch:hover img {
  transform: scale(1.1);
}
.fabric-swatch .fabric-name {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 9, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.fabric-swatch:hover .fabric-name {
  opacity: 1;
}
.fabric-swatch .fabric-name span {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ede8df;
  text-align: center;
  padding: 0 8px;
}

/* ══════════════════════════════════════════
     FAQ
  ══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #ede8df;
  letter-spacing: 0.03em;
  text-align: left;
  transition: color 0.25s;
}
.faq-q:hover {
  color: #c9a55a;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a55a;
  font-size: 0.9rem;
  font-style: normal;
  transition:
    transform 0.35s,
    background 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 165, 90, 0.12);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.07em;
  color: rgba(237, 232, 223, 0.6);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════
     BOOK AN APPOINTMENT
  ══════════════════════════════════════════ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.booking-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #ede8df;
  margin-bottom: 20px;
  line-height: 1.4;
}
.booking-info p {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(237, 232, 223, 0.55);
  margin-bottom: 32px;
}
.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(237, 232, 223, 0.6);
}
.booking-meta-item .meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a55a;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.75);
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 165, 90, 0.2);
  color: #ede8df;
  font-family: "Overpass Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  resize: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 165, 90, 0.55);
  background: rgba(201, 165, 90, 0.03);
}
.field select option {
  background: #1a1918;
}
.field textarea {
  height: 100px;
}

.form-submit {
  margin-top: 8px;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(201, 165, 90, 0.45);
  color: #c9a55a;
  font-family: "Overpass Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.form-submit:hover {
  background: #c9a55a;
  color: #111010;
  box-shadow: 0 0 24px rgba(201, 165, 90, 0.2);
}

/* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
footer {
  width: 100%;
  margin-top: 80px;
  border-top: 1px solid rgba(201, 165, 90, 0.12);
  padding: 48px 32px 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.8rem;
  color: #ede8df;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.07em;
  color: rgba(237, 232, 223, 0.45);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(237, 232, 223, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li:hover {
  color: #c9a55a;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(237, 232, 223, 0.5);
  cursor: pointer;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.social-btn:hover {
  border-color: #c9a55a;
  color: #c9a55a;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(237, 232, 223, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(237, 232, 223, 0.25);
}
.services-section {
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 16px;
}
.services-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  color: #ede8df;
}
.services-header p {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a55a;
  margin-top: 5px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(17, 16, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-page-switch {
  display: flex;
  gap: 0;
}
.page-tab {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--border);
  color: var(--dim);
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.page-tab:first-child {
  border-right: none;
}
.page-tab:hover {
  color: var(--gold);
  border-color: rgba(201, 165, 90, 0.35);
}
.page-tab.active {
  color: var(--gold);
  border-color: rgba(201, 165, 90, 0.45);
  background: rgba(201, 165, 90, 0.06);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
