:root {
  --ink: #25231f;
  --muted: #6c675e;
  --paper: #f8f6f1;
  --surface: #fffdf9;
  --line: #e5e0d6;
  --accent: #b86f4b;
  --accent-deep: #8e4e36;
  --accent-soft: #ead8c9;
  --dark: #292923;
  --white: #fffdf9;
  --shadow: 0 18px 48px rgba(55, 43, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--dark);
  text-decoration: none;
}

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

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

.narrow-container {
  width: min(760px, calc(100% - 3rem));
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(229, 224, 214, 0.85);
  background: rgba(248, 246, 241, 0.94);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-inner {
  min-height: 5.25rem;
}

.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2rem);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.site-nav a {
  padding: 0.5rem 0;
}

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

.hero {
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(5rem, 9vw, 8rem);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-intro h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 7vw, 6.15rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 2.25rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #713c2a;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  isolation: isolate;
}

.visual-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(73%, 335px);
  aspect-ratio: 0.76;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.7rem;
  color: var(--white);
  background: var(--accent);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(7deg);
}

.visual-label,
.visual-caption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-caption {
  color: rgba(255, 253, 249, 0.8);
}

.visual-mark {
  align-self: center;
  color: var(--accent-soft);
  font-size: clamp(7rem, 17vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.15em;
  line-height: 1;
  transform: translateX(-0.1em);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-24deg);
}

.orbit-one {
  width: 90%;
  height: 62%;
}

.orbit-two {
  width: 68%;
  height: 91%;
  border-color: rgba(184, 111, 75, 0.35);
  transform: translate(-50%, -50%) rotate(25deg);
}

.visual-dot {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent-deep);
}

.dot-one {
  top: 17%;
  right: 11%;
}

.dot-two {
  bottom: 14%;
  left: 9%;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent-soft);
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-light {
  background: var(--surface);
}

.two-column,
.brand-section,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 9vw, 9rem);
}

h2 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-copy,
.section-heading > p:last-child,
.brand-section > p,
.policy-content {
  color: var(--muted);
}

.section-copy p {
  max-width: 590px;
  margin-bottom: 1.3rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  min-height: 285px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.info-card-accent {
  color: var(--white);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.info-card p {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted);
}

.info-card-accent p {
  color: rgba(255, 253, 249, 0.78);
}

.card-number {
  margin-bottom: 5rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.info-card-accent .card-number {
  color: var(--accent-soft);
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.eyebrow-light {
  color: var(--accent-soft);
}

.brand-section > p {
  max-width: 540px;
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1.15rem;
}

.contact-details {
  align-self: end;
}

.company-name {
  margin-bottom: 0.65rem;
  font-weight: 650;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 650;
  text-underline-offset: 0.2em;
}

.text-link:hover {
  color: #713c2a;
}

.site-footer {
  padding: 2.25rem 0;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

.brand-footer {
  color: var(--ink);
  font-size: 1.15rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-intro {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-intro h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.lead {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.policy-section {
  background: var(--surface);
}

.policy-content {
  font-size: 1.04rem;
}

.policy-content > p:first-child {
  margin-bottom: 3.25rem;
  color: var(--ink);
  font-size: 1.18rem;
}

.policy-content h2 {
  margin-top: 3.25rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.045em;
}

.policy-content h2 + p {
  margin-bottom: 0;
}

.updated-date {
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
    max-width: 500px;
  }

  .two-column,
  .brand-section,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .brand-section > p,
  .contact-details {
    align-self: start;
  }

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

  .info-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow-container {
    width: min(100% - 2rem, 1120px);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.1rem 0 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.25rem 1.15rem;
  }

  .site-nav a {
    padding: 0.2rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1,
  .page-intro h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

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

  .visual-panel {
    width: min(70%, 250px);
  }

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

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
