:root {
  --black: #090909;
  --charcoal: #151515;
  --ink: #242424;
  --muted: #6b6b6b;
  --line: #e6e0d8;
  --soft: #f6f2ec;
  --white: #ffffff;
  --bronze: #b78348;
  --bronze-dark: #8d6132;
  --gold: #d7ad70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
body::selection {
  background: var(--bronze);
  color: var(--white);
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 96px 0;
}

.section-dark {
  background: radial-gradient(circle at top right, rgba(183, 131, 72, 0.18), transparent 34%), var(--black);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(183, 131, 72, 0.55);
  border-radius: 50%;
  color: var(--bronze);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--bronze-dark);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  padding: 92px 0 78px;
  overflow: hidden;
}

.hero-grid,
.split-grid,
.about-grid,
.faq-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 5.6vw, 4.75rem);
}

h2 {
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 2.9vw, 2.85rem);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}

.hero-stats a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-stats a:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 173, 112, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border: 1px solid rgba(215, 173, 112, 0.45);
  border-radius: 50%;
  background: rgba(215, 173, 112, 0.08);
  color: var(--gold);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.review-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(215, 173, 112, 0.24);
  border-bottom: 1px solid rgba(215, 173, 112, 0.24);
  background: var(--black);
  color: var(--white);
}

.review-strip::before,
.review-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100px;
  content: "";
  pointer-events: none;
}

.review-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.review-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.review-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  animation: review-scroll 46s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-track span {
  display: inline-flex;
  align-items: center;
}

.review-track strong {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.signature-card,
.portrait-placeholder,
.image-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 131, 72, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.signature-card {
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-content: center;
  gap: 18px;
}

.signature-logo {
  width: min(280px, 82%);
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.large-mark {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 8rem;
  font-style: italic;
  line-height: 0.8;
}

.signature-card p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-placeholder {
  min-height: 220px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card .portrait-placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.trust-copy p,
.section-heading p,
.about p,
.area-card p,
.booking p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

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

.section-heading.light p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading.light .eyebrow {
  color: var(--gold);
}

.feature-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.three-col,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.process-grid article,
.area-card,
.faq-list details,
.consultation-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.feature-card,
.service-card {
  padding: 26px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border: 1px solid rgba(183, 131, 72, 0.35);
  border-radius: 50%;
  color: var(--bronze-dark);
  background: rgba(183, 131, 72, 0.08);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-card .image-placeholder {
  min-height: 164px;
  margin-bottom: 24px;
  border-style: dashed;
  border-radius: 22px;
  background: var(--soft);
  color: var(--bronze-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p,
.feature-card p,
.process-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-grid article {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.about-content {
  max-width: 820px;
}

.about-image {
  min-height: 520px;
  background: linear-gradient(135deg, var(--soft), #ffffff);
}

.text-link {
  color: var(--bronze-dark);
  font-weight: 900;
}

.area-card {
  padding: 34px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 900;
}

.faq-list p {
  padding-top: 12px;
}

.booking-grid {
  align-items: start;
}

.booking h2 {
  max-width: 620px;
}

.booking p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.booking .eyebrow {
  color: var(--gold);
}

.contact-card {
  display: grid;
  gap: 4px;
  max-width: 410px;
  margin-top: 32px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.7);
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.consultation-form .full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9d2ca;
  border-radius: 16px;
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 4px rgba(183, 131, 72, 0.16);
}

textarea {
  resize: vertical;
}

.footer {
  padding: 34px 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle-label {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--black);
    content: "";
    transition: transform 180ms ease;
  }

  .nav-toggle-label span::before {
    transform: translateY(-6px);
  }

  .nav-toggle-label span::after {
    transform: translateY(4px);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .faq-grid,
  .booking-grid,
  .three-col,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

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

  .about-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-padding {
    padding: 68px 0;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-stats,
  .hero-card,
  .consultation-form {
    grid-template-columns: 1fr;
  }

  .review-strip::before,
  .review-strip::after {
    width: 48px;
  }

  .review-track {
    gap: 28px;
    padding: 16px 0;
    font-size: 0.84rem;
  }

  .consultation-form {
    padding: 22px;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}