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

:root {
  --bg: #f6f3ef;
  --bg-soft: #efe9e2;
  --paper: rgba(255,255,255,0.72);
  --paper-strong: rgba(255,255,255,0.88);
  --text: #171512;
  --muted: #625b54;
  --line: rgba(23, 21, 18, 0.1);
  --shadow: 0 24px 80px rgba(26, 21, 16, 0.12);
  --shadow-soft: 0 18px 50px rgba(26, 21, 16, 0.09);
  --radius: 24px;
  --radius-sm: 18px;
  --gold: #b69063;
  --gold-dark: #8e6f49;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 144, 99, 0.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.8), transparent 22%),
    linear-gradient(180deg, #f8f5f2 0%, #f3ede6 100%);
  overflow-x: hidden;
}

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

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

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 0, transparent 18%, transparent 82%, rgba(255,255,255,0.18) 100%);
  opacity: 0.5;
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.2));
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 239, 0.7);
  border-bottom: 1px solid rgba(23, 21, 18, 0.06);
}

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

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

.brand-logo {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a {
  transition: transform 0.25s ease, color 0.25s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.06);
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

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

.hero {
  padding-top: 66px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: 0 10px 25px rgba(23,21,18,0.05);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero-copy h1,
.section-head h2,
.spotlight-copy h2,
.about-copy h2,
.cta-copy h2 {
  margin: 0 0 18px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 11ch;
}

.hero-text,
.section-head p,
.service-card p,
.spotlight-copy p,
.about-copy p,
.review-card p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(26, 21, 16, 0.12);
}

.btn-primary {
  background: linear-gradient(180deg, #1b1916 0%, #11100e 100%);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.78);
  border-color: rgba(23, 21, 18, 0.1);
  color: var(--text);
}

.full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.hero-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow-soft);
}

.hero-points strong {
  display: block;
  margin-bottom: 6px;
}

.hero-points span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-strong);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

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

.hero-card-main {
  inset: 28px 0 0 56px;
}

.hero-card-floating {
  right: 30px;
  top: 0;
  width: 260px;
  height: 220px;
  padding: 18px;
  background: rgba(255,255,255,0.86);
}

.hero-card-floating img {
  object-fit: contain;
}

.hero-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  z-index: -1;
  opacity: 0.55;
}

.hero-blur-one {
  width: 300px;
  height: 300px;
  background: rgba(182, 144, 99, 0.22);
  right: 3%;
  top: 18%;
}

.hero-blur-two {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.85);
  left: -60px;
  bottom: 40px;
}

.trust-bar {
  padding: 22px 0;
  border-block: 1px solid rgba(23,21,18,0.08);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.trust-items {
  display: flex;
  gap: 18px 30px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.service-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.review-card:hover,
.gallery-card:hover,
.stats-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 144, 99, 0.12);
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.masonry {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "tall top"
    "tall bottom";
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

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

.tall {
  grid-area: tall;
  min-height: 730px;
}

.masonry .gallery-card:nth-child(2) {
  grid-area: top;
}

.masonry .gallery-card:nth-child(3) {
  grid-area: bottom;
}

.spotlight-grid,
.about-grid,
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.spotlight {
  overflow: hidden;
}

.spotlight-image,
.stats-card,
.contact-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow);
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 26px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.stat {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(23,21,18,0.08);
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-meta strong {
  font-size: 1rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-band {
  padding-bottom: 110px;
}

.cta-wrap {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58)),
    radial-gradient(circle at top right, rgba(182, 144, 99, 0.18), transparent 30%);
  border: 1px solid rgba(23,21,18,0.08);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 28px;
}

.contact-item + .contact-item {
  margin-top: 16px;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.contact-item strong,
.contact-item a {
  font-size: 1.04rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(23,21,18,0.08);
  background: rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
}

.footer-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand img {
  height: 50px;
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .spotlight-grid,
  .about-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 540px;
  }

  .hero-card-main {
    inset: 50px 0 0 0;
  }

  .hero-card-floating {
    width: 220px;
    height: 190px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(23,21,18,0.08);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

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

  .hero-copy h1 {
    max-width: none;
  }

  .service-grid,
  .review-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .tall,
  .masonry .gallery-card:nth-child(2),
  .masonry .gallery-card:nth-child(3) {
    grid-area: auto;
    min-height: 360px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 76px 0;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card-main {
    inset: 40px 0 0 0;
  }

  .hero-card-floating {
    right: 12px;
    top: 0;
    width: 170px;
    height: 150px;
    padding: 12px;
  }

  .cta-wrap,
  .review-card,
  .service-card,
  .stats-card,
  .contact-card {
    padding: 22px;
  }
}
