/* ── Design tokens ────────────────────────────────────────── */
:root {
  --red:        #B50A38;  /* rgb(181,10,56)   — primary accent  */
  --ink:        #101828;  /* rgb(16,24,40)    — headline text   */
  --grey:       #6A7282;  /* rgb(106,114,130) — body text       */
  --cream:      #E8E4E0;  /* rgb(232,228,224) — hero bg         */
  --white:      #FFFFFF;
  --max-w:      1820px;
  --nav-h:      99px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--ink); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Main nav bar ─────────────────────────────────────────── */
.main-nav-bar {
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 200;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 52px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav > a,
.nav-item > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.08em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
nav > a:hover,
.nav-item:hover > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Nav items with dropdowns */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1px solid rgba(0,0,0,0.07);
  z-index: 100;
  overflow: hidden;
  padding-top: 20px;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 13px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.07em;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: #EDF2FF;
  color: var(--red);
}

/* CTA nav link */
a.nav-cta {
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 9px 14px;
  font-size: 10px;
  letter-spacing: 0.07em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
a.nav-cta:hover {
  background: var(--red);
  color: var(--white);
  border-bottom-color: var(--red);
}

/* ── Page title bar (inner pages) ────────────────────────── */
.promo-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.promo-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.promo-banner a:hover { opacity: 0.8; }

/* Package toggle bar */
.pkg-toggle-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 44px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}
.pkg-toggle-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pkg-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pkg-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 155px;
  padding: 6px 12px;
  border: 1.5px solid #D0D5DD;
  border-radius: 9999px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1.3;
}
.pkg-btn-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--grey);
}
.pkg-btn:hover { border-color: var(--ink); }
.pkg-btn-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pkg-btn-active .pkg-btn-sub { color: rgba(255,255,255,0.75); }

/* Price on suit cards */

.page-title-bar {
  background: var(--cream);
  padding: 48px 44px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.page-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

/* ── Hero section ─────────────────────────────────────────── */
.hero {
  background: var(--cream);
  position: relative;
}
.hero-cream-gap {
  background: var(--cream);
  height: 96px;
}
.hero-viewport {
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 200%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 44px;
}
.hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 0 60px;
}

/* Left column — text */
.hero-content {
  flex: 0 0 656px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}
.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--grey);
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 246px;
  height: 67px;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--ink);
}
.btn-ghost {
  background: var(--cream);
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}

/* Right column — image */
.hero-image {
  flex: 1;
  min-width: 420px;
  height: 600px;
  overflow: hidden;
  border-radius: 16px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}

/* Carousel dots */
.hero-dots {
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  justify-content: center;
  z-index: 10;
}
.dot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  padding: 0;
}
.dot:hover { opacity: 0.6; }
.dot-active { opacity: 1; }

/* ── Booking / Form section ───────────────────────────────── */
.booking {
  position: relative;
  overflow: clip;
  background: var(--ink);
  padding: 100px 44px;
}
.booking-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.42);
  z-index: 1;
}
.booking-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Left column */
.booking-left {
  flex: 0 0 560px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}
.booking-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  width: fit-content;
}
.booking-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}
.booking-left > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.steps-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.booking-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.booking-step strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}

/* Right column — form card */
.booking-right {
  flex: 1;
}
.booking-form {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Form sections */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0 28px;
}
.form-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.form-section > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin-top: -8px;
}
.form-divider {
  border: none;
  border-top: 1px solid #E4E7EC;
  margin: 4px 0;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #D0D5DD;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.field input::placeholder { color: #999; }
.field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5.5 6L10 1' stroke='%23101828' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

/* ── Store custom dropdown ────────────────────────────────── */
.store-select {
  position: relative;
}
.store-select-trigger {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #D0D5DD;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s;
  user-select: none;
}
.store-select-trigger:hover,
.store-select.open .store-select-trigger { border-color: var(--ink); }
.store-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #999;
}
.store-select-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.store-select.open .store-select-trigger svg { transform: rotate(180deg); }
.store-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid #D0D5DD;
  max-height: 320px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.store-select.open .store-select-dropdown { display: block; }
