:root {
  --bg: #f4eee7;
  --bg-soft: #fcf8f3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-deep: #10343a;
  --surface-accent: #d7c2a3;
  --text: #142126;
  --muted: #55676b;
  --line: rgba(16, 52, 58, 0.12);
  --accent: #b4874a;
  --accent-deep: #8f6530;
  --success: #1f6f65;
  --shadow: 0 20px 55px rgba(16, 52, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 135, 74, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 111, 101, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f2eb 0%, #f4eee7 42%, #fbf8f5 100%);
  line-height: 1.65;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--surface-deep);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 235, 0.84);
  border-bottom: 1px solid rgba(16, 52, 58, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-deep), #1f5058);
  color: #f8f3ec;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--surface-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  width: 24rem;
  height: 24rem;
  background: rgba(180, 135, 74, 0.12);
  right: -6rem;
  top: -8rem;
}

.hero-section::after {
  width: 18rem;
  height: 18rem;
  background: rgba(31, 111, 101, 0.11);
  left: -6rem;
  bottom: -7rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--success);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.8rem;
}

.hero-text,
.section-heading p,
.service-card p,
.experience-card p,
.process-card p,
.reasons-list p,
.faq-card p,
.contact-copy p,
.contact-card p,
.trust-grid p {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--surface-deep), #17525a);
  box-shadow: 0 16px 30px rgba(16, 52, 58, 0.2);
}

.button-secondary {
  border: 1px solid rgba(16, 52, 58, 0.15);
  background: rgba(255, 255, 255, 0.56);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.hero-notes li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 52, 58, 0.08);
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.service-card,
.experience-card,
.process-card,
.faq-card,
.contact-card,
.trust-grid article,
.reasons-list article {
  border: 1px solid rgba(16, 52, 58, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.hero-card-feature {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(16, 52, 58, 0.96), rgba(16, 52, 58, 0.9)),
    var(--surface-deep);
  color: #f6eee5;
}

.hero-card-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 238, 229, 0.72);
}

.hero-card-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-card-text {
  margin: 1rem 0 0;
  color: rgba(246, 238, 229, 0.74);
}

.hero-stat {
  display: grid;
  gap: 0.3rem;
}

.hero-stat strong {
  font-size: 1.4rem;
  color: var(--surface-deep);
}

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

.trust-strip {
  padding: 0 0 2rem;
}

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

.trust-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.trust-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--surface-deep);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 30ch;
}

.section-heading.compact h2 {
  max-width: 26ch;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading > p:last-child,
.contact-copy > p:last-of-type {
  max-width: 68ch;
}

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

.service-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.service-card h3,
.process-card h3,
.faq-card h3,
.experience-card h3,
.reasons-list h3 {
  margin-bottom: 0.85rem;
  font-size: 1.6rem;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(180, 135, 74, 0.16), rgba(255, 255, 255, 0.76));
}

.experience-section {
  background:
    linear-gradient(180deg, rgba(16, 52, 58, 0.03), rgba(16, 52, 58, 0.07)),
    rgba(255, 255, 255, 0.35);
}

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

.experience-cards {
  display: grid;
  gap: 1rem;
}

.experience-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.experience-year {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(180, 135, 74, 0.16);
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card,
.faq-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-deep);
}

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

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

.reasons-list article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -6rem;
  bottom: -7rem;
  border-radius: 50%;
  background: rgba(180, 135, 74, 0.12);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 52, 58, 0.96), rgba(16, 52, 58, 0.92)),
    var(--surface-deep);
  color: #f6eee5;
}

.contact-card > div + div {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(246, 238, 229, 0.12);
}

.contact-label {
  margin: 0 0 0.35rem;
  color: rgba(246, 238, 229, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-card a,
.contact-card p:last-child {
  color: #f6eee5;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 52, 58, 0.1);
}

.footer-shell p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .experience-grid,
  .reasons-grid,
  .contact-grid,
  .trust-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 40rem;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 76px;
  }

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% - 0.2rem);
    padding: 0.6rem;
    border: 1px solid rgba(16, 52, 58, 0.1);
    border-radius: 1.25rem;
    background: rgba(252, 248, 243, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li + li {
    border-top: 1px solid rgba(16, 52, 58, 0.08);
  }

  .site-nav a {
    display: block;
    padding: 0.95rem 0.75rem;
  }

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

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

  .hero-section {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  h2 {
    max-width: 100%;
  }

  .services-grid,
  .reasons-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(1120px, calc(100vw - 1.25rem));
  }

  .section,
  .hero-section {
    padding: 4rem 0;
  }

  .hero-card,
  .service-card,
  .experience-card,
  .process-card,
  .faq-card,
  .contact-card,
  .trust-grid article,
  .reasons-list article {
    padding: 1.25rem;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
  }
}

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

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