/* ============================
   Swift Suites Limassol — Main CSS
   Palette: Warm ivory, deep charcoal, aged gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================ */

:root {
  --ivory:      #F7F4EF;
  --ivory-dark: #EDE9E1;
  --charcoal:   #1C1C1C;
  --charcoal-mid: #333333;
  --gold:       #B8955A;
  --gold-light: #D4AF78;
  --stone:      #8A8077;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(28,28,28,0.08);
  --shadow-lg: 0 12px 48px rgba(28,28,28,0.14);

  --max-width: 1200px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.section--stone {
  background: var(--ivory-dark);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(247,244,239,0.4);
}
.btn-outline-light:hover { background: rgba(247,244,239,0.1); border-color: var(--ivory); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,28,28,0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(247,244,239,0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo img {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--charcoal);
  background: var(--ivory-dark);
}

.nav-link.active { color: var(--gold); background: transparent; }

.btn-cta {
  padding: 0.65rem 1.4rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-cta:hover { background: var(--gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transform-origin: center;
  transition: var(--transition);
}
/* Bars fold into a close icon while the mobile panel is open. */
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Page Hero ── */
.page-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 5rem;
  background: var(--ivory-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(184,149,90,0.07) 100%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.5rem; max-width: 600px; }
.page-hero p { font-size: 1.1rem; color: var(--stone); max-width: 520px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--stone);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ── Home Hero ── */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 680px;
}

.hero-content h1 {
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(247,244,239,0.75);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.8;
}

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

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  background: rgba(247,244,239,0.08);
  border: 1px solid rgba(247,244,239,0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  color: var(--ivory);
  text-align: center;
}
.hero-badge .badge-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-light); line-height: 1; }
.hero-badge .badge-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 0.25rem; }

/* ── Smoobu booking widget ── */
.booking-bar {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--ivory-dark);
  box-shadow: var(--shadow);
}

.smoobu-embed {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
}

/* Smoobu injects: #apartmentIframeAll > .smoobu-booking-tool-container > iframe.
   Every level needs an explicit full width, or the iframe collapses to its
   300px intrinsic default. */
.smoobu-embed #apartmentIframeAll,
.smoobu-embed .smoobu-booking-tool-container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

/* 1000px is the widest the booking tool's own layout fills; past that it
   just pads dead space on the right. Centred inside the white panel. */
.smoobu-embed iframe {
  width: 100% !important;
  max-width: 1000px !important;
  border: none;
  display: block;
  margin-inline: auto;
}

/* ── Section Divider ── */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Suite Cards ── */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.suite-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  /* Column layout so cards of differing copy length still align their CTAs. */
  display: flex;
  flex-direction: column;
}

.suite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.suite-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.suite-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.suite-card:hover .suite-card-img img {
  transform: scale(1.04);
}

.suite-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push the CTA to the bottom edge of the card. */
.suite-card-body > .btn:last-child {
  margin-top: auto;
}

.suite-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.suite-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.suite-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--stone);
}

.suite-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.suite-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.suite-price .from { font-size: 0.72rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.05em; }
.suite-price .amount { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--charcoal); }
.suite-price .per { font-size: 0.78rem; color: var(--stone); }

/* ── Floor Badge ── */
.floor-badge {
  display: inline-flex;
  /* The card body is a flex column; without this the badge stretches full width. */
  align-self: flex-start;
  align-items: center;
  gap: 0.3rem;
  background: var(--ivory-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-size: 0.72rem;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

/* ── Amenity Cards ── */
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.amenity-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.amenity-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.amenity-item p {
  font-size: 0.82rem;
  color: var(--stone);
}

/* ── Feature Sections ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text h2 { margin-bottom: 1rem; }
.feature-text p { color: var(--stone); margin-bottom: 1.5rem; }

/* ── Amenities List ── */
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

/* On charcoal sections the default --charcoal-mid text is unreadable. */
.section--dark .amenity-list li {
  color: rgba(247, 244, 239, 0.75);
}

.amenity-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--ivory-dark);
  pointer-events: none;
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.review-score .star { color: var(--gold-light); }

.review-name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; font-weight: 500; }
.review-source { font-size: 0.72rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--charcoal-mid); line-height: 1.65; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { color: var(--ivory); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.78rem; color: rgba(247,244,239,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Map & Location ── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
}

.location-item .icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ivory-dark);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gold);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: var(--transition);
}
.faq-icon { position: relative; }
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ivory-dark);
}

