@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --background: #fbfaf7;
  --foreground: #2c2c2c;
  --card: #f6f4ef;
  --muted: #6e6e6e;
  --accent: #8c8f8f;
  --border: #e4e0d8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
}

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

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

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  background: var(--foreground);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}

.brand img {
  width: auto;
  height: 64px;
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 32px;
  transform: translateX(-50%);
}

.nav-links a,
.mobile-menu a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--foreground);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s ease;
}

.icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.phone-link .icon {
  width: 14px;
  height: 14px;
}

.phone-link:hover {
  color: var(--foreground);
}

.menu-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  line-height: 1;
}

.menu-toggle .icon {
  width: 26px;
  height: 26px;
}

.menu-close,
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: inline;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  background: rgba(251, 250, 247, 0.99);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 150px 24px 96px;
  color: var(--white);
  animation: rise 0.9s ease both;
}

.hero-content img {
  width: auto;
  height: clamp(112px, 16vw, 176px);
  margin: 0 auto 32px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}

.hero h1,
.section-heading h1,
.copy-stack h2,
.service-list h2,
.service-card h2,
.value-grid h2,
.contact-cards h2,
.cta h2,
.footer h2,
.legal h1,
.legal h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}

.hero p {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-content div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: var(--white);
  color: var(--foreground);
}

.btn-dark {
  background: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  opacity: 0.9;
}

.section,
.split-section,
.page-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
}

.page-intro {
  padding-top: 150px;
  padding-bottom: 56px;
}

.card-band {
  max-width: none;
  background: var(--card);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.card-band.split-section {
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
}

.image-frame img {
  width: 100%;
  height: min(520px, 62vw);
  min-height: 360px;
  object-fit: cover;
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow,
.section-heading span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.copy-stack h2,
.section-heading h1 {
  color: var(--foreground);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.copy-stack p,
.section-heading p,
.service-card p,
.value-grid p,
.contact-cards p,
.footer p,
.legal p {
  color: var(--muted);
  line-height: 1.75;
}

.copy-stack p {
  margin: 0;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading p {
  margin: 20px auto 0;
  font-size: 18px;
}

.narrow {
  max-width: 980px;
  padding-top: 24px;
}

.service-list + .service-list {
  margin-top: 56px;
}

.service-list h2 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: clamp(28px, 4vw, 36px);
}

.service-list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  padding: 0;
  line-height: 1.6;
}

.service-note {
  margin: -10px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(228, 224, 216, 0.72);
}

.service-copy {
  min-width: 0;
}

.service-name {
  color: var(--foreground);
  font-weight: 600;
}

.service-meta {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.service-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-price {
  color: var(--foreground);
  font-weight: 600;
  white-space: nowrap;
}

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

.service-card {
  overflow: hidden;
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.service-card div {
  padding: 26px;
}

.service-card h2 {
  font-size: 28px;
}

.service-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.center-actions,
.cta-wrap {
  text-align: center;
}

.center-actions {
  margin-top: 44px;
}

.gallery-section {
  max-width: 1120px;
}

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

.gallery-item {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.value-grid article,
.contact-cards article,
.cta {
  background: var(--background);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.value-grid article {
  padding: 34px 26px;
  text-align: center;
}

.value-grid span,
.contact-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--card);
  color: var(--accent);
  border-radius: 50%;
}

.value-grid span .icon,
.contact-cards span .icon {
  width: 19px;
  height: 19px;
}

.value-grid span {
  margin-bottom: 18px;
}

.value-grid h2 {
  font-size: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-cards article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 30px;
}

.contact-cards h2 {
  font-size: 24px;
}

.contact-cards p {
  margin: 5px 0 0;
  font-size: 14px;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta {
  max-width: 1024px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 68px);
}

.cta h2 {
  font-size: clamp(36px, 5vw, 52px);
}

.cta p {
  max-width: 620px;
  margin: 16px auto 30px;
  font-size: 18px;
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 150px 24px 96px;
}

.legal h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 60px);
}

.legal .updated {
  margin: 14px 0 48px;
}

.legal-copy {
  display: grid;
  gap: 32px;
}

.legal h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.legal h3 {
  margin: 20px 0 8px;
  color: var(--foreground);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

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

.legal ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 24px;
}

.legal strong {
  color: var(--foreground);
}

.legal-callout {
  margin: 16px 0;
  padding: 24px;
  background: var(--card);
  border: 1px solid rgba(228, 224, 216, 0.7);
  border-radius: 18px;
}

.legal-callout.muted p {
  font-style: italic;
}

.legal-related {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal a {
  color: var(--foreground);
  text-decoration: underline;
}

.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 0.8fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.footer-logo {
  width: auto;
  height: 56px;
  margin-bottom: 20px;
}

.footer h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a,
.footer p {
  color: var(--muted);
  font-size: 14px;
}

.footer a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

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

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

@media (max-width: 900px) {
  .nav-links,
  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

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

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

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

  .gallery-item img {
    height: 210px;
  }

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

@media (max-width: 640px) {
  .navbar {
    padding-inline: 18px;
  }

  .brand img {
    height: 54px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-content div {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section,
  .split-section,
  .page-intro,
  .legal {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-list ul,
  .service-cards,
  .gallery-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 240px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-price {
    justify-self: start;
  }

  .image-frame img {
    height: 390px;
  }

  .map-frame {
    min-height: 360px;
  }

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