:root {
  --ink: #141414;
  --muted: #62625f;
  --line: #ded9d2;
  --paper: #fbfaf7;
  --soft: #f3f0eb;
  --sage: #69786b;
  --rose: #a57670;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(222, 217, 210, 0.85);
  backdrop-filter: blur(18px);
}

.split-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand-mark {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.08);
}

.brand-mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 7.8rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-text,
.page-hero p,
.story-copy p,
.feature-card p,
.values-section p,
.contact-details p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.12);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.hero-visual::before {
  width: min(78vw, 460px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  width: min(60vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(105, 120, 107, 0.38);
  border-radius: 50%;
}

.hero-visual img {
  width: min(70vw, 410px);
  height: min(70vw, 410px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(20, 20, 20, 0.1));
}

.intro-section,
.values-section,
.story-layout,
.contact-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.feature-grid,
.values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.values-section article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.05);
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-band {
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: clamp(46px, 7vw, 84px) max(16px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--ink);
}

.contact-band .eyebrow {
  color: #c7d2c1;
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(42px, 6vw, 72px);
  text-align: center;
}

.page-hero h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.story-logo {
  min-height: 390px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-logo img {
  width: min(70vw, 330px);
  aspect-ratio: 1;
  object-fit: contain;
}

.story-copy {
  max-width: 680px;
}

.story-copy p {
  margin-bottom: 24px;
}

.values-section {
  padding-top: 20px;
}

.values-section article {
  min-height: 220px;
}

.contact-hero {
  padding-bottom: 24px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-details h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.65rem, 4vw, 3.6rem);
}

.contact-details p {
  max-width: 650px;
  margin-bottom: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

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

@media (max-width: 820px) {
  .split-nav {
    min-height: auto;
    padding: 14px 0 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-mark {
    grid-row: 1;
    justify-self: center;
    width: 92px;
  }

  .brand-mark img {
    width: 76px;
    height: 76px;
  }

  .nav-side {
    justify-content: center;
    gap: 24px;
  }

  .nav-left {
    grid-row: 2;
  }

  .nav-right {
    grid-row: 3;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
    text-align: center;
  }

  .hero-copy,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .contact-actions {
    justify-content: center;
  }

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

  .feature-grid,
  .values-section,
  .story-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .nav-side {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .nav-mail {
    display: none;
  }

  .button {
    width: 100%;
  }

  .story-logo {
    min-height: 280px;
  }
}
