:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f2;
  --surface: #ece2d1;
  --surface-strong: #e4d7c0;
  --ink: #2a2722;
  --ink-soft: #5b564d;
  --ink-muted: #8a8170;
  --brand: #b5602f;
  --brand-dark: #a4542a;
  --brand-soft: #e7c9a6;
  --forest: #44503e;
  --line: #e2d9c9;
  --line-strong: #cdbb9a;
  --white: #fbf8f2;
  --header-height: 92px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 42px -24px rgba(42, 39, 34, 0.3);
  --shadow-card: 0 24px 54px -30px rgba(42, 39, 34, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  min-width: 320px;
}

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

a,
button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.container--narrow {
  width: min(900px, calc(100% - 36px));
}

.eyebrow {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9743f;
}

.display-title,
.section-title,
.page-title,
.cta-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display-title {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 16ch;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
}

.page-title {
  font-size: clamp(34px, 5vw, 56px);
}

.cta-title {
  font-size: clamp(30px, 4.4vw, 48px);
}

.lead,
.section-copy,
.page-copy,
.cta-copy {
  margin: 0;
  line-height: 1.65;
}

.lead {
  font-size: clamp(17px, 1.7vw, 19px);
}

.section-copy,
.page-copy,
.cta-copy {
  font-size: 16.5px;
}

.stack-12 > * + * {
  margin-top: 12px;
}

.stack-16 > * + * {
  margin-top: 16px;
}

.stack-18 > * + * {
  margin-top: 18px;
}

.stack-24 > * + * {
  margin-top: 24px;
}

.stack-32 > * + * {
  margin-top: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: none;
  padding: 15px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.mobile-nav-link:focus-visible,
.icon-link:focus-visible,
.faq-button:focus-visible,
.gallery-thumb:focus-visible,
.field:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.button--brand {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(181, 96, 47, 0.3);
}

.button--brand:hover,
.button--brand:focus-visible {
  background: var(--brand-dark);
}

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

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--forest);
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: #efe7d8;
}

.button--light-outline {
  background: rgba(251, 248, 242, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(251, 248, 242, 0.55);
}

.button--light-outline:hover,
.button--light-outline:focus-visible {
  background: rgba(251, 248, 242, 0.18);
}

.button--ghost {
  background: transparent;
  color: #a9743f;
  border: 1.5px solid #d9c7a8;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: #f0e8d8;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.muted {
  color: var(--ink-muted);
}

.accent {
  color: var(--brand);
}

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

.section-space {
  padding: clamp(56px, 8vw, 90px) 0;
}

.section-space--tight {
  padding: clamp(40px, 6vw, 72px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--overlay {
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
}

.pill-note {
  font-size: 14.5px;
  color: #d8cdb8;
}

.photo-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #e4d7c0, #c9b79a);
  display: grid;
  place-items: center;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(42, 39, 34, 0.05) 0 16px,
    transparent 16px 32px
  );
}

.photo-placeholder span,
.photo-placeholder strong {
  position: relative;
  z-index: 1;
  color: #8e7b59;
  text-align: center;
}

.page-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #a9743f;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-back-link:hover,
.page-back-link:focus-visible {
  color: var(--brand-dark);
}

.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;
}

@media (max-width: 880px) {
  .container,
  .container--narrow {
    width: min(100% - 28px, 1200px);
  }

  .section-space {
    padding-bottom: 84px;
  }
}
