:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #F9F9FB;
  --muted: #707070;
  --green: #0C362C;
  --green-soft: rgba(12, 54, 44, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --card: #ffffff;
  --text: #151515;
  --gold: #AC8C66;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.25s ease; }
ul { list-style: none; }

/* ---------- Header: black top bar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: none;
  height: 72px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 1.85rem;
  color: var(--white);
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: -2px;
  margin-left: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 0;
  color: rgba(255,255,255,0.75);
}
.nav a:hover { color: var(--white); }
.nav a.active {
  background: transparent;
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 14ch;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 36ch;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: inherit;
}
.btn-red, .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-red:hover, .btn-primary:hover {
  background: #222;
  border-color: #222;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
/* outline on light bg */
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.hero-stats {
  position: absolute;
  top: 100px;
  right: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 18px 22px;
  text-align: center;
  z-index: 3;
  color: var(--white);
}
.hero-stats .rating {
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-stats .rating span { color: var(--gold); font-size: 1.2rem; }
.hero-stats .label { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.hero-stats .clients { font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-top: 8px; }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-nav:hover { background: rgba(255,255,255,0.3); }
.hero-nav.prev { left: 20px; }
.hero-nav.next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  background: rgba(0,0,0,0.35);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-dots button {
  width: 28px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.hero-dots button.active { background: var(--gold); }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 140px 24px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 18ch;
  color: var(--black);
}
.page-hero p {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--black);
}
.section-desc {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

/* About strip */
.about-strip {
  background: var(--white);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-strip img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-strip p { color: var(--muted); margin-bottom: 16px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p { color: var(--muted); font-size: 0.9rem; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #eee;
}
.service-detail ul {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}
.service-detail ul li {
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}
.service-detail ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}
.gallery-filters button:hover {
  border-color: var(--black);
  color: var(--black);
}
.gallery-filters button.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  grid-column: span 3;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 6; aspect-ratio: 16/10; }
.gallery-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: #e5e5e5;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 0.8rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-item .cap span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2px;
}

/* Booking */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.booking-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--black);
}
.booking-info p { color: var(--muted); margin-bottom: 12px; font-size: 0.95rem; }
.booking-info .steps { margin-top: 28px; }
.booking-info .step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.booking-info .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.calendar-wrap { margin-bottom: 24px; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-header h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--black);
}
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 1.1rem;
}
.cal-nav button:hover { border-color: var(--black); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-grid .dow {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 8px 0;
  font-weight: 500;
}
.cal-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  transition: 0.15s ease;
}
.cal-grid .day:hover:not(.empty):not(.past):not(.selected) {
  background: var(--green-soft);
}
.cal-grid .day.empty { cursor: default; }
.cal-grid .day.past { color: #bbb; cursor: not-allowed; }
.cal-grid .day.selected {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}
.cal-grid .day.today { border: 1px solid var(--gold); }
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.time-slots button {
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}
.time-slots button:hover { border-color: var(--black); }
.time-slots button.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.booking-card .form-group { margin-bottom: 14px; }
.booking-card label,
.form-group label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.booking-card input,
.booking-card select,
.booking-card textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}
.selected-date-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.selected-date-label strong { color: var(--black); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info p { color: var(--muted); margin-bottom: 8px; }
.contact-info a:hover { color: var(--green); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 88px 24px;
  overflow: hidden;
  background: var(--black);
  border-top: none;
  border-bottom: none;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(172, 140, 102, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(12, 54, 44, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(280px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-band .section-label {
  margin-bottom: 14px;
  color: var(--gold);
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cta-band .btn-red, .cta-band .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.cta-band .btn-red:hover, .cta-band .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.cta-note a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-note a:hover { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--black);
  border-top: none;
  padding: 64px 24px 0;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--gold); }

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

/* About pro */
.about-pro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about-pro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.about-pro-img { position: sticky; top: 100px; }
.about-pro-img img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #eee;
}
.about-pro-badge {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  text-align: center;
}
.about-pro-badge strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 4px;
}
.about-pro-badge span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.about-pro-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.25;
  color: var(--black);
}
.about-pro-body p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-pro-body .lead {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-quote {
  margin: 32px 0;
  padding: 24px 0 24px 20px;
  border-left: 3px solid var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--black);
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-stats-row div strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 4px;
}
.about-stats-row div span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Blog */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.blog-card:first-child { padding-top: 0; }
.blog-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  background: #eee;
}
.blog-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--black);
}
.blog-card h2 a:hover { color: var(--green); }
.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.blog-card .read {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}
.blog-card .read:hover { text-decoration: underline; }

/* Courses */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.course-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.course-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #eee;
}
.course-card .body { padding: 24px; }
.course-card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.course-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--black);
}
.course-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 18px;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in { opacity: 1; transform: translateY(0); }
[data-animate-left] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-animate-left].in { opacity: 1; transform: translateX(0); }
[data-animate-right] {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-animate-right].in { opacity: 1; transform: translateX(0); }

/* Mobile nav open state - light strip feel on black header */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open a {
    color: var(--muted);
    padding: 12px 0;
  }
  .nav.open a:hover, .nav.open a.active {
    color: var(--black);
    border-bottom: none;
  }
  .menu-btn { display: block; }
  .hero-stats { display: none; }
  .about-strip-inner,
  .services-grid,
  .contact-grid,
  .booking-layout,
  .service-detail,
  .service-detail.reverse,
  .footer-top,
  .about-pro-grid,
  .blog-card,
  .course-grid {
    grid-template-columns: 1fr;
  }
  .about-pro-img { position: static; }
  .about-stats-row { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 6;
  }
  .form-row { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
}
@media (max-width: 520px) {
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 12;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Press strip (homepage) */
.press-strip {
  padding: 48px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.press-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  margin-bottom: 18px;
}
.press-logos a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.press-logos a:hover { color: var(--black); }
.press-strip-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}
.press-strip-link:hover { text-decoration: underline; }

/* Press page list */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.press-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.press-item:first-child { padding-top: 0; }
.press-outlet {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-item h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.press-item h2 a:hover { color: var(--green); }
.press-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.press-item .press-go {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.press-item .press-go:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Blog article */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.article-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article-wrap h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.article-lead {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
  background: #eee;
}
.article-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25em;
}
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--black);
  margin: 2em 0 0.75em;
}
.article-body blockquote {
  margin: 2em 0;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--black);
  line-height: 1.5;
}
.article-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.article-back:hover { text-decoration: underline; }
.article-footer-nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
