:root {
  --bg: #0d0d0f;
  --panel: rgba(19, 19, 22, 0.84);
  --panel-strong: #141417;
  --surface: #18181d;
  --surface-soft: #202026;
  --text: #f4efe8;
  --muted: #b8afa5;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c39b6a;
  --accent-soft: rgba(195, 155, 106, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(195, 155, 106, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #09090b 0%, #111114 45%, #0e0e10 100%);
  color: var(--text);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin-top: 12px;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(195, 155, 106, 0.24), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(195, 155, 106, 0.34);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(195, 155, 106, 0.34);
  background: #121216;
}

.brand-copy {
  display: grid;
  line-height: 1;
  gap: 4px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.social-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero,
.section,
.footer {
  margin-top: 28px;
}

.hero {
  display: grid;
  gap: 22px;
  padding: 34px 0 0;
}

.hero-copy,
.hero-panel,
.intro-card,
.team-card,
.service-note,
.booking-copy,
.booking-form,
.review-card,
.map-card,
.contact-card,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px 28px;
  background:
    linear-gradient(135deg, rgba(195, 155, 106, 0.18), transparent 45%),
    rgba(14, 14, 17, 0.9);
}

.eyebrow,
.card-label,
.booking-banner {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.eyebrow,
.card-label {
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.6rem, 11vw, 6.8rem);
  max-width: 8ch;
}

.hero-lead {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 18px 0 0;
}

.hero-actions,
.hero-badges,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-badges {
  margin-top: 30px;
}

.hero-badges span,
.booking-banner {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #edd7ba;
  border: 1px solid rgba(195, 155, 106, 0.25);
}

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

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

.button-primary {
  background: linear-gradient(135deg, #d8b181, #bc8a54);
  color: #171411;
  font-weight: 800;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.hero-panel {
  overflow: hidden;
  padding: 18px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 25%),
    linear-gradient(135deg, rgba(195, 155, 106, 0.18), transparent 48%),
    #121216;
}

.hero-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    linear-gradient(160deg, rgba(195, 155, 106, 0.16), transparent 42%);
  border: 1px solid var(--line);
}

.hero-media-stack {
  position: relative;
  min-height: 260px;
  margin-bottom: 22px;
}

.hero-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-main {
  height: 270px;
}

.hero-image-accent {
  position: absolute;
  right: 14px;
  bottom: -22px;
  width: 42%;
  height: 150px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.hero-card p,
.intro-card p,
.service-note p,
.booking-copy p,
.review-card p,
.contact-list,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metrics li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics strong,
.service-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--text);
}

.hero-metrics span,
.service-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 18px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.intro-grid,
.services-layout,
.booking-layout,
.location-layout {
  display: grid;
  gap: 18px;
}

.intro-card,
.service-note,
.booking-copy,
.contact-card,
.cta-panel {
  padding: 26px;
}

.tone-card h3,
.contact-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.feature-list,
.profile-list,
.contact-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list,
.profile-list,
.contact-list {
  display: grid;
  gap: 12px;
}

.feature-list li,
.profile-list li,
.contact-list li {
  padding-left: 18px;
  position: relative;
}

.feature-list li::before,
.profile-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.team-grid,
.reviews-grid,
.services-grid,
.footer {
  display: grid;
  gap: 18px;
}

.team-card {
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 24px;
}

.team-meta p {
  color: var(--accent);
  margin-top: 6px;
}

.team-card p,
.profile-list {
  color: var(--muted);
  line-height: 1.75;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.service-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-card.featured {
  background:
    linear-gradient(135deg, rgba(195, 155, 106, 0.16), transparent 60%),
    var(--surface);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
}

.booking-form {
  padding: 24px;
}

.booking-stack {
  display: grid;
  gap: 18px;
}

.booking-widget-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 20px;
}

.booking-widget-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.booking-widget-header h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

.booking-meta {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.booking-meta p {
  margin: 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid span {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select {
  min-height: 52px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 14px;
}

.form-grid input::placeholder {
  color: #8c857f;
}

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

.form-note,
.form-feedback {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-feedback {
  min-height: 1.6em;
  color: #e3c6a2;
}

.calendly-widget-frame {
  min-height: 760px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.review-card {
  padding: 24px;
}

.stars {
  color: #f4c98c;
  letter-spacing: 0.16em;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.75;
}

.map-card {
  overflow: hidden;
}

.map-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at 20% 20%, rgba(195, 155, 106, 0.18), transparent 20%),
    linear-gradient(135deg, #303038, #17171b);
}

.map-placeholder span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.map-placeholder p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  max-width: 12ch;
  margin: 10px 0 22px;
}

.social-links {
  margin-top: 24px;
}

.social-links a,
.footer-links a {
  color: var(--muted);
}

.cta-panel {
  text-align: center;
  padding: 38px 26px;
  background:
    linear-gradient(135deg, rgba(195, 155, 106, 0.16), transparent 45%),
    rgba(16, 16, 19, 0.92);
}

.cta-panel p {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 0 10px;
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 30ch;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding: 12px 0 32px;
  color: #8d847b;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (min-width: 740px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .intro-grid,
  .services-layout,
  .location-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .team-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 739px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-copy,
  .hero-panel,
  .intro-card,
  .team-card-body,
  .service-note,
  .booking-copy,
  .booking-form,
  .review-card,
  .contact-card,
  .cta-panel,
  .map-placeholder {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero-media-stack {
    min-height: 230px;
  }

  .hero-image-main {
    height: 230px;
  }

  .hero-image-accent {
    width: 48%;
    height: 116px;
    bottom: -12px;
    right: 10px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