.store-option {
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-bottom: 1px solid #F2F4F7;
  transition: background 0.1s;
}
.store-option:last-child { border-bottom: none; }
.store-option:hover { background: #F9FAFB; }
.store-option.selected { background: #FDF0F3; }
.store-option strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.store-option span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
}

.field-row {
  display: flex;
  gap: 16px;
}
.field-row .field { flex: 1; min-width: 0; }
.field input[type="date"] {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  max-width: 100%;
}


/* Form actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}
.btn-cancel {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 16px;
}
.btn-cancel:hover { color: var(--red); }
.btn-submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.btn-submit:hover { background: var(--red); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.walkin-notice[hidden] { display: none; }
.walkin-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FDF0F3;
  border: 1px solid #f5c6d0;
  padding: 14px 16px;
}
.walkin-notice svg { flex-shrink: 0; margin-top: 2px; }
.walkin-notice p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.pkg-display {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  background: #F9FAFB;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  margin-bottom: 10px;
}
.pkg-mini-toggle {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pkg-mini-btn {
  padding: 5px 14px;
  border: 1.5px solid #D0D5DD;
  border-radius: 9999px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.pkg-mini-btn:hover { border-color: var(--ink); }
.pkg-mini-btn--active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.rental-dates-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--grey);
  margin-top: 6px;
  line-height: 1.5;
}
.form-footnote {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  text-align: right;
  margin-top: 10px;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 60px 20px;
}
.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.form-success p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--grey);
}

/* ── Divide section ───────────────────────────────────────── */
.divide-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}

/* 1. Three image tiles */
.divide-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 44px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.divide-tile {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}
.divide-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.divide-tile:hover img { transform: scale(1.04); }
.divide-tile-labeled { position: relative; }
.tile-label-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 47px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  pointer-events: none;
  text-align: center;
}
.tile-label {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

/* 2. How it Works */
.divide-howitworks {
  background: var(--white);
  padding: 80px 0;
}
.howitworks-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 56px;
}
.section-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.label-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #8A8A8A;
  letter-spacing: 0.12em;
}
.howitworks-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.howitworks-header > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #8A8A8A;
}
.howitworks-steps {
  display: flex;
  justify-content: center;
  gap: 64px;
  position: relative;
}
.howitworks-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% - 280px);
  width: 560px;
  height: 1px;
  background: #E4E7EC;
}
.howitworks-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.howitworks-step img {
  width: 64px;
  height: 64px;
}
.howitworks-step p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--ink);
  max-width: 110px;
  line-height: 1.4;
}

