/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --grey-dark: #2c2c2c;
  --grey: #6b6b6b;
  --grey-light: #c8c8c8;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --paper: #fbfaf7;
  --sage: #60746a;
  --clay: #b46a4d;
  --ink-soft: #26231f;
  --fb-blue: #1877f2;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-family: 'Manrope', sans-serif;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #333; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-fb { background: var(--fb-blue); color: var(--white); }
.btn-fb:hover { background: #1565d8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(24,119,242,0.3); }

.btn-nav { background: var(--black); color: var(--white); padding: 10px 22px; font-size: 0.875rem; border-radius: 8px; }
.btn-nav:hover { background: #333; }

.btn-hero-primary {
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 700;
}
.btn-hero-primary:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 16px 24px; }
.logo { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.2px; color: var(--black); flex-shrink: 0; text-decoration: none; }
.logo span { color: var(--sage); }
.nav-links { display: flex; list-style: none; gap: 24px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--grey); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.burger { display: none; border: 0; background: transparent; font: inherit; font-size: 1.5rem; cursor: pointer; margin-left: auto; color: var(--black); padding: 4px 0; line-height: 1; }
.mobile-menu { display: none; flex-direction: column; list-style: none; padding: 16px 24px 20px; border-top: 1px solid var(--off-white); gap: 16px; }
.mobile-menu a { text-decoration: none; color: var(--grey); font-weight: 500; font-size: 1rem; }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) { .nav-links, .btn-nav { display: none; } .burger { display: block; } }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(180,106,77,0.26), transparent 34%),
    linear-gradient(to bottom, rgba(13,13,13,0.28) 0%, rgba(13,13,13,0.72) 58%, rgba(13,13,13,0.94) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px 40px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.hero-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e4c7b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.hero-social-proof p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.hero-social-proof a { color: rgba(255,255,255,0.9); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.2s; }
.hero-social-proof a:hover { border-color: rgba(255,255,255,0.7); }

.hero-badges-bar { position: relative; z-index: 2; background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(8px); }
.hero-badges { display: flex; gap: 0; flex-wrap: wrap; padding: 0; }
.badge {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.3px;
}
.badge:last-child { border-right: none; }

/* ===== LEAD PHOTO STRIP ===== */
.lead-strip {
  background: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(13,13,13,0.08);
  overflow: hidden;
}
.lead-strip-track {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.25fr 1fr 0.9fr;
  gap: 12px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}
.lead-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 14px 36px rgba(38,35,31,0.1);
}
.lead-strip img:nth-child(3) { object-position: center 64%; }
@media (max-width: 760px) {
  .lead-strip-track { display: flex; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
  .lead-strip img { min-width: 72vw; height: 150px; scroll-snap-align: start; }
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--black); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat { padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.stat:last-child { border-right: none; }
.stat h2 { font-size: 3rem; font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat h2 span { font-size: 1.8rem; color: var(--grey); }
.stat p { color: var(--grey); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ===== SECTION SHARED ===== */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--grey);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 1.1;
}
section h2 span { color: var(--sage); font-style: italic; }
.section-sub { color: var(--grey); font-size: 1rem; max-width: 480px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  background: var(--ink-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  transition: background 0.25s;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; transition: color 0.25s; }
.service-card p { color: var(--grey); font-size: 0.875rem; line-height: 1.6; flex: 1; transition: color 0.25s; }
.service-link { color: var(--black); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: auto; transition: color 0.25s; }
.services-cta { text-align: center; margin-top: 48px; }

/* ===== BOOKING PROCESS ===== */
.booking-process { padding: 96px 0; background: var(--ink-soft); color: var(--white); }
.booking-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}
.booking-copy .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.68); }
.booking-copy h2 { color: var(--white); }
.booking-copy h2 span { color: #d6b4a4; }
.booking-copy p:not(.section-tag) {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 520px;
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.booking-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px;
  min-height: 260px;
}
.booking-step span {
  display: inline-flex;
  color: #d6b4a4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 34px;
}
.booking-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.booking-step p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (max-width: 940px) {
  .booking-inner,
  .booking-steps { grid-template-columns: 1fr; }
  .booking-step { min-height: auto; }
  .booking-step span { margin-bottom: 20px; }
}

/* ===== SCOPE ===== */
.scope-section { padding: 100px 0; background: #efeee8; }
.scope-inner { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 44px; align-items: start; }
.scope-intro {
  position: sticky;
  top: 110px;
}
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.scope-card {
  background: var(--white);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--sage);
}
.scope-card-dont { border-top-color: var(--clay); }
.scope-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; }
.scope-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scope-list li {
  position: relative;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: 24px;
}
.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.scope-card-dont .scope-list li::before { background: var(--clay); }
@media (max-width: 960px) {
  .scope-inner { grid-template-columns: 1fr; }
  .scope-intro { position: static; }
}
@media (max-width: 700px) {
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { padding: 28px; }
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #efeee8; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 45%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-founder-badge {
  position: absolute;
  top: 24px; left: -12px;
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
}
.about-founder-badge strong { font-size: 0.9rem; display: block; }
.about-founder-badge p { font-size: 0.75rem; color: var(--grey-light); margin: 0; }

