:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --surface-muted: #f3f0e8;
  --text: #111111;
  --text-soft: #5f5a52;
  --line: rgba(17, 17, 17, 0.08);
  --gold: #b8924f;
  --gold-deep: #8f6d35;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  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(184, 146, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

button {
  font: inherit;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 251, 248, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand img {
  width: clamp(140px, 20vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-soft);
}

.site-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: var(--text);
}

.hero-text,
.section-heading p,
.service-card p,
.reason-card p,
.footer-text {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 43rem;
  margin: 1.15rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d6bb82 100%);
  color: #17130c;
  box-shadow: 0 14px 32px rgba(184, 146, 79, 0.28);
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
}

.hero-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(184, 146, 79, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -12% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 79, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  filter: contrast(1.03);
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.align-left,
.align-left p,
.align-left h2 {
  text-align: left;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.section-accent {
  background: linear-gradient(180deg, rgba(243, 240, 232, 0.6), rgba(255, 255, 255, 0));
}

.services-grid,
.reasons-list {
  display: grid;
  gap: 1.25rem;
}

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

.service-card,
.reason-card,
.gallery-card,
.comparison-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
}

.service-card,
.reason-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
}

.service-card h3,
.reason-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

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

.reason-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(184, 146, 79, 0.16);
  color: var(--gold-deep);
  font-weight: 800;
}

.gallery-section {
  padding-top: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

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

.gallery-card-large {
  min-height: 520px;
}

.gallery-grid-comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.comparison-card {
  overflow: hidden;
  border-radius: 28px;
}

.comparison-frame {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 1rem 1rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 240, 232, 0.92)),
    radial-gradient(circle at top, rgba(184, 146, 79, 0.14), transparent 35%);
}

.comparison-frame img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: 22px;
}

.comparison-meta {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.25rem 1.4rem;
}

.comparison-meta p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
}

.footer-title,
.footer-label {
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--text-soft);
}

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

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--text-soft);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .choose-grid,
  .footer-grid,
  .gallery-grid,
  .services-grid,
  .reasons-list,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .gallery-card-large {
    min-height: auto;
  }

  .comparison-frame {
    min-height: 360px;
    padding-top: 0.85rem;
  }

  .comparison-frame img {
    max-height: 320px;
  }

  .cta-panel {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.12);
  }

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

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
