:root {
  color-scheme: light;
  --ink: #18221d;
  --muted: #55635b;
  --forest: #173c2e;
  --forest-deep: #0b261d;
  --sage: #d9e1d7;
  --paper: #f6f1e8;
  --white: #ffffff;
  --wood: #b95727;
  --wood-dark: #843a1c;
  --gold: #d6a15d;
  --line: #d8ded8;
  --warning-bg: #fff7df;
  --warning-ink: #5e4515;
  --shadow: 0 22px 55px rgba(14, 39, 29, 0.12);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: 74rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--wood-dark);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--wood);
}

:focus-visible {
  outline: 3px solid #1870d5;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p,
ul {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--white);
  background: var(--forest-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 50rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 60, 46, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50% 50% 42% 58% / 55% 45% 55% 45%;
  color: var(--white);
  background: var(--wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-tagline {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-panel,
.nav-list {
  display: flex;
  align-items: center;
}

.nav-list {
  margin: 0;
  padding: 0;
  gap: 0.3rem;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--forest-deep);
  background: var(--paper);
}

.nav-list .nav-contact {
  margin-left: 0.35rem;
  color: var(--white);
  background: var(--forest);
}

.nav-list .nav-contact:hover,
.nav-list .nav-contact[aria-current="page"] {
  color: var(--white);
  background: var(--wood-dark);
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before { top: -0.34rem; }
.menu-icon::after { top: 0.34rem; }

.hero {
  position: relative;
  min-height: min(47rem, calc(100vh - 5rem));
  display: grid;
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.94) 0%, rgba(7, 27, 20, 0.72) 46%, rgba(7, 27, 20, 0.13) 79%),
    linear-gradient(0deg, rgba(7, 27, 20, 0.56) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding-block: clamp(5rem, 12vw, 8.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: var(--wood-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f4bf86;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--wood);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  color: var(--white);
  background: var(--wood-dark);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.button-dark:hover {
  background: var(--forest-deep);
}

.value-strip {
  position: relative;
  z-index: 3;
  margin-top: -1.4rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 60, 46, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-item {
  min-height: 8rem;
  padding: 1.5rem;
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.value-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.value-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-paper { background: var(--paper); }
.section-forest { color: var(--white); background: var(--forest-deep); }
.section-forest h2,
.section-forest h3 { color: var(--white); }
.section-forest p { color: rgba(255, 255, 255, 0.78); }

.section-heading {
  max-width: 49rem;
  margin-bottom: 2.6rem;
}

.section-heading p {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-forest .section-heading p { color: rgba(255, 255, 255, 0.76); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.split-reverse .split-media { order: 2; }

.split-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.link-arrow::after {
  content: "→";
  transition: transform 160ms ease;
}

.link-arrow:hover::after { transform: translateX(0.2rem); }

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

.card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-number {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--sage);
  font-size: 0.8rem;
  font-weight: 850;
}

.card p {
  color: var(--muted);
}

.card .link-arrow {
  margin-top: auto;
}

.check-list,
.product-list,
.legal-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.product-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid rgba(23, 60, 46, 0.13);
}

.check-list li::before,
.product-list li::before {
  position: absolute;
  left: 0.25rem;
  content: "◆";
  color: var(--wood);
  font-size: 0.7rem;
}

.notice {
  padding: 1rem 1.1rem;
  border: 1px solid #e4ca8c;
  border-radius: var(--radius-sm);
  color: var(--warning-ink);
  background: var(--warning-bg);
  font-size: 0.94rem;
}

.notice strong { color: inherit; }

.notice-spaced { margin-top: 1.25rem; }

.button-row-centered { justify-content: center; }

.page-hero {
  position: relative;
  min-height: 30rem;
  display: grid;
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--forest-deep);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-card {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(14, 39, 29, 0.08);
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2),
.gallery-card:nth-child(5) { grid-column: span 5; }

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.9rem 1rem 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 2rem;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.45rem;
  width: 2px;
  content: "";
  background: var(--sage);
}

.timeline-item {
  position: relative;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.timeline-item::before {
  position: absolute;
  top: 1.45rem;
  left: -1.95rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "";
  background: var(--wood);
  box-shadow: 0 0 0 1px var(--wood);
}

.timeline-item h3 { margin-bottom: 0.45rem; }
.timeline-item p { margin-bottom: 0; color: var(--muted); }

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.contact-main,
.contact-side {
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-main h2,
.contact-side h3 { color: var(--white); }
.contact-main p { max-width: 36rem; color: rgba(255, 255, 255, 0.78); }

.contact-side {
  background: rgba(255, 255, 255, 0.07);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a { color: var(--white); }

.legal-shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.legal-nav {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.legal-nav a {
  display: block;
  padding: 0.45rem 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-content h2 {
  margin-top: 2.8rem;
  font-size: 1.75rem;
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li { color: var(--muted); }

.status-panel {
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  text-align: center;
}

.status-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--warning-ink);
  background: #f2dfaa;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 4rem 2rem;
  color: rgba(255, 255, 255, 0.72);
  background: #071b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.site-footer .brand { color: var(--white); }
.site-footer .brand-tagline { color: rgba(255, 255, 255, 0.58); }
.footer-copy { max-width: 29rem; margin-top: 1rem; }
.footer-heading { margin-bottom: 0.8rem; color: var(--white); font: 800 0.76rem/1.2 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 0.55rem; }
.footer-links a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.84rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 64rem) {
  .nav-list a { padding-inline: 0.55rem; font-size: 0.86rem; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card:last-child { grid-column: 1 / -1; min-height: auto; }
}

@media (max-width: 52.5rem) {
  .header-inner { min-height: 4.5rem; }
  .brand-tagline { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header[data-js="true"] .nav-panel[data-open="false"] { display: none; }
  .nav-panel {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-list { width: 100%; display: grid; }
  .nav-list a { width: 100%; justify-content: flex-start; padding-inline: 0.85rem; }
  .nav-list .nav-contact { margin: 0.35rem 0 0; justify-content: center; }
  .hero { min-height: 43rem; }
  .hero::before,
  .page-hero::before {
    background: linear-gradient(0deg, rgba(7, 27, 20, 0.96) 0%, rgba(7, 27, 20, 0.73) 60%, rgba(7, 27, 20, 0.28) 100%);
  }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 0; }
  .value-item + .value-item { border-top: 1px solid var(--line); border-left: 0; }
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .contact-panel { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) { grid-column: span 6; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 38rem) {
  .container,
  .narrow { width: min(calc(100% - 1.25rem), var(--container)); }
  .brand-name { font-size: 1.13rem; }
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .hero-content { padding-block: 4.5rem; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  .card:last-child { grid-column: auto; }
  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row { display: none; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { color: #000; }
  .section { padding-block: 1.5rem; }
}
