:root {
  --bg: #f6f1e8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: #ede4d7;
  --text: #172432;
  --muted: #596675;
  --line: rgba(32, 54, 77, 0.12);
  --line-soft: rgba(32, 54, 77, 0.08);
  --accent: #22374d;
  --accent-soft: #e4d7c6;
  --accent-tint: #f0ebe3;
  --button-text: #ffffff;
  --shadow: 0 22px 60px rgba(23, 36, 50, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.34)),
    linear-gradient(135deg, #f7f3eb 0%, #f3ece2 45%, #ece4d8 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 232, 0.88);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

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

.brand-logo {
  width: auto;
  height: 3.1rem;
  max-width: 10.5rem;
  object-fit: contain;
}

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

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

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

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

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.site-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 55, 77, 0.15), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(189, 170, 146, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 226, 214, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 55, 77, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 55, 77, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.34;
  pointer-events: none;
}

.hero-layout,
.two-column,
.contact-panel {
  display: grid;
  gap: 2rem;
}

.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 2.5rem;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.32);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-accent {
  padding-top: 2.5rem;
  padding-bottom: 5.5rem;
}

.section-label {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: 0.93;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.lead,
.hero-support,
.content-block p,
.service-card p,
.approach-item p,
.contact-copy,
.hero-card p,
.section-text,
.overview-card p {
  color: var(--muted);
  line-height: 1.85;
}

.lead {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.05rem;
}

.hero-support {
  max-width: 58ch;
  margin-top: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.88rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--button-text);
}

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

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card,
.overview-card,
.service-card,
.approach-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 231, 0.9));
}

.panel-kicker,
.card-tag,
.hero-card-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-kicker {
  margin-bottom: 0.9rem;
}

.hero-card h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1.4rem;
}

.hero-card-grid {
  display: grid;
  gap: 1.15rem;
}

.hero-card-grid > div {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-soft);
}

.hero-card-label {
  margin-bottom: 0.45rem;
}

.two-column {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.two-column-balanced {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-intro {
  max-width: 31rem;
}

.section-intro-center {
  max-width: 48rem;
  margin: 0 auto 2.35rem;
  text-align: center;
}

.section-text {
  margin-top: 1rem;
}

.content-block {
  display: grid;
  gap: 1.25rem;
}

.section-overview {
  padding-bottom: 2rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.overview-card,
.service-card {
  padding: 1.8rem;
}

.card-tag {
  margin-bottom: 1rem;
}

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

.approach-list {
  display: grid;
  gap: 1rem;
}

.approach-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
}

.approach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent);
  flex-shrink: 0;
}

.approach-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 235, 226, 0.92));
}

.contact-copy-block {
  max-width: 48rem;
}

.contact-copy {
  margin-top: 1rem;
  max-width: 58ch;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.28);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0 2rem;
}

.footer-brand {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

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

@media (max-width: 980px) {
  .hero-layout,
  .two-column,
  .overview-grid,
  .services-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .header-inner {
    position: relative;
    min-height: auto;
    padding: 1rem 0;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    z-index: 60;
    padding: 1.1rem 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

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

  .site-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav-list li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 0.85rem;
  }

  .site-nav-list li:last-child a {
    border-bottom: 0;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-panel {
    justify-content: start;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 3.25rem 0 3rem;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    height: 2.7rem;
    max-width: 8.75rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .overview-card,
  .service-card,
  .approach-item,
  .contact-panel {
    border-radius: 22px;
  }

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