:root {
  --ink: #15110f;
  --ink-2: #241b18;
  --cream: #f7efe4;
  --cream-2: #efe0cf;
  --sage: #6f7f68;
  --moss: #273429;
  --copper: #c96d39;
  --ember: #f19a45;
  --clay: #9a4f32;
  --line: rgba(247, 239, 228, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: 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;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(21, 17, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 2px 0 7px;
}

.brand-logo::after {
  position: absolute;
  right: 1px;
  bottom: 0;
  left: 1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(247, 239, 228, 0.16), var(--ember), rgba(247, 239, 228, 0.12));
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2.3vw, 2.1rem);
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.brand-line {
  color: rgba(255, 215, 180, 0.82);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(247, 239, 228, 0.82);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(247, 239, 228, 0.1);
  color: var(--cream);
  outline: none;
}

.nav-toggle {
  flex: 0 0 auto;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(21, 17, 15, 0.44);
  color: var(--cream);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  padding: 140px clamp(20px, 5vw, 72px) 64px;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.92) 0%, rgba(21, 17, 15, 0.68) 42%, rgba(21, 17, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(21, 17, 15, 0.62) 0%, rgba(21, 17, 15, 0.08) 48%, rgba(21, 17, 15, 0.52) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: clamp(18px, 8vw, 120px);
  bottom: clamp(18px, 6vw, 90px);
  width: min(34vw, 420px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  box-shadow: 0 0 30px rgba(241, 154, 69, 0.9);
}

.hero-content {
  align-self: end;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #ffd7b4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 500;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(247, 239, 228, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button.primary {
  background: var(--ember);
  color: #21130d;
  box-shadow: 0 16px 38px rgba(201, 109, 57, 0.3);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffae58;
  outline: none;
}

.button.ghost {
  border-color: rgba(247, 239, 228, 0.35);
  background: rgba(247, 239, 228, 0.08);
  color: var(--cream);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(247, 239, 228, 0.16);
  outline: none;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 44px;
  width: min(330px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(247, 239, 228, 0.22);
  border-radius: 8px;
  background: rgba(21, 17, 15, 0.58);
  color: rgba(247, 239, 228, 0.84);
  backdrop-filter: blur(14px);
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.intro {
  background: var(--cream);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.intro h2,
.section-heading h2,
.split-content h2,
.retreat h2,
.contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 5.1rem);
  font-weight: 500;
}

.intro p,
.section-heading p,
.split-content p,
.retreat-copy p,
.contact-copy p {
  color: rgba(21, 17, 15, 0.7);
  font-size: 1.08rem;
}

.services {
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading p {
  color: rgba(247, 239, 228, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1d1714;
  box-shadow: var(--shadow);
}

.service-card.accent {
  background: var(--moss);
}

.service-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--ember);
  font-weight: 900;
}

.service-card h3,
.retreat-panel h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.service-card p {
  color: rgba(247, 239, 228, 0.73);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  background: var(--cream-2);
  color: var(--ink);
}

.split-media {
  min-height: 640px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 14px;
  border: 1px solid rgba(21, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(21, 17, 15, 0.78);
  font-weight: 750;
}

.retreat {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.5fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(39, 52, 41, 0.96), rgba(36, 27, 24, 0.95)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.retreat-copy {
  max-width: 780px;
}

.retreat-copy p {
  color: rgba(247, 239, 228, 0.75);
  font-size: 1.15rem;
}

.retreat-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(247, 239, 228, 0.2);
  border-radius: 8px;
  background: rgba(21, 17, 15, 0.42);
}

.retreat-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(247, 239, 228, 0.78);
}

.retreat-panel li {
  padding-left: 22px;
  background: linear-gradient(var(--ember), var(--ember)) 0 0.78em / 8px 2px no-repeat;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1c1512;
}

.experience-item {
  min-height: 190px;
  padding: clamp(28px, 5vw, 54px);
  border-right: 1px solid var(--line);
}

.experience-item:last-child {
  border-right: 0;
}

.experience-item strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.experience-item span {
  color: rgba(247, 239, 228, 0.72);
}

.experience-item.flame {
  background: var(--clay);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--cream);
  color: var(--ink);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(21, 17, 15, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(21, 17, 15, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.spam-field {
  position: absolute;
  left: -100vw;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 17, 15, 0.18);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  outline: none;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 48px;
  padding: 0 13px;
}

.inquiry-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(201, 109, 57, 0.15);
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: rgba(21, 17, 15, 0.62);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(247, 239, 228, 0.68);
}

.site-footer p {
  margin: 0;
}

.credits a {
  color: #ffd7b4;
}

@media (max-width: 920px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(21, 17, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    display: grid;
    min-height: 46px;
    align-items: center;
    border-radius: 6px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 88svh;
    padding-top: 120px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(21, 17, 15, 0.9), rgba(21, 17, 15, 0.54)),
      linear-gradient(0deg, rgba(21, 17, 15, 0.72), rgba(21, 17, 15, 0.12));
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin-top: 34px;
  }

  .intro-grid,
  .section-heading,
  .split-section,
  .retreat,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .experience {
    grid-template-columns: 1fr;
  }

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

  .service-number {
    margin-bottom: 42px;
  }

  .split-media {
    min-height: 360px;
  }

  .experience-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-item:last-child {
    border-bottom: 0;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding: 10px 16px;
  }

  .brand {
    max-width: calc(100vw - 86px);
  }

  .brand-name {
    font-size: clamp(1.12rem, 6.2vw, 1.36rem);
  }

  .brand-line {
    overflow: hidden;
    max-width: 100%;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
  }

  .site-nav {
    inset: 68px 10px auto 10px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 18px 34px;
  }

  .hero::after {
    right: 18px;
    bottom: 22px;
    width: 58vw;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 13.8vw, 4.1rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
  }

  .section,
  .split-content {
    padding-top: 54px;
    padding-right: 18px;
    padding-bottom: 58px;
    padding-left: 18px;
  }

  .intro h2,
  .section-heading h2,
  .split-content h2,
  .retreat h2,
  .contact h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .intro p,
  .section-heading p,
  .split-content p,
  .retreat-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .service-grid {
    gap: 10px;
  }

  .service-card {
    padding: 22px;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .split-media {
    min-height: 300px;
  }

  .pill-row {
    gap: 8px;
    margin-top: 22px;
  }

  .pill-row span {
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .retreat-panel,
  .inquiry-form {
    padding: 20px;
  }

  .experience-item {
    min-height: 0;
    padding: 30px 18px;
  }

  .experience-item strong {
    font-size: 2.3rem;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

@media (max-width: 380px) {
  .brand-line {
    display: none;
  }

  .brand-logo {
    padding-bottom: 5px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }
}