.faq-category-title:first-child { margin-top: 0; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail a { color: var(--charcoal); }
.contact-detail a:hover { color: var(--gold); }

.form-group { margin-bottom: 1.25rem; }

/* Consent checkbox on the contact form. Mirrors .biz-consent on the corporate
   enquiry form so the two read identically. */
.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.form-consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-consent a { color: var(--charcoal); text-decoration: underline; }

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

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
}

input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,90,0.1);
}

textarea { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #b6d9b6;
  color: #2d6a2d;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.form-error {
  display: none;
  background: #fdf0f0;
  border: 1px solid #d9b6b6;
  color: #6a2d2d;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ── About Page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-img-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-grid img:not(:first-child) {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.value-card p { font-size: 0.85rem; color: var(--stone); }

/* ── Gallery Grid ── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  display: block;
  break-inside: avoid;
  transition: var(--transition);
}

.gallery-masonry img:hover { opacity: 0.88; }

/* ── Cookie Banner ── */
/* Cookie preference control on the policy page — a bordered callout so the
   action is findable by a visitor who came here to withdraw consent. */
.cookie-prefs {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  background: var(--ivory-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.cookie-prefs-status {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.cookie-prefs-status strong { color: var(--charcoal); }

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner p { margin-bottom: 1rem; opacity: 0.85; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions button {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: var(--gold);
  color: var(--white);
  transition: var(--transition);
}

.cookie-actions button.outline {
  background: transparent;
  border: 1px solid rgba(247,244,239,0.3);
  color: var(--ivory);
}

.cookie-actions button:hover { opacity: 0.85; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,244,239,0.08);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.85rem; color: rgba(247,244,239,0.5); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247,244,239,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,239,0.6);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(247,244,239,0.55);
  padding: 0.25rem 0;
  display: block;
  transition: var(--transition);
}

.footer-nav ul li a:hover { color: var(--ivory); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247,244,239,0.55);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-contact ul li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact a { color: rgba(247,244,239,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(247,244,239,0.3);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(247,244,239,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--ivory); }

/* ── Smoobu section ── */
.book-section {
  background: var(--ivory-dark);
  padding: 4rem 0;
}

/* Nine nav items plus the CTA is a tight fit below ~1180px — tighten the
   spacing rather than let the header wrap or overflow. Below 900px there is no
   room left at all, so the header switches to the mobile panel instead. */
@media (min-width: 901px) and (max-width: 1180px) {
  .header-inner { gap: 1rem; }
  .main-nav { gap: 0; }
  .nav-link { font-size: 0.76rem; padding: 0.5rem 0.5rem; letter-spacing: 0.02em; }
  .btn-cta { padding: 0.6rem 1rem; font-size: 0.72rem; }
  .logo img { height: 30px; }
}

/* ── Mobile navigation ──
   .site-header sets backdrop-filter, which makes it the containing block for
   any position:fixed descendant — a fixed panel here resolves top/bottom
   against the 60px header instead of the viewport and collapses to nothing.
   Anchoring the panel to the header with position:absolute is what actually
   works, and top:100% keeps it correct whatever --header-h is. */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    margin-left: 0;
    padding: 1.5rem 1.5rem 3rem;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--ivory);
    border-top: 1px solid rgba(28,28,28,0.07);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .nav-link {
    font-size: 1rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--ivory-dark);
    border-radius: 0;
  }
  /* Touch devices keep :hover stuck on the last tapped row. */
  .nav-link:hover { background: transparent; }
  .btn-cta { display: none; }
  /* .main-nav carries margin-left:auto on desktop; once it leaves the flow the
     toggle has to push itself to the right edge. */
  .mobile-toggle { display: flex; margin-left: auto; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 60px; }
  .hero-badge { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .section { padding: 4rem 0; }
}

/* ── Legal pages ── */
.legal-content { max-width: 720px; }
.legal-updated {
  font-size: 0.78rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.legal-content > p { color: var(--stone); margin-bottom: 1.25rem; line-height: 1.7; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.9rem;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}
.legal-content ul { margin: 0 0 1.25rem; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: block;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg, var(--shadow)); }
.blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-date {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--charcoal, inherit); }
.blog-card-body p { font-size: 0.88rem; color: var(--stone); margin-bottom: 1rem; line-height: 1.6; }
.blog-card-more { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.04em; }

/* ── Article page ── */
.article-container { max-width: 760px; }
.article-cover { border-radius: 4px; overflow: hidden; margin-bottom: 2.5rem; }
.article-cover img { width: 100%; display: block; }
.article-body { font-size: 1.02rem; line-height: 1.8; color: var(--charcoal-mid, inherit); }
.article-body h2 { font-size: 1.6rem; margin: 2.25rem 0 0.9rem; }
.article-body h3 { font-size: 1.25rem; margin: 1.75rem 0 0.6rem; }
.article-body p { margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.4rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body img { max-width: 100%; border-radius: 4px; margin: 1.5rem 0; }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--stone);
  font-style: italic;
}
.article-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--ivory-dark);
  border-radius: 4px;
  text-align: center;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Inline text link with a gold underline on hover. */
