:root {
  color-scheme: light;
  --red: #c9070d;
  --red-dark: #98060a;
  --green: #0a3a34;
  --green-deep: #062a26;
  --green-ink: #0f2928;
  --gold: #d7bf72;
  --ink: #223035;
  --muted: #657174;
  --line: #dce2df;
  --soft: #f6f8f6;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(24, 36, 38, 0.16);
  --sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 72px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 342px;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.14;
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.wrap {
  width: min(100% - 84px, 1260px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(214, 221, 218, 0.9);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 212px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 0 28px;
}

.brand {
  display: block;
  width: 200px;
  max-width: 100%;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 34px);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.desktop-nav a,
.phone,
.footer-contact a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.phone:hover,
.footer-contact a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone {
  position: relative;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone::before {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  background: currentColor;
  clip-path: polygon(29% 0, 46% 3%, 58% 23%, 48% 37%, 61% 57%, 77% 50%, 96% 61%, 100% 78%, 90% 93%, 75% 100%, 47% 88%, 23% 65%, 7% 39%, 0 18%, 11% 5%);
  color: var(--red);
  content: "";
  vertical-align: -2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 25px;
  border: 1px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--red);
}

.button.secondary:hover {
  background: #fff7f7;
  color: var(--red-dark);
}

.menu-toggle,
.menu-close {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg,
.menu-close svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(2, 40, 32, 0.72);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  width: min(370px, calc(100% - 32px));
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.mobile-panel .brand {
  width: 220px;
  max-width: calc(100% - 64px);
}

.mobile-panel nav,
.mobile-panel .mobile-actions {
  display: grid;
  gap: 14px;
}

.mobile-panel nav {
  color: var(--ink);
  font-weight: 800;
}

.mobile-actions {
  margin-top: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  z-index: 3;
  min-height: 450px;
  overflow: visible;
  background: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 38%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.24) 59%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(6, 42, 38, 0.16) 100%);
  content: "";
}

.hero-scene {
  position: absolute;
  inset: 0 0 0 41%;
  z-index: -2;
  overflow: hidden;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.hero-layout {
  display: block;
}

.hero-copy {
  width: min(46vw, 470px);
  padding: 40px 0 12px;
}

.lead {
  max-width: 420px;
  margin-top: 16px;
  color: #404b4e;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.hero-actions .button {
  min-width: 150px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(35vw, 305px);
  margin-top: 22px;
}

.hero-proof div {
  min-height: 62px;
  padding: 0 14px 0 0;
  border-right: 1px solid var(--line);
}

.hero-proof div:not(:first-child) {
  padding-left: 16px;
}

.hero-proof div:last-child {
  border-right: 0;
}

.mini-icon {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}

.mini-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 800;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: #4f5b5e;
  font-size: 0.62rem;
  line-height: 1.45;
}

.standards-band {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
  color: var(--white);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.standards-grid > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 12px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.standards-grid > div:first-child {
  padding-left: 0;
}

.standards-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.standards-grid strong {
  grid-column: 2;
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.standards-grid p {
  grid-column: 2;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.4;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(215, 191, 114, 0.42);
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.standards-band .service-icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--gold);
}

.standards-band .service-icon svg {
  width: 28px;
  height: 28px;
}

.services-section {
  padding: 32px 0 42px;
  background: var(--white);
}

.testimonials-section {
  padding: 18px 0 0;
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  max-width: 610px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-label {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 4px 34px 8px;
  border-right: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.service-card:last-child {
  border-right: 0;
}

.service-card h3 {
  margin-top: 0;
  font-size: 0.94rem;
}

.service-card p {
  max-width: 180px;
  margin-top: 10px;
  color: #4f5b5e;
  font-size: 0.78rem;
  line-height: 1.68;
}

.amenities-section {
  padding: 54px 0 74px;
  border-top: 1px solid rgba(220, 226, 223, 0.7);
  background: var(--soft);
  color: var(--ink);
}

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 52px;
  align-items: center;
}

.amenities-copy {
  max-width: 470px;
}

.amenities-copy h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.amenities-copy > p:not(.section-label) {
  margin-top: 14px;
  color: #4f5b5e;
  font-size: 0.82rem;
  line-height: 1.68;
}

.amenities-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.amenities-list li {
  position: relative;
  padding-left: 22px;
}

.amenities-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.amenities-visual {
  min-width: 0;
}

.amenities-media {
  overflow: hidden;
  border: 1px solid rgba(220, 226, 223, 0.95);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(24, 36, 38, 0.1);
}

.amenities-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.amenities-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.amenities-products span {
  padding: 14px 8px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.owner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 312px;
  background: var(--white);
  color: var(--ink);
}

.owner-media img {
  width: 100%;
  height: 100%;
  min-height: 312px;
  object-fit: cover;
}

.owner-copy {
  display: flex;
  align-items: center;
  padding: 56px clamp(42px, 7vw, 128px) 56px 72px;
}

.owner-copy-inner {
  max-width: 540px;
}

.owner-section h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 2.65vw, 2.35rem);
  font-weight: 500;
}

.owner-copy p {
  margin-top: 14px;
  color: #4f5b5e;
  font-size: 0.76rem;
  line-height: 1.58;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 42px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.06rem;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  content: "✓";
  font-size: 0.74rem;
  font-weight: 800;
}

.check-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.check-list span {
  display: block;
  max-width: 365px;
  margin-top: 3px;
  color: #5e6a6d;
  font-size: 0.68rem;
  line-height: 1.38;
}

.process-section {
  padding: 32px 0 52px;
  background: var(--white);
}

.process-section .section-head {
  margin-bottom: 30px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-grid::before {
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #9fa7a6;
  content: "";
}

.process-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 24px;
  text-align: center;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.process-grid h3 {
  font-size: 0.78rem;
  font-weight: 800;
}

.process-grid p {
  max-width: 160px;
  margin-top: 10px;
  color: #4f5b5e;
  font-size: 0.72rem;
  line-height: 1.58;
}

.service-area-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.service-area-copy {
  max-width: 540px;
}

.service-area-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
}

.service-area-copy p:not(.section-label) {
  margin-top: 14px;
  color: #4f5b5e;
  font-size: 0.82rem;
  line-height: 1.68;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(24, 36, 38, 0.08);
}

.service-area-list span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 18px 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.quote-grid {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0 0 25px;
}

.quote-grid figure {
  width: 100%;
  padding: 0 30px 40px;
  text-align: center;
}

.quote-grid blockquote {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  color: #3f4a4d;
  font-size: 0.82rem;
  line-height: 1.6;
}

.quote-grid blockquote::before {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  content: "“";
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 0.7;
}

.quote-grid figcaption {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
}

.review-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
}