/* 3. CTA block */
.divide-cta {
  background: #F9F8F6;
  padding: 80px 0;
}
.divide-cta .divide-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.divide-cta-left {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.divide-cta-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.divide-cta-left p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--grey);
  line-height: 1.65;
}
.divide-cta-right {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.divide-cta-right img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Wide button variant */
.btn-wide {
  width: auto;
  padding: 0 36px;
}

/* ── Reviews section 1 ───────────────────────────────────── */
.reviews {
  background: var(--white);
  padding-top: 70px;
}
.reviews-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  padding: 0 44px 70px;
}
.reviews-viewport {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews-slide {
  width: calc(100% / 3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 520px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 36px;
  height: 100%;
}
.review-photo {
  height: 100%;
}
.reviews-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 28px 0 0;
}
.rdot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  padding: 0;
}
.rdot:hover { opacity: 0.5; }
.rdot-active { opacity: 1; }
.review-card--dark  { background: var(--ink); }
.review-card--red   { background: var(--red); }
.review-card--cream { background: var(--cream); }
.review-card--cream .review-stars  { color: var(--ink); }
.review-card--cream .review-quote  { color: var(--ink); }
.review-card--cream .review-author { color: var(--ink); }
.review-pipe--red   { color: var(--red); }
.review-stars {
  font-size: 22px;
  letter-spacing: 3px;
}
.review-stars--red   { color: var(--red); }
.review-stars--white { color: var(--white); }
.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--white);
  flex: 1;
}
.review-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-rule {
  display: block;
  width: 44px;
  height: 2px;
  flex-shrink: 0;
}
.review-rule--red  { background: var(--red); }
.review-rule--dark { background: var(--ink); }
.review-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6A7282;
}
.review-author--faded { color: rgba(255,255,255,0.5); }
.review-pipe       { color: #D1D5DC; }
.review-pipe--light { color: #D1D5DC; }
.review-photo {
  overflow: hidden;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Product detail page ──────────────────────────────────── */
.product-detail {
  background: var(--white);
  padding: 72px 0 100px;
}
.product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Left: gallery */
.product-gallery {
  flex: 0 0 52%;
  position: sticky;
  top: 32px;
}
.product-img-main {
  position: relative;
  background: #F3F2F0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
}
.product-img-main img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.product-img-main:hover img {
  transform: scale(1.04);
}
.zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.88);
  padding: 7px 12px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.85;
}
.zoom-hint svg { flex-shrink: 0; }
.zoom-hint span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* Right: info */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.product-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.product-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #E4E7EC;
  padding-top: 24px;
}
.product-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.product-meta {
  display: flex;
  gap: 32px;
  border-top: 1px solid #E4E7EC;
  padding-top: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.meta-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid #E4E7EC;
  padding-top: 24px;
}
.btn-product {
  width: 100%;
  height: 60px;
  font-size: 13px;
  letter-spacing: 0.07em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: zoom-out;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Filter bar ───────────────────────────────────────────── */
.filter-bar {
  background: #FAFAFA;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 20px 44px;
}
.filter-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filters-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 4px;
}
.filter-dropdowns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
/* Each dropdown wrapper */
.fdd {
  position: relative;
}
/* The pill trigger button */
.fdd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 110px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1.5px solid #D0D5DD;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}
.sort-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 110px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1.5px solid #D0D5DD;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.sort-price-btn:hover { border-color: var(--ink); }
.sort-price-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.fdd-btn:hover { border-color: var(--ink); }
.fdd-btn.open { border-color: var(--ink); }
.fdd-btn.has-selections {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.fdd-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.fdd-btn.open .fdd-chevron { transform: rotate(180deg); }
.fdd-btn.has-selections .fdd-chevron path { stroke: white; }

/* Dropdown card */
.fdd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 300;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.fdd-menu.open { display: block; }

/* Checkbox rows */
.fdd-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.1s;
}
.fdd-option:hover { background: #F9F9F9; }
.fdd-option input[type="checkbox"] {
  appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid #D0D5DD;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.fdd-option input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.fdd-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 9px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.fdd-option-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

/* Count + clear */
.filter-count {
  margin-left: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  white-space: nowrap;
}
.filter-count strong { color: var(--ink); }
.filter-clear {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--red);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: none;
  text-decoration: underline;
}
.filter-clear.visible { display: inline; }
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--grey);
  grid-column: 1 / -1;
}

/* ── Styles / Product grid page ───────────────────────────── */
.styles-section {
  background: var(--white);
  padding: 72px 0 96px;
}
.styles-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}
.suit-card {
  display: block;
  cursor: pointer;
}
.suit-card-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 150.14%; /* 530/353 */
  overflow: hidden;
  border-radius: 8px;
  background: #F3F2F0;
}
.suit-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.suit-card:hover .suit-card-img img { transform: scale(1.04); }
.suit-card-purchase-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--ink);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
  z-index: 2;
  white-space: nowrap;
}
.suit-card-info {
  padding: 14px 0 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}