.text-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.text-link:hover { color: var(--gold); text-decoration: none; }

/* ══ Apartment type page ══════════════════════════════════════════ */

.apt-hero {
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 0;
  background: var(--ivory);
}

.apt-hero .breadcrumb { margin-bottom: 1.25rem; }

/* ── Gallery ── */
.apt-gallery-main {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory-dark);
  box-shadow: var(--shadow);
}

.apt-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(247, 244, 239, 0.9);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.apt-gallery-nav:hover { background: var(--white); box-shadow: var(--shadow); }
.apt-gallery-nav.prev { left: 1rem; }
.apt-gallery-nav.next { right: 1rem; }

.apt-gallery-count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(28, 28, 28, 0.7);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.apt-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.apt-thumb {
  flex: 0 0 108px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: calc(var(--radius) / 2);
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: var(--transition);
}
.apt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.apt-thumb:hover { opacity: 0.85; }
.apt-thumb.active { opacity: 1; border-color: var(--gold); }

/* ── Intro + facts ── */
.apt-intro {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  align-items: start;
}

.apt-intro-copy h1 { margin-bottom: 1.25rem; }

.apt-intro-lead {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--charcoal-mid);
}

.apt-facts {
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.apt-facts-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.apt-facts dl { margin-bottom: 1.5rem; }

.apt-facts dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
}
.apt-facts dl > div:last-child { border-bottom: none; }
.apt-facts dt { font-size: 0.82rem; color: var(--stone); }
.apt-facts dd { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }

/* ── Unit list: wide, full-width rows rather than a grid ── */
.unit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.unit-card {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.unit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.unit-card-img {
  aspect-ratio: 4 / 3;
  height: 100%;
  overflow: hidden;
}
.unit-card-img img { width: 100%; height: 100%; object-fit: cover; }

.unit-card-body { padding: 1.5rem 0; min-width: 0; }

.unit-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.unit-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.unit-card-desc {
  font-size: 0.86rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  max-width: 60ch;
}

.unit-card-action { padding-right: 1.75rem; }

/* ── Other types ── */
.apt-other {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.apt-other-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.apt-other-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  text-decoration: none;
}
.apt-other-name { font-weight: 500; color: var(--charcoal); font-size: 0.95rem; }
.apt-other-meta { font-size: 0.78rem; color: var(--stone); }

@media (max-width: 900px) {
  .apt-intro { grid-template-columns: 1fr; gap: 2rem; }
  .apt-facts { position: static; }
  .unit-card { grid-template-columns: 160px 1fr; }
  .unit-card-action { grid-column: 1 / -1; padding: 0 1.5rem 1.5rem; }
  .unit-card-action .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .unit-card { grid-template-columns: 1fr; }
  .unit-card-img { aspect-ratio: 16 / 9; }
  .unit-card-body { padding: 1.25rem 1.5rem 0; }
  .apt-gallery-nav { width: 36px; height: 36px; font-size: 1.3rem; }
  .apt-thumb { flex-basis: 84px; }
}

/* ── Per-apartment booking panel (Smoobu iframe, toggled by "Book Now") ── */
.unit-row {
  display: flex;
  flex-direction: column;
}

.unit-booking {
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  margin: -2px 1.25rem 0;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.unit-booking[hidden] { display: none; }

.unit-booking-note {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--charcoal-mid);
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1rem;
  border-radius: calc(var(--radius) / 3);
  margin-bottom: 1.25rem;
}
.unit-booking-note strong { color: var(--charcoal); font-weight: 600; }

.unit-booking-frame { min-height: 120px; }
.unit-booking-frame iframe { width: 100%; border: 0; display: block; }

.unit-booking-error { font-size: 0.86rem; color: var(--stone); }
.unit-booking-error a { border-bottom: 1px solid var(--gold); }

@media (max-width: 600px) {
  .unit-booking { margin-left: 0; margin-right: 0; padding: 1.25rem; }
}

/* ============================================================
   Business / Corporate Page (business.php)
   ============================================================ */

/* ── Hero ── */
.biz-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 3.5rem;
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.biz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.72) 45%, rgba(28,28,28,0.35) 100%);
}

