:root {
  --cream: #f7f1e8;
  --paper: #fffaf2;
  --ink: #28221d;
  --muted: #6f6258;
  --line: #ded1c1;
  --burgundy: #6f182b;
  --sage: #62735a;
  --forest: #253b32;
  --gold: #b68a4a;
  --rose: #dfc0b3;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(53, 37, 28, 0.16);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 1px 0 rgba(40, 34, 29, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.78;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.open .site-nav a:hover,
.site-header.open .site-nav a:focus-visible {
  background: rgba(111, 24, 43, 0.08);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--burgundy);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #51111f;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header.open .nav-toggle-lines {
  background: transparent;
}

.site-header.open .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.open .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.72) 0%, rgba(20, 18, 15, 0.42) 42%, rgba(20, 18, 15, 0.1) 76%),
    linear-gradient(0deg, rgba(20, 18, 15, 0.4), rgba(20, 18, 15, 0.02) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 132px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d3a1;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 8.4rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 500;
}

.hero-tagline {
  max-width: 620px;
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.22;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1.08rem;
}

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

.hero-actions {
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #51111f;
}

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

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

.hero-stats {
  margin: 44px 0 0;
}

.hero-stats div {
  width: 176px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.46rem;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.section,
.section-band,
.case-section,
.inquiry-section {
  padding: clamp(72px, 9vw, 130px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: var(--paper);
}

.intro-grid,
.split-grid,
.inquiry-grid,
.case-grid {
  display: grid;
  gap: clamp(36px, 6vw, 80px);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.intro-copy p,
.section-heading p,
.split-grid > div > p,
.inquiry-grid > div > p,
.case-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list,
.package-card ul,
.feature-columns ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.package-card li,
.feature-columns li {
  position: relative;
  padding-left: 24px;
  margin-top: 12px;
}

.check-list li::before,
.package-card li::before,
.feature-columns li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.package-link {
  display: inline-flex;
  margin-top: 22px;
  color: #f0c991;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 660px;
}

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

.package-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(53, 37, 28, 0.06);
}

.package-card.featured {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.package-card.featured li::before {
  background: var(--rose);
}

.package-top {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.price {
  margin: 0;
  color: var(--burgundy);
  font-weight: 900;
  font-size: 1.08rem;
}

.package-card.featured .price {
  color: #f0c991;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: #f1d3a1;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-section {
  background: #efe5d8;
}

.case-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
}

.case-image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.lead-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.checklist-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(53, 37, 28, 0.06);
}

.checklist-card .button {
  margin-top: 24px;
}

.page-hero {
  padding: 150px 0 80px;
  background: var(--paper);
}

.page-hero .section-inner {
  display: grid;
  gap: 24px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.page-hero .button-secondary {
  width: fit-content;
  color: var(--burgundy);
  border-color: var(--burgundy);
  background: transparent;
}

.page-nav-spacer .site-header {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 1px 0 rgba(40, 34, 29, 0.1);
  backdrop-filter: blur(14px);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(53, 37, 28, 0.06);
}

.case-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.case-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

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

.checklist-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.checklist-panel h3 {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--burgundy);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-list li {
  min-height: 258px;
  padding: 24px;
  background: var(--paper);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.2rem;
}

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

.split-section {
  background: var(--paper);
}

.split-grid,
.inquiry-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 64px;
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.inquiry-section .eyebrow {
  color: #f0c991;
}

.inquiry-section p {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(182, 138, 74, 0.55);
  outline-offset: 3px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #1b2722;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: start;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 16px 18px 22px;
    color: var(--ink);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: 0 22px 42px rgba(53, 37, 28, 0.16);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-header.open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    border-radius: var(--radius);
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .intro-grid,
  .case-grid,
  .lead-grid,
  .split-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .process-list,
  .page-grid,
  .case-gallery,
  .checklist-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .process-list li {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .site-nav {
    top: 70px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 18, 15, 0.78) 0%, rgba(20, 18, 15, 0.5) 68%, rgba(20, 18, 15, 0.22) 100%),
      linear-gradient(0deg, rgba(20, 18, 15, 0.48), rgba(20, 18, 15, 0.08) 42%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 112px 0 54px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.4rem);
  }

  .button,
  .hero-stats div {
    width: 100%;
  }

  .feature-columns,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }
}