.suit-card-info > div { min-width: 0; }
.suit-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.suit-card-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
}
.suit-card-rent {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 10px;
  background: #fff;
  color: var(--red);
  border: 1.5px solid var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
  border-radius: 9999px;
  transition: background 0.15s, color 0.15s;
}
.suit-card:hover .suit-card-rent { background: var(--red); color: #fff; }
.suit-card-rent--unavailable {
  background: #fff;
  color: #9CA3AF;
  border-color: #D0D5DD;
  cursor: default;
}
.suit-card:hover .suit-card-rent--unavailable {
  background: #fff;
  color: #9CA3AF;
  border-color: #D0D5DD;
}

/* ── Submit Measurements page ────────────────────────────── */
.measurements-page {
  background: var(--ink);
  padding: 72px 44px 100px;
}
.measurements-page-intro {
  max-width: 860px;
  margin: 0 auto 48px;
}
.measurements-page-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.measurements-page-intro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.measurements-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
}
.measurements-form-wrap .form-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
.measurements-form-wrap .form-section > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--grey);
  margin-top: -4px;
}
.measurements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.payment-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FDF0F3;
  border: 1px solid rgba(181,10,56,0.2);
  padding: 16px 20px;
}
.payment-notice svg { flex-shrink: 0; margin-top: 2px; }
.payment-notice p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.payment-notice p strong { color: var(--red); }
.signature-field {
  border: 1px solid #D0D5DD;
  padding: 16px;
  background: #FAFAFA;
}
.signature-field p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 12px;
  line-height: 1.5;
}
.measurements-form-wrap .btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 40px;
  height: 54px;
  cursor: pointer;
  transition: background 0.2s;
}
.measurements-form-wrap .btn-submit:hover { background: var(--ink); }
.measurements-form-wrap .btn-cancel {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--grey);
}
.form-footnote {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  text-align: right;
  margin-top: 8px;
}

/* ── How the Process Works page ──────────────────────────── */
.process-section {
  background: var(--white);
  padding: 88px 44px 100px;
}
.process-inner {
  max-width: 860px;
  margin: 0 auto;
}
.process-intro {
  margin-bottom: 72px;
}
.process-page-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 640px;
}
.process-intro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.65;
  max-width: 600px;
}

.process-list {
  display: flex;
  flex-direction: column;
}
.process-item {
  display: flex;
  gap: 40px;
  position: relative;
}
.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 64px;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(181,10,56,0.15) 100%);
  min-height: 48px;
}
.process-item:last-child .process-line {
  display: none;
}

.process-content {
  padding-bottom: 64px;
  flex: 1;
  padding-top: 12px;
}
.process-item:last-child .process-content {
  padding-bottom: 0;
}
.process-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181,10,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.process-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 580px;
}