.biz-hero .container { position: relative; z-index: 2; width: 100%; }
.biz-hero .breadcrumb { color: rgba(247,244,239,0.55); }
.biz-hero .breadcrumb a { color: rgba(247,244,239,0.55); }
.biz-hero .breadcrumb a:hover { color: var(--gold-light); }
.biz-hero .eyebrow { color: var(--gold-light); }

.biz-hero h1 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
}
.biz-hero h1 em { font-style: italic; color: var(--gold-light); }

.biz-hero-sub {
  font-size: 1.08rem;
  color: rgba(247,244,239,0.78);
  max-width: 54ch;
  margin-bottom: 2rem;
}

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

/* ── Trust strip under the hero ── */
.biz-trust {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(247,244,239,0.09);
  padding: 1.1rem 0;
}

.biz-trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.25rem;
  justify-content: center;
  align-items: center;
}

.biz-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.72);
  white-space: nowrap;
}
.biz-trust-item svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

/* ── Section intro (centred heading block) ── */
.biz-intro { max-width: 640px; margin-bottom: 3rem; }
.biz-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.biz-intro h2 { margin-bottom: 1rem; }
.biz-intro p { color: var(--stone); }
.section--dark .biz-intro p { color: rgba(247,244,239,0.7); }

/* ── Lead paragraph + supporting points ── */
.biz-value {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}
.biz-value p { color: var(--stone); margin-bottom: 1.25rem; }
.biz-value p.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--charcoal);
}

/* ── Audience cards ── */
.biz-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.biz-audience-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}
.biz-audience-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.biz-audience-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.biz-audience-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

.biz-audience-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivory-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.biz-audience-icon svg { width: 19px; height: 19px; }
.biz-audience-card:hover .biz-audience-icon { background: var(--gold); color: var(--white); }

/* ── Benefit cards (dark section) ── */
.biz-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,244,239,0.12);
  border: 1px solid rgba(247,244,239,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.biz-benefit {
  background: var(--charcoal);
  padding: 2.25rem 1.9rem;
  transition: var(--transition);
}
.biz-benefit:hover { background: #232323; }
.biz-benefit svg { width: 26px; height: 26px; color: var(--gold-light); margin-bottom: 1.1rem; }
.biz-benefit h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.biz-benefit p { font-size: 0.85rem; color: rgba(247,244,239,0.6); line-height: 1.65; }

/* The extended-stay block's use-case list runs much taller than a 4:3 photo,
   so let the image fill its column instead of floating in white space. */
.biz-feature-tall { align-items: stretch; }
.biz-feature-tall .feature-img { aspect-ratio: auto; min-height: 340px; }

/* ── Photo feature grid ── */
.biz-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.biz-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory-dark);
}
.biz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.biz-photo:hover img { transform: scale(1.04); }