.about-text p { color: var(--grey); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; margin-bottom: 32px; }
.about-badge {
  background: var(--white);
  border: 1px solid #e8e8e8;
  color: var(--black);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-item p { color: var(--grey); font-size: 0.875rem; line-height: 1.65; }

/* ===== COVERAGE ===== */
.coverage-section { padding: 100px 0; background: var(--ink-soft); color: var(--white); overflow: hidden; }
.coverage-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}
.coverage-copy .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.62); }
.coverage-copy h2 { color: var(--white); }
.coverage-copy h2 span { color: #d6b4a4; }
.coverage-copy p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.coverage-copy .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.coverage-copy .btn-outline-dark:hover {
  background: var(--white);
  color: var(--ink-soft);
}
.coverage-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.84);
  font-weight: 700;
  font-size: 0.9rem;
}
.area-cloud span:nth-child(4n),
.area-cloud span:nth-child(9n) {
  background: #d6b4a4;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .coverage-inner { grid-template-columns: 1fr; }
}

/* ===== FAQS AND TERMS ===== */
.faqs-section { padding: 100px 0; background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(13,13,13,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--sage);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 24px 24px;
}
.terms-panel {
  margin-top: 72px;
  background: #efeee8;
  border-radius: 8px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}
.terms-copy p:not(.section-tag) {
  color: var(--grey);
  line-height: 1.75;
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.terms-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(13,13,13,0.07);
}
.terms-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.terms-card p { color: var(--grey); font-size: 0.86rem; line-height: 1.65; }
@media (max-width: 900px) {
  .faq-grid,
  .terms-panel,
  .terms-grid { grid-template-columns: 1fr; }
  .terms-panel { padding: 30px; }
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: #efeee8; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.reviews-score {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--black);
}
.stars-row { color: #f59e0b; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 4px; }
.reviews-detail p { color: var(--grey); font-size: 0.9rem; }
.reviews-source { color: var(--black); font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.reviews-source:hover { text-decoration: underline; }

.reviews-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid transparent;
  transition: all 0.25s;
}
.review-card:hover { border-color: #e8e8e8; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.featured-review { background: var(--black); color: var(--white); }
.featured-review .review-text { color: rgba(255,255,255,0.85); }
.featured-review .reviewer-meta { color: rgba(255,255,255,0.5); }
.featured-review .reviewer-info strong { color: var(--white); }

.review-header { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--off-white);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.featured-review .reviewer-avatar { background: rgba(255,255,255,0.15); color: var(--white); }
.reviewer-info strong { font-size: 0.9rem; display: block; }
.reviewer-meta { font-size: 0.78rem; color: var(--grey); }
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-left: auto; flex-shrink: 0; }
.review-text { font-size: 0.9rem; line-height: 1.7; color: var(--grey-dark); font-style: italic; flex: 1; }
.review-footer { margin-top: auto; }
.review-logo { height: 16px; opacity: 0.4; filter: grayscale(1); }
.featured-review .review-logo { filter: grayscale(1) invert(1); opacity: 0.5; }

.reviews-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ===== TEAM ===== */
.team { padding: 100px 0; background: var(--paper); }
.team-photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 58px;
}
.team-photo-feature img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.team-photo-copy {
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-photo-copy .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.72); }
.team-photo-copy h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.team-photo-copy p:last-child { color: rgba(255,255,255,0.68); line-height: 1.7; }
@media (max-width: 840px) {
  .team-photo-feature { grid-template-columns: 1fr; }
  .team-photo-feature img { height: 380px; }
}
.team-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 20px;
}
.team-grid { display: grid; gap: 24px; }
.team-grid-2 { grid-template-columns: repeat(2, 1fr); }
.team-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .team-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid-2 { grid-template-columns: 1fr; } .team-grid-4 { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid transparent;
  overflow: hidden;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #e8e8e8; }

.team-card-large { text-align: left; padding: 36px; }
.team-card-inner { display: flex; gap: 24px; align-items: flex-start; }
@media (max-width: 560px) { .team-card-inner { flex-direction: column; align-items: center; text-align: center; } }

.team-avatar {
  width: 64px; height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  margin: 0 auto 16px;
}
.team-avatar-photo {
  width: 92px;
  height: 92px;
  background: transparent;
  overflow: hidden;
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.team-card-large .team-avatar { margin: 0; }
.team-avatar-lg { width: 92px; height: 92px; font-size: 1.8rem; }

.team-card-photo {
  width: calc(100% + 64px);
  margin: -32px -32px 24px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #efeee8;
}
.team-card-photo-compact { aspect-ratio: 1 / 1.08; }
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.45s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }

.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--grey); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.team-bio { color: var(--grey); font-size: 0.875rem; line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--ink-soft); }
.gallery-tag { background: rgba(255,255,255,0.1); color: var(--grey-light); }
.gallery-h2 { color: var(--white); }
.gallery-h2 span { color: rgba(255,255,255,0.4); }
.gallery-sub { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery-item { overflow: hidden; border-radius: 8px; position: relative; }
.gallery-item.gallery-featured { grid-column: span 2; grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; }

.gallery-cta { text-align: center; margin-top: 40px; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.gallery-featured { grid-column: span 2; grid-row: span 1; height: 240px; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-item { height: 160px; }
}

/* ===== HOURS ===== */
.hours-section { padding: 100px 0; background: #efeee8; }
.hours-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 860px) { .hours-inner { grid-template-columns: 1fr; gap: 48px; } }

.hours-text p { color: var(--grey); font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-info-item { font-size: 0.9rem; color: var(--grey); display: flex; gap: 10px; align-items: center; }
.contact-info-item a { color: var(--black); text-decoration: none; font-weight: 500; }
.contact-info-item a:hover { text-decoration: underline; }

.hours-card { background: var(--white); border-radius: 8px; padding: 40px; box-shadow: var(--shadow-lg); }
.hours-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.875rem; padding-bottom: 12px; border-bottom: 1px solid var(--off-white); }
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:first-child { font-weight: 600; }
.hours-list li span:last-child { color: var(--grey); }
.hours-list li.closed span { color: var(--grey-light); }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand .logo span { color: var(--grey); }
.footer-brand p { color: var(--grey); font-size: 0.82rem; margin-top: 4px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  transition: all 0.2s;
}
.social-link:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-col a { color: var(--grey); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--white); }

.footer-bottom { text-align: center; padding: 24px; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