/* Bottom CTA */
.process-cta {
  background: var(--ink);
  padding: 88px 44px;
  text-align: center;
}
.process-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.process-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.process-cta .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.process-cta .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ── Popular suits section 1 ──────────────────────────────── */
.suits {
  background: #F9F8F6;
  padding: 96px 0;
}
.suits-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}
.suits-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 56px;
}
.suits-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.suits-track {
  display: flex;
  gap: 51px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.suits-track::-webkit-scrollbar { display: none; }
.suits-track .suit-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
}
.suit-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
}
.suit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  transition: transform 0.4s;
}
.suit-card:hover .suit-image img { transform: scale(1.03); }
.suit-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.suit-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.suits-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: background 0.15s, box-shadow 0.15s;
}
.suits-arrow:hover {
  background: #f3f3f1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.13);
}
.suits-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.suits-logos {
  overflow: hidden;
  margin-top: 72px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.suits-logos:hover .suits-logos-track { animation-play-state: paused; }
.suits-logos-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: logos-scroll 16s linear infinite;
  padding: 0 50px;
}
@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.suits-logos img {
  height: 108px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.75;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.suits-logos img:hover { opacity: 1; }
.suits-logos img[alt="Bruno Magli"] { height: 76px; }
.suits-logos img[alt="Ralph Lauren"] { height: 140px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #111111;
}

/* Top CTA band */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 80px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cta-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.footer-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
}
.footer-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}
.footer-cta-buttons {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.footer-btn-primary {
  flex: 1;
  background: var(--red);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.footer-btn-primary:hover { background: #8f0829; color: var(--white); }
.footer-btn-outline {
  flex: 1;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 40px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}
.footer-btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* Bottom footer */
.footer-bottom {
  padding: 72px 210px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Brand column */
.footer-brand {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-wordmark-savvi {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.2em;
}
.footer-wordmark-fw {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.35em;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  transition: border-color 0.15s, background 0.15s;
}
.footer-social-btn:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

/* Nav link columns */
.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 200px;
}
.footer-col-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.17em;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-col nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  border-bottom: none;
  padding-bottom: 0;
  white-space: normal;
  transition: color 0.15s;
}
.footer-col nav a:hover {
  color: var(--white);
  border-bottom-color: transparent;
}

/* Copyright bar */
.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0 40px;
  text-align: center;
}
.footer-copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ── Hamburger button (hidden on desktop) ─────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  z-index: 301;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile nav drawer ────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 200;
  overflow-y: auto;
  padding: 8px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav.open { display: block; }
.mobile-nav-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  padding: 20px 28px 6px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.12s, color 0.12s;
}
.mobile-nav-link:hover { background: #f7f4f1; color: var(--red); }
.mobile-nav-cta-wrap {
  padding: 28px 28px 0;
}
.mobile-nav-cta {
  width: 100%;
  height: auto;
  padding: 16px 20px;
  font-size: 12px;
  border-radius: 9999px;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

/* ── Responsive: medium — hide logo so nav items have room ── */
@media (max-width: 1160px) {
  .hero-content { flex: 0 0 500px; }
  .hero-content h1 { font-size: 62px; }
  .hero-image { flex: 0 0 460px; height: 500px; }

  /* CTA block: allow left column to shrink */
  .divide-cta-left { flex: 0 0 420px; }
  .divide-cta-left h2 { font-size: 38px; }
  .divide-cta .divide-inner { gap: 48px; }

  /* Footer */
  .footer-cta-heading { font-size: 56px; }
  .footer-bottom { padding: 60px 44px 0; }

  /* Switch to hamburger nav before links crowd the logo */
  .logo { display: flex; }
  nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Responsive: tablet / mobile — hamburger ─────────────── */
@media (min-width: 601px) and (max-width: 1160px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .styles-inner { padding: 0 16px; }
}

@media (max-width: 900px) {

  /* Booking / form: stack vertically */
  .booking { padding: 60px 24px; }
  .booking-inner { flex-direction: column; gap: 48px; }
  .booking-left { flex: none; width: 100%; }
  .booking-left h2 { font-size: 44px; }
  .savings-main { font-size: 22px; }
  .booking-form { padding: 28px 24px; }

  /* Hero: stack vertically, image on top so both slides share same Y */
  .hero-viewport { overflow: hidden; }
  .hero-track { align-items: flex-start; }
  .hero-inner {
    flex-direction: column-reverse;
    padding: 0 0 40px;
    gap: 0;
  }
  .hero-content {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 32px 0 48px;
  }
  .hero-content p { max-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .hero-image {
    flex: none;
    width: 100%;
    height: 380px;
    border-radius: 0;
  }
  .hero-slide { padding: 0 28px; overflow: hidden; }
  .hero-content h1 { font-size: 52px; }
  .hero-content p { font-size: 18px; }
  .hero-dots { bottom: 16px; }

  /* Image tiles: 2 columns on tablet */
  .divide-tiles { grid-template-columns: repeat(2, 1fr); }

  /* How it works: wrap steps */
  .howitworks-steps { gap: 40px; flex-wrap: wrap; }
  .howitworks-steps::before { display: none; }

  /* Footer: stack on tablet */
  .footer-cta { padding: 60px 32px; }
  .footer-cta-heading { font-size: 44px; }
  .footer-cta-sub { font-size: 18px; }
  .footer-bottom-inner { flex-direction: column; gap: 48px; }
  .footer-brand { flex: none; width: 100%; }
  .footer-tagline { max-width: 100%; }
  .footer-links { justify-content: flex-start; gap: 40px; }

  /* Reviews: reflow from 4-col strip to 2×2 grid */
  .reviews-heading { font-size: 36px; padding-bottom: 48px; }
  .reviews-slide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
  }

  /* Suits: smaller card images on tablet */
  .suits-heading { font-size: 36px; }
  .suit-card { flex: 0 0 220px; }
  .suit-image { height: 360px; }

  /* CTA block: stack vertically */
  .divide-cta .divide-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 28px;
  }
  .divide-cta-left {
    flex: none;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .divide-cta-left h2 { font-size: 36px; }
  .divide-cta-left p { font-size: 16px; }
  .divide-cta-right {
    width: 100%;
  }
  .divide-cta-right img { height: 320px; }
  .btn-wide { width: 100%; padding: 0 24px; }
}

/* ── Responsive: small mobile ────────────────────────────── */
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }

  /* Booking / form: small mobile */
  .booking { padding: 48px 20px; }
  .booking-left h2 { font-size: 34px; }
  .savings-main { font-size: 18px; }
  .booking-form { padding: 24px 16px; }
  .field-row { flex-direction: column; gap: 20px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .btn-cancel { text-align: center; }
  .btn-submit { width: 100%; }
  .hero-slide { padding: 0 20px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 16px; }
  .hero-image { height: 260px; border-radius: 0; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .btn { width: 100%; display: flex; justify-content: center; text-align: center; }

  /* Image tiles: single column on phone */
  .divide-tiles { grid-template-columns: 1fr; padding: 0 20px; }
  .divide-cta { padding: 56px 0; }
  .divide-cta .divide-inner { padding: 0 20px; }
  .divide-cta-left h2 { font-size: 30px; }
  .divide-cta-right img { height: 240px; }

  /* Footer: small mobile */
  .footer-cta-buttons { flex-direction: column; }
  .footer-btn-primary, .footer-btn-outline { font-size: 11px; letter-spacing: 0.1em; padding: 14px 20px; white-space: nowrap; }
  .footer-cta-heading { font-size: 34px; }
  .footer-bottom { padding: 48px 20px 0; }
  .footer-links { flex-direction: column; gap: 36px; }
  .footer-col { min-width: 0; }

  /* Styles grid: single full-width column on phone */
  .styles-grid { grid-template-columns: 1fr; gap: 24px; }
  .styles-inner { padding: 0 16px; }
  .styles-grid .suit-card { width: 100%; }

  /* Suits: large single card on phone */
  .suits { padding: 64px 0; }
  .suits-inner { padding: 0; }
  .suits-heading { font-size: 28px; margin-bottom: 36px; padding: 0 20px; }
  .suits-carousel-wrap { gap: 0; }
  .suits-arrow { display: none; }
  .suits-track { gap: 16px; padding: 0 20px; scroll-padding-left: 20px; }
  .suits-track .suit-card { flex: 0 0 calc(100vw - 40px); width: calc(100vw - 40px); }
  .suit-image { height: 480px; }
  .suits-scroll-hint { display: flex; }
  .suits-scroll-hint-hidden { display: none !important; }

  /* Styles grid: 2 columns on tablet */

  .filter-bar { padding: 16px 16px; }
  .filter-bar-inner { flex-wrap: wrap; gap: 8px; }
  .filters-label { width: 100%; margin-right: 0; }
  .filter-dropdowns { width: 100%; gap: 8px; flex-wrap: wrap; }
  .fdd { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .fdd-btn { width: 100%; justify-content: center; padding: 7px 8px; font-size: 12px; }
  .fdd-menu { min-width: 160px; }
  .filter-count { width: 100%; margin-left: 0; }

  /* Reviews: single column on phone — card then photo, repeated */
  .reviews-heading { font-size: 28px; padding: 0 20px 36px; }
  .reviews-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 260px auto 260px;
  }
  .review-card { height: auto; }
  .review-photo { height: 100%; }
  .review-photo img { height: 100%; }
}
