/* ==========================================================================
   LafinLux Sàrl — shared stylesheet
   ========================================================================== */

:root {
  --bg: #0a0908;
  --bg-alt: #121110;
  --bg-panel: #17150f;
  --bg-panel-2: #1c1a13;
  --border: rgba(201, 162, 74, 0.16);
  --border-strong: rgba(201, 162, 74, 0.35);

  --gold-light: #e8cd8a;
  --gold: #c9a24a;
  --gold-dark: #9c7a32;

  --text: #f3efe6;
  --text-muted: #a89f8f;
  --text-faint: #6f6a5f;

  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --hero-height: 640px;
  --hero-height-tablet: 520px;
  --hero-height-mobile: 480px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--gold);
  color: #14120c;
}

/* Scroll reveal ------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* Eyebrow label --------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* Buttons ----------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1a1508;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(201, 162, 74, 0.45);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(201, 162, 74, 0.6);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 74, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.72rem;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Header ------------------------------------------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.85), rgba(8, 7, 6, 0));
  backdrop-filter: blur(2px);
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  padding: 13px 0;
  background: rgba(9, 8, 7, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.08em;
  transition: transform 0.4s var(--ease);
}

.logo:hover .logo-mark {
  transform: scale(1.06);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-text small {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.nav-cta {
  display: none;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.3s var(--ease);
}

.header-contact:hover {
  opacity: 0.8;
}

.header-contact small {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.header-contact strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  margin: -12px -9px -12px 0;
  z-index: 210;
}

.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  height: var(--hero-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #050403;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 4, 0.55) 0%, rgba(6, 5, 4, 0.35) 40%, rgba(8, 7, 5, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.hero-breadcrumb a:hover {
  color: var(--gold);
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: var(--text);
  max-width: 780px;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin-top: 22px;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero-scroll:hover {
  color: var(--gold);
  transform: translateY(3px);
}

.hero-scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Feature strip (home hero footer bar) --------------------------------- */

.feature-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.feature-strip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.feature-strip li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-strip li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dark);
  margin-left: 14px;
}

.feature-strip strong {
  color: var(--text);
  font-weight: 600;
}

/* Section rhythm -------------------------------------------------------- */

section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--text);
}

.section-head p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Cards grid -------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 36px;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover {
  background: var(--bg-panel);
  transform: translateY(-4px);
}

.service-card .num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 20px;
}

.service-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Split content (image + text) ------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 3px;
}

.split-badge {
  position: absolute;
  left: -1px;
  bottom: 28px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  padding: 14px 22px;
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.split-badge small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-top: 2px;
}

.split-quote-card {
  position: absolute;
  right: -1px;
  bottom: 28px;
  background: var(--gold);
  color: #1a1508;
  padding: 16px 26px;
  max-width: 220px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
}

.split-body p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.split-body p:last-of-type {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 26px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.feature-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.quote-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.quote-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Pill list --------------------------------------------------------------- */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.pill:hover {
  border-color: var(--border-strong);
  background: rgba(201, 162, 74, 0.06);
}

.note-text {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 760px;
}

/* Principles / icon cards ------------------------------------------------- */

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.icon-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background-color 0.4s var(--ease);
}

.icon-card:hover {
  background: var(--bg-panel);
}

.icon-card .icon-circle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.icon-card .icon-circle svg {
  width: 18px;
  height: 18px;
}

.icon-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.icon-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Booking band -------------------------------------------------------- */

.booking-band {
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 74, 0.14), transparent 60%), var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-band .eyebrow {
  justify-content: center;
}

.booking-band .eyebrow::before {
  display: none;
}

.booking-band h2 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.booking-band p {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--text-muted);
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Footer ------------------------------------------------------------------ */

.site-footer {
  background: var(--bg-alt);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.social-links a:hover svg {
  transform: scale(1.15) rotate(-4deg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-credit .coma-mark {
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-credit .coma-mark::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-left: 1px;
}

/* Contact page ------------------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-block {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-block h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info-block .value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  transition: color 0.3s var(--ease);
}

a.value:hover {
  color: var(--gold-light);
}

.contact-info-block .hint {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 48px;
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.94rem;
}

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

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 74, 0.05);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #c2564a;
}

.field-error {
  display: none;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #e08a7d;
}

.field.has-error .field-error {
  display: block;
}

.cf-turnstile-wrap {
  margin: 6px 0 26px;
}

.form-status {
  margin-top: 18px;
  font-size: 0.9rem;
  padding: 14px 18px;
  border: 1px solid var(--border);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: var(--gold-light);
  border-color: var(--border-strong);
}

.form-status.error {
  color: #e08a7d;
  border-color: rgba(194, 86, 74, 0.4);
}

.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* Utility ------------------------------------------------------------- */

.mt-lg { margin-top: 60px; }

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1024px) {
  :root {
    --hero-height: var(--hero-height-tablet);
  }

  section {
    padding: 80px 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 205;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    pointer-events: none;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-size: 1.3rem;
    font-family: var(--serif);
    color: var(--text);
  }

  .header-contact small,
  .header-contact strong {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn.btn-primary.btn-sm {
    display: none;
  }

  .main-nav a.nav-cta {
    display: inline-flex;
    margin-top: 12px;
    padding: 14px 30px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1508;
  }

  .main-nav a.nav-cta:hover {
    color: #1a1508;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-height: var(--hero-height-mobile);
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 64px 0;
  }

  .card-grid,
  .icon-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-card {
    padding: 30px 22px;
  }

  .hero-scroll {
    display: none;
  }

  .booking-actions {
    flex-direction: column;
    width: 100%;
  }

  .booking-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