.biz-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.75rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(28,28,28,0.82), transparent);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.biz-photo--wide  { grid-column: span 2; grid-row: span 2; }
.biz-photo--span2 { grid-column: span 2; }
.biz-photo--tall  { grid-row: span 2; }

/* ── Feature chips ── */
.biz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.biz-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--ivory-dark);
  background: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--charcoal-mid);
}
.biz-chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Inventory table ── */
.inventory-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.inventory-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.inventory-table th, .inventory-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(247,244,239,0.12);
}
.inventory-table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.inventory-table tbody td { color: rgba(247,244,239,0.72); }
.inventory-table tbody td:first-child { color: var(--ivory); font-weight: 500; }
.inventory-table tbody tr:last-child td { border-bottom: none; }
.inventory-table a { color: var(--gold-light); border-bottom: 1px solid transparent; }
.inventory-table a:hover { border-bottom-color: var(--gold-light); }

/* ── Numbered use-case list ── */
.biz-usecases { display: grid; gap: 1.1rem; }

.biz-usecase {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1.1rem;
  align-items: start;
}
.biz-usecase .num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.biz-usecase h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.biz-usecase p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

/* ── Partnership panel ── */
.biz-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.biz-partner p { margin-bottom: 1.25rem; }

.biz-partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.biz-partner-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: rgba(247,244,239,0.72);
  line-height: 2;
}
.biz-partner-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.9em;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ── Enquiry form ── */
.biz-form-section { background: var(--ivory-dark); }

.biz-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 3.5rem;
  align-items: start;
}

.biz-form-aside h2 { margin-bottom: 1rem; }
.biz-form-aside > p { color: var(--stone); margin-bottom: 2rem; }

.biz-promise { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.biz-promise-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.biz-promise-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.biz-promise-item strong { display: block; font-size: 0.9rem; font-weight: 500; }
.biz-promise-item span { font-size: 0.82rem; color: var(--stone); }

.biz-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.biz-form-card fieldset { border: none; margin-bottom: 1.75rem; }
.biz-form-card fieldset:last-of-type { margin-bottom: 1.25rem; }
.biz-form-card legend {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 1rem;
  width: 100%;
  border-bottom: 1px solid var(--ivory-dark);
  margin-bottom: 1.25rem;
}

.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

select, input[type="date"], input[type="number"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8077' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 15px;
  padding-right: 2.5rem;
}
select:focus, input[type="date"]:focus, input[type="number"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,90,0.1);
}

.form-hint { font-size: 0.76rem; color: var(--stone); margin-top: 0.4rem; }

.biz-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.biz-consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.biz-consent a { color: var(--charcoal); text-decoration: underline; }

.biz-form-footnote {
  font-size: 0.78rem;
  color: var(--stone);
  text-align: center;
  margin-top: 1rem;
}

/* ── Contact fallback band ── */
.biz-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.biz-direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.biz-direct a:hover { color: var(--gold); }
.biz-direct svg { width: 17px; height: 17px; color: var(--gold); }

/* ── Business page responsive ── */
@media (max-width: 1000px) {
  .biz-audience { grid-template-columns: repeat(2, 1fr); }
  .biz-benefits { grid-template-columns: repeat(2, 1fr); }
  .biz-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .biz-value { grid-template-columns: 1fr; gap: 2rem; }
  .biz-partner { grid-template-columns: 1fr; gap: 2.5rem; }
  .biz-photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .biz-hero { min-height: 0; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem; }
  .biz-hero-actions .btn { width: 100%; justify-content: center; }
  .biz-trust-inner { gap: 0.75rem 1.5rem; }
  .biz-audience { grid-template-columns: 1fr; }
  .biz-benefits { grid-template-columns: 1fr; }
  .biz-partner-list { grid-template-columns: 1fr; }
  .biz-photo--wide  { grid-column: span 2; grid-row: span 1; }
  .biz-photo--span2 { grid-column: span 2; }
  .biz-photo--tall  { grid-row: span 1; }
  .biz-photo-grid { grid-auto-rows: 150px; }
  .form-row-3 { grid-template-columns: 1fr; }
  .biz-form-card { padding: 1.5rem; }
}
