:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.74);
  --text: #161311;
  --muted: #6a6258;
  --gold: #a56a2a;
  --gold-dark: #7b4a16;
  --line: rgba(22, 19, 17, 0.1);
  --shadow: 0 24px 50px rgba(37, 24, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(165, 106, 42, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(22, 19, 17, 0.05), transparent 24%),
    var(--bg);
}

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

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: #120f0d;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topbar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__item--right {
  margin-left: auto;
}

.topbar__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 19, 17, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2d251d, #0f0d0b);
  color: #f9efe1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__text {
  display: grid;
  gap: 0.15rem;
}

.brand__text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand__text small {
  color: var(--muted);
}

.nav__menu {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav__menu a {
  color: var(--muted);
  font-weight: 600;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--gold-dark);
}

.nav__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(22, 19, 17, 0.14);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.9rem;
  padding: 0.6rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--solid {
  background: linear-gradient(135deg, var(--gold), #c58a3c);
  color: #fff;
  box-shadow: 0 14px 30px rgba(165, 106, 42, 0.28);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: linear-gradient(135deg, var(--gold-dark), #b5762d);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(22, 19, 17, 0.1);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.8) 0%, rgba(12, 10, 8, 0.44) 44%, rgba(12, 10, 8, 0.16) 100%);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  color: #fff;
  max-width: 42rem;
}

.eyebrow,
.section__label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #e9d4bd;
}

.hero h1,
.section-heading h2,
.split h2,
.contact__panel h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  max-width: 10ch;
}

.hero__lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 40rem;
}

.hero__stats div {
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats strong {
  display: block;
  font-size: 1.2rem;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section {
  padding: 5.5rem 0;
}

.section--split {
  padding-top: 6rem;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.split__content,
.contact__panel,
.contact__details {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split__content {
  border-radius: 2rem;
  padding: clamp(1.8rem, 3vw, 3rem);
}

.split__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.split__content p {
  color: var(--muted);
  line-height: 1.9;
}

.split__content .button {
  margin-top: 0.5rem;
}

.split__visual img {
  width: 100%;
  min-height: 520px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(37, 24, 12, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.service-card > div {
  padding: 1.2rem 1.15rem 1.4rem;
}

.service-card__route {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.service-card__price {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.service-card__price strong {
  color: var(--text);
}

.section--contact {
  padding-bottom: 6.5rem;
}

.section--terms {
  padding-top: 2.5rem;
}

.terms {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 249, 240, 0.92));
  border: 1px solid rgba(22, 19, 17, 0.08);
  border-radius: 2rem;
  padding: clamp(1rem, 2.2vw, 1.8rem);
  box-shadow: var(--shadow);
}

.terms__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.terms__toggle {
  border: 1px solid rgba(22, 19, 17, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  min-height: 2.8rem;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.terms__toggle:hover,
.terms__toggle:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(22, 19, 17, 0.3);
}

.terms__content {
  margin-top: 1.2rem;
}

.terms__content[hidden] {
  display: none;
}

.terms__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.terms__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 14px 34px rgba(37, 24, 12, 0.08);
}

.terms__item h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.terms__item p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.terms__item p strong {
  color: var(--text);
}

.terms__item a {
  color: var(--gold-dark);
  font-weight: 600;
}

.terms__item--full {
  grid-column: 1 / -1;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.contact__panel,
.contact__details {
  border-radius: 2rem;
}

.contact__panel {
  padding: 2rem;
  background: linear-gradient(145deg, #1b1612, #241d17);
  color: #fff;
}

.contact__panel p:last-child {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.contact__panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.contact__details {
  padding: 0.4rem;
  display: grid;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.68);
}

.contact__details div {
  background: var(--panel-soft);
  border-radius: 1.5rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(22, 19, 17, 0.06);
}

.contact__details span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact__details strong {
  display: block;
  line-height: 1.5;
}

.footer {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(22, 19, 17, 0.08);
}

.footer__inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .split__visual img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.7rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(22, 19, 17, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    margin-left: 0;
  }

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

  .nav__menu a {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .nav__menu a:hover,
  .nav__menu a:focus-visible {
    background: rgba(165, 106, 42, 0.08);
  }

  .nav__cta {
    display: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.1rem, 1160px);
  }

  .topbar__inner {
    gap: 0.45rem 0.9rem;
  }

  .topbar__item--right {
    margin-left: 0;
  }

  .hero__content {
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

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

  .section {
    padding: 4rem 0;
  }
}