.review-link:hover {
  color: var(--red-dark);
}

.contact-section {
  padding: 0;
  background: var(--white);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 0;
  align-items: stretch;
  width: min(100%, 1260px);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 42px;
  background: var(--white);
  color: var(--ink);
}

.contact-panel h2 {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
}

.contact-panel > p:not(.section-label) {
  max-width: 380px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 22px;
}

input,
textarea {
  width: 100%;
  min-height: 26px;
  border: 1px solid #cfd6d3;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0 10px;
  outline: none;
  font-size: 0.72rem;
}

textarea {
  min-height: 48px;
  padding: 8px 10px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(210, 10, 17, 0.09);
}

.contact-form input[name="phone"],
.contact-form textarea,
.turnstile-wrap,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.turnstile-wrap {
  min-height: 65px;
}

.contact-form .button {
  width: 150px;
  min-height: 30px;
  padding: 0 18px;
  font-size: 0.7rem;
}

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

.form-note {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  margin-top: 15px;
  color: #8a9495;
  font-size: 0.7rem;
  font-weight: 700;
}

.contact-direct a {
  color: var(--red);
  font-weight: 800;
}

.contact-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.not-found-page {
  min-height: 100vh;
}

.thank-you-page {
  min-height: 100vh;
}

.not-found-hero {
  min-height: calc(100vh - 64px);
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.not-found-copy h1 {
  max-width: 680px;
}

.not-found-code {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found-note {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.not-found-visual {
  position: relative;
  min-height: 540px;
}

.not-found-visual img {
  width: 100%;
  height: 540px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.turnover-slip {
  position: absolute;
  right: -18px;
  bottom: 38px;
  display: grid;
  gap: 12px;
  width: min(280px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 31, 33, 0.16);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.turnover-slip strong {
  color: var(--ink);
  font-size: 1rem;
}

.turnover-slip span {
  position: relative;
  padding-left: 26px;
}

.turnover-slip span::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  color: var(--red);
  content: "✓";
  font-weight: 800;
}

.turnover-slip .missing {
  color: var(--ink);
}

.turnover-slip .missing::before {
  content: "!";
}

.site-footer {
  padding: 24px 0 14px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 230px 1fr 1fr 1.2fr 1fr;
  align-items: start;
  gap: 32px;
}

.site-footer .brand {
  width: 170px;
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  line-height: 1.35;
}

.footer-contact strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 188px minmax(290px, 1fr) auto;
    gap: 12px;
    padding: 0 18px;
  }

  .brand {
    width: 176px;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 0.68rem;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-actions .button {
    padding: 0 18px;
  }

  .phone {
    font-size: 0.72rem;
  }

  .wrap {
    width: min(100% - 84px, 1260px);
  }

  .hero-proof {
    width: min(35vw, 305px);
  }

  .standards-grid > div {
    padding-right: 26px;
    padding-left: 26px;
  }

  .service-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.25fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  h1 {
    max-width: clamp(430px, 36vw, 560px);
  }

  .hero {
    min-height: 468px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #ffffff 0%, #ffffff 31%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.24) 55%, rgba(255, 255, 255, 0) 69%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(6, 42, 38, 0.16) 100%);
  }

  .hero-scene {
    left: 35%;
  }

  .hero-scene img {
    content: url("/assets/concept-hero-lodge-recreated.jpg");
    object-fit: cover;
    object-position: right bottom;
  }

  .hero-copy {
    width: min(46vw, 560px);
  }

  .hero-proof {
    width: min(29vw, 405px);
  }

}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 70px;
    padding: 0 18px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .brand {
    width: 198px;
    max-width: 58vw;
  }

  .wrap {
    width: min(100% - 34px, 1260px);
  }

  .hero {
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero::before {
    display: none;
  }

  .hero-scene {
    position: relative;
    inset: auto;
    z-index: 0;
    height: 360px;
    margin-top: -10px;
  }

  .hero-scene img {
    content: url("/assets/concept-hero-lodge-mobile-focused.jpg");
    object-position: right bottom;
  }

  .hero-copy {
    width: 100%;
    padding: 44px 0 26px;
  }

  .lead {
    max-width: 600px;
  }

  .hero-proof,
  .standards-grid,
  .service-grid,
  .amenities-layout,
  .service-area-layout,
  .process-grid,
  .contact-layout,
  .footer-grid,
  .not-found-layout {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof div,
  .hero-proof div:not(:first-child) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .standards-grid > div,
  .standards-grid > div:first-child,
  .standards-grid > div:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .standards-grid > div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-card:last-child {
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .amenities-section {
    padding: 44px 0 58px;
    background: var(--soft);
  }

  .amenities-layout {
    gap: 30px;
  }

  .amenities-copy {
    max-width: none;
  }

  .amenities-products {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.63rem;
  }

  .service-area-layout {
    gap: 30px;
  }

  .service-area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-section {
    grid-template-columns: 1fr;
    width: min(100% - 34px, 1260px);
    margin: 0 auto;
  }

  .owner-copy {
    padding: 48px 17px 54px;
  }

  .owner-copy-inner {
    width: min(100%, 1260px);
    margin: 0 auto;
  }

  .owner-media img {
    min-height: 360px;
  }

  .process-grid {
    gap: 20px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article {
    justify-items: start;
    padding: 0 0 0 56px;
    text-align: left;
  }

  .process-grid span {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .process-grid p {
    max-width: none;
  }

  .contact-layout {
    width: min(100% - 34px, 1260px);
  }

  .contact-panel {
    padding: 48px 0 34px;
  }

  .contact-media img {
    min-height: 300px;
  }

  .footer-grid {
    gap: 22px;
  }

  .not-found-visual {
    min-height: 0;
  }

  .not-found-visual img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .turnover-slip {
    right: 16px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-actions,
  .contact-direct {
    display: grid;
  }

  .hero-actions .button,
  .mobile-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-scene {
    height: 340px;
  }

  .services-section,
  .amenities-section,
  .service-area-section,
  .process-section {
    padding: 48px 0;
  }

  .testimonials-section {
    padding-top: 8px;
  }

  .owner-media img {
    min-height: 300px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form input[name="phone"],
  .contact-form textarea,
  .turnstile-wrap,
  .contact-form .form-note {
    grid-column: auto;
  }

  .contact-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .not-found-hero {
    min-height: 0;
    padding: 54px 0 58px;
  }

  .turnover-slip {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }
}
