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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  background-size: cover;
  background-position: 50% 80%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: 720px;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero-content .subtitle {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── Hero nav button ────────────────────────────────────── */

.hero-book-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}

.hero-book-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ── Scroll indicator ───────────────────────────────────── */

.scroll-down {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  translate: -50% 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, translate 0.2s;
}

.scroll-down:hover {
  opacity: 0.8;
  translate: -50% 6px;
}

/* ── Shared section styles ──────────────────────────────── */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* ── About ──────────────────────────────────────────────── */

.about .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #333;
}

.about-text p+p {
  margin-top: 1em;
}

.about-text .about-contact {
  margin-top: 2rem;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Section backgrounds ────────────────────────────────── */

.services,
.contact {
  background: #f7f5f2;
}

/* ── Values ─────────────────────────────────────────────── */

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

.value h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* ── Services ───────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid #d4cfc9;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.services-cta {
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #1a2d3d;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #2b4a5e;
}

/* ── Contact ─────────────────────────────────────────────── */

.contact .section-inner {
  max-width: 1100px;
}

.contact > .section-inner > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #333;
  max-width: 560px;
}

.contact-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.contact-actions p {
  font-size: 1rem;
  color: #333;
}

.contact a:not(.cta-button) {
  color: #1a2d3d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:not(.cta-button):hover {
  opacity: 0.7;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .about .section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 380px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .service-card h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
  }

  .expand-icon::before {
    content: '+';
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'Inter', system-ui, sans-serif;
    flex-shrink: 0;
  }

  .is-expanded .expand-icon::before {
    content: '−';
  }

  .service-card [data-expand-target="content"] {
    display: none;
  }

  .service-card [data-expand-target="content"].expanded {
    display: block;
    margin-top: 0.5rem;
  }
}
