:root {
  --cream-50: #fffaf4;
  --cream-100: #fbf3ea;
  --sand-200: #eddcca;
  --sage-500: #73896d;
  --clay-500: #cb754f;
  --clay-600: #b76340;
  --ink-700: #40352d;
  --ink-500: #6f6258;
  --line-warm: rgba(203, 117, 79, 0.22);
  --line-soft: rgba(64, 53, 45, 0.1);
  --panel: rgba(255, 252, 247, 0.86);
  --shadow-soft: 0 24px 56px rgba(91, 63, 45, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-700);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(203, 117, 79, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(115, 137, 109, 0.12), transparent 24%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 244, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(203, 117, 79, 0.26);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(203, 117, 79, 0.16), rgba(115, 137, 109, 0.16));
  color: var(--clay-500);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-eyebrow,
.kicker,
.card-tag,
.info-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-eyebrow {
  color: var(--ink-500);
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
}

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

.nav a,
.text-link {
  text-decoration: none;
  color: var(--ink-700);
}

.nav a:hover,
.text-link:hover {
  color: var(--clay-600);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-compact {
  padding-bottom: 1rem;
}

.hero-panel,
.section-panel,
.info-card {
  border: 1px solid var(--line-warm);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.hero-panel,
.section-panel {
  border-radius: var(--radius-xl);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  padding: 2rem;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.info-card h2,
.service-card h3 {
  margin: 0;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.info-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  max-width: 10ch;
}

.lede,
.section-heading p,
.service-card p,
.info-card p {
  color: var(--ink-500);
  line-height: 1.8;
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 0;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--clay-500);
  color: #fff;
  box-shadow: 0 18px 30px rgba(203, 117, 79, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-soft);
  background: transparent;
}

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

.info-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.info-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(244, 234, 222, 0.94));
}

.info-label,
.kicker,
.card-tag {
  color: var(--clay-500);
}

.mini-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-500);
  line-height: 1.9;
}

.intro,
.services {
  padding-bottom: 1.5rem;
}

.section-panel {
  padding: 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.section-heading p {
  max-width: 40rem;
  margin: 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(203, 117, 79, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 241, 232, 0.92));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 117, 79, 0.34);
  box-shadow: 0 16px 34px rgba(91, 63, 45, 0.08);
}

.service-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.service-card a {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  color: var(--clay-500);
}

.service-card a::after {
  content: " ›";
}

.service-card a:hover {
  color: var(--ink-700);
}

.footer {
  padding: 1rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-500);
}

@media (max-width: 980px) {
  .hero-panel,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

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

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 1.25rem, 1160px);
  }

  .topbar-inner {
    align-items: start;
    flex-direction: column;
    padding: 0.85rem 0;
  }

  .topbar {
    position: static;
  }

  .brand {
    width: 100%;
  }

  .nav {
    width: 100%;
    gap: 0.65rem;
  }

  .nav a {
    flex: 1 1 calc(50% - 0.65rem);
    min-width: 0;
    text-align: center;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.85);
  }

  .hero {
    padding-top: 1.75rem;
  }

  .hero-panel,
  .section-panel {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
    line-height: 0.98;
    max-width: none;
  }

  .lede,
  .section-heading p,
  .service-card p,
  .info-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions,
  .section-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 1.65rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 1rem, 1160px);
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-eyebrow,
  .kicker,
  .card-tag,
  .info-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-panel,
  .section-panel,
  .info-card,
  .service-card {
    border-radius: 20px;
  }

  .hero-copy h1,
  .section-heading h1,
  .section-heading h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .nav a {
    flex-basis: 100%;
  }
}
