:root {
  --paper: #f3efe6;
  --bone: #e8e2d5;
  --ink: #1c231f;
  --spruce: #294237;
  --spruce-dark: #1c2d26;
  --glacier: #9fb9c0;
  --clay: #d87861;
  --sage: #b8c2af;
  --gold: #d9c78d;
  --line: rgba(28, 35, 31, 0.2);
  --white: #fffdf8;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, 'Helvetica Neue', Arial, sans-serif;
  --max: 1480px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 1.35rem;
  --shadow: 0 30px 70px rgba(23, 31, 27, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
picture { display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 200;
  top: 0.75rem; left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 0.55rem var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(243, 239, 230, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; width: 225px; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.site-nav a, .header-call {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-nav a { position: relative; padding: 0.5rem 0; }
.site-nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0.25rem;
  height: 1px; background: currentColor;
  transition: right 180ms ease;
}
.site-nav a:hover::after { right: 0; }
.header-call { justify-self: end; border-bottom: 1px solid currentColor; padding-bottom: 0.2rem; }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  padding-top: 82px;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) clamp(3rem, 6vw, 6rem);
  background: var(--paper);
  border-right: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 1.4rem;
  font-size: 0.68rem;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 8.1rem);
  line-height: 0.87;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.hero h1 em { color: var(--spruce); font-weight: 400; }
.hero-intro {
  max-width: 38rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--spruce); }
.button--outline { border-color: currentColor; }
.button--outline:hover { background: var(--ink); color: var(--paper); }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: var(--gold); }
.text-link { font-size: 0.82rem; text-underline-offset: 0.25rem; }
.hero-signature {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 3rem;
  color: rgba(28,35,31,.7);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.hero-stage { position: relative; min-height: calc(100svh - 82px); background: var(--spruce); overflow: hidden; }
.hero-stage::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: clamp(2rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem) clamp(6.2rem, 11vw, 10rem) clamp(2rem, 4vw, 4.5rem);
  border-radius: calc(var(--radius) * 1.25);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo picture, .hero-photo img { width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; object-position: center 52%; filter: saturate(.78) contrast(.94); }
.hero-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(18,29,24,.78) 0%, rgba(18,29,24,.15) 60%, rgba(18,29,24,.05)); }
.hero-photo-copy {
  position: absolute; z-index: 1; inset: 0 auto 0 0;
  display: flex; flex-direction: column; justify-content: space-between;
  width: 54%; padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--white);
}
.hero-photo-copy span, .hero-photo-copy small { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-photo-copy strong { font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 5.5rem); line-height: .92; font-weight: 400; letter-spacing: -.04em; }
.hero-tile {
  position: absolute; z-index: 3;
  border-radius: 1rem;
  box-shadow: 0 24px 55px rgba(14,21,18,.22);
}
.hero-tile--cafe {
  right: clamp(1rem, 2.4vw, 2.5rem); bottom: 2.2rem;
  width: clamp(190px, 23vw, 310px);
  padding: 1.4rem 1.4rem 1.25rem;
  background: var(--gold);
  transform: rotate(2.5deg);
}
.hero-tile--cafe strong { display:block; margin-top: 1rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.5rem); line-height:.95; font-weight:400; }
.tile-kicker { font-size:.62rem; letter-spacing:.14em; }
.tile-dot { display:block; width: 11px; height: 11px; margin-top: 1.4rem; border-radius:50%; background: var(--clay); }
.hero-tile--note {
  left: 1.6rem; bottom: 2.2rem;
  width: clamp(220px, 27vw, 360px);
  padding: 1.25rem 1.5rem;
  color: var(--paper);
  background: var(--spruce-dark);
  transform: rotate(-1.5deg);
}
.hero-tile--note span { display:block; margin-bottom:.5rem; color: var(--glacier); font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; }
.hero-tile--note strong { font-family: var(--serif); font-size: clamp(1.15rem,1.6vw,1.65rem); font-weight:400; line-height:1.15; }
.hero-monogram {
  position: absolute; z-index: 2; top: 1.2rem; right: 1.4rem;
  width: 88px; height:88px; border:1px solid rgba(255,255,255,.8); border-radius:50%;
  color: var(--white); font-family:var(--serif); font-size:2.7rem;
}
.hero-monogram span:first-child { position:absolute; left:18px; top:3px; }
.hero-monogram span:last-child { position:absolute; right:13px; bottom:-5px; }

.work-section { padding: clamp(6rem, 12vw, 12rem) var(--gutter); }
.section-heading { max-width: 880px; margin-bottom: clamp(5rem, 10vw, 9rem); }
.section-heading h2, .services-section h2, .extras-section h2, .process-section h2, .about-section h2, .contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.4vw, 7.4rem);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -.045em;
}
.section-heading > p:last-child { max-width: 580px; margin: 2rem 0 0; font-size: 1.08rem; }

.direction {
  display: grid;
  grid-template-columns: minmax(240px,.55fr) minmax(0,1.45fr);
  gap: clamp(2.5rem, 6vw, 8rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto clamp(8rem, 16vw, 16rem);
}
.direction--reverse { grid-template-columns: minmax(0,1.45fr) minmax(240px,.55fr); }
.direction--reverse .direction-copy { order: 2; }
.direction-copy { align-self: start; padding-top: 1rem; }
.direction-number { display:block; margin-bottom: 3.5rem; padding-bottom: .7rem; border-bottom:1px solid var(--line); font-family:var(--serif); font-size:1.3rem; }
.direction-copy h3 { margin:0; font-family:var(--serif); font-size:clamp(3rem,5.1vw,6.3rem); line-height:.86; letter-spacing:-.05em; font-weight:400; }
.direction-copy > p:last-child { max-width: 420px; margin: 2rem 0 0; }
.direction-canvas { position:relative; min-width:0; }
.browser { position:relative; overflow:hidden; border-radius:var(--radius); box-shadow:var(--shadow); aspect-ratio: 16/10; }
.browser-bar {
  height: 45px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  padding:0 1rem; background:#f5f0e5; color:#223128; font-size:.55rem; letter-spacing:.12em; text-transform:uppercase;
}
.browser-bar > span:first-child::before { content:'●  ●  ●'; letter-spacing:.2em; opacity:.35; }
.browser-bar > span:last-child { justify-self:end; border:1px solid currentColor; border-radius:999px; padding:.28rem .65rem; }
.lodge-layout { display:grid; grid-template-columns:44% 56%; height:calc(100% - 45px); background:#253b31; color:#f1eadc; }
.lodge-copy { display:flex; flex-direction:column; padding:clamp(1.5rem,3vw,3.5rem); }
.mini-nav { display:flex; gap:1rem; font-size:.5rem; letter-spacing:.14em; text-transform:uppercase; }
.lodge-copy > p { margin:auto 0 .7rem; font-size:.55rem; letter-spacing:.16em; text-transform:uppercase; }
.lodge-copy h4 { margin:0; font-family:var(--serif); font-size:clamp(2.2rem,4.2vw,5.1rem); line-height:.89; font-weight:400; letter-spacing:-.045em; }
.lodge-copy a { align-self:flex-start; margin-top:1.4rem; padding-bottom:.25rem; border-bottom:1px solid currentColor; font-size:.6rem; text-decoration:none; text-transform:uppercase; letter-spacing:.14em; }
.lodge-image, .lodge-image img { width:100%; height:100%; }
.lodge-image img { object-fit:cover; filter:saturate(.72) contrast(.96); }
.phone {
  position:absolute; right:-3%; bottom:-11%; z-index:3; width:22%; min-width:155px; aspect-ratio:9/18;
  padding:1.7rem .9rem 1rem; border:7px solid #171c19; border-radius:2rem; background:#e7dcc4; box-shadow:0 20px 45px rgba(14,21,18,.25);
}
.phone-speaker { position:absolute; top:.6rem; left:50%; width:28%; height:4px; border-radius:999px; transform:translateX(-50%); background:#171c19; }
.phone span { font-size:.55rem; letter-spacing:.16em; text-transform:uppercase; }
.phone strong { display:block; margin:2.3rem 0 1rem; font-family:var(--serif); font-weight:400; font-size:clamp(1rem,1.7vw,1.65rem); line-height:.95; }
.phone small { font-size:.48rem; }
.phone-button { margin-top:auto; position:absolute; left:.9rem; right:.9rem; bottom:1rem; padding:.55rem; border-radius:999px; color:white; background:#294237; font-size:.48rem; text-align:center; text-transform:uppercase; letter-spacing:.1em; }

.browser--cafe { background:#dbd4c2; }
.cafe-top { display:flex; justify-content:space-between; align-items:center; height:44px; padding:0 1.1rem; font-size:.52rem; letter-spacing:.1em; }
.cafe-layout { position:relative; display:grid; grid-template-columns:45% 55%; height:calc(100% - 44px); }
.cafe-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(1.4rem,3vw,3.2rem); }
.cafe-copy p { max-width:16rem; margin:0 0 1.4rem; font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; }
.cafe-copy h4 { margin:0; font-family:var(--serif); font-size:clamp(2.5rem,4.4vw,5.3rem); font-weight:400; line-height:.86; letter-spacing:-.05em; }
.cafe-button { align-self:flex-start; margin-top:1.7rem; border:1px solid currentColor; border-radius:999px; padding:.55rem 1rem; font-size:.55rem; text-transform:uppercase; }
.cafe-image, .cafe-image img { width:100%; height:100%; }
.cafe-image img { object-fit:cover; filter:saturate(.88); }
.sticker { position:absolute; z-index:2; padding:.45rem 1rem; border-radius:999px; background:var(--clay); font-size:clamp(.7rem,1.3vw,1.2rem); letter-spacing:.06em; transform:rotate(5deg); }
.sticker--one { top:12%; left:38%; }
.sticker--two { right:5%; bottom:10%; transform:rotate(-4deg); background:var(--gold); }
.cafe-swatch { position:absolute; left:-3%; bottom:-9%; display:flex; gap:.5rem; padding:.8rem; border-radius:999px; background:var(--paper); box-shadow:0 14px 30px rgba(20,26,23,.15); }
.cafe-swatch span { width:20px; height:20px; border-radius:50%; background:var(--clay); }
.cafe-swatch span:nth-child(2) { background:#d8c989; }
.cafe-swatch span:nth-child(3) { background:#435947; }

.browser--service { background:#f4f1eb; }
.service-image, .service-image img { position:absolute; inset:0; width:100%; height:100%; }
.service-image img { object-fit:cover; filter:saturate(.55) contrast(.9); }
.service-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(245,241,233,.96) 0 45%,rgba(245,241,233,.08) 72%); }
.service-nav { display:flex; justify-content:space-between; padding:1.2rem 1.5rem; font-size:.52rem; letter-spacing:.11em; }
.service-copy { position:absolute; left:clamp(1.5rem,3vw,3.4rem); top:26%; width:42%; }
.service-copy > p { font-size:.5rem; letter-spacing:.16em; text-transform:uppercase; }
.service-copy h4 { margin:.65rem 0 1rem; font-family:var(--serif); font-size:clamp(2.3rem,4.3vw,5.3rem); line-height:.88; font-weight:400; letter-spacing:-.05em; }
.service-copy > span { font-size:.58rem; }
.service-copy > div { display:flex; gap:.7rem; align-items:center; margin-top:1.5rem; font-size:.5rem; }
.service-copy b { padding:.55rem .8rem; border-radius:999px; color:white; background:#1c231f; letter-spacing:.08em; text-transform:uppercase; }
.service-copy i { font-style:normal; border-bottom:1px solid; }
.service-ticket { position:absolute; right:-3%; bottom:-8%; width:240px; padding:1.1rem 1.2rem; border-radius:.9rem; background:var(--clay); box-shadow:0 18px 35px rgba(20,26,23,.18); transform:rotate(1.5deg); }
.service-ticket span { font-size:.5rem; letter-spacing:.15em; }
.service-ticket strong { display:block; margin:.55rem 0; font-family:var(--serif); font-size:1.2rem; font-weight:400; }
.service-ticket small { font-size:.62rem; }

.browser--retail { background:#ede7df; }
.retail-nav { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; height:48px; padding:0 1.15rem; font-size:.5rem; letter-spacing:.1em; }
.retail-nav span:last-child { justify-self:end; }
.retail-grid { display:grid; grid-template-columns:27% 43% 30%; height:calc(100% - 48px); padding:1.2rem; gap:1rem; }
.retail-intro { display:flex; flex-direction:column; justify-content:flex-end; padding:.5rem; }
.retail-intro p { margin:0; font-family:var(--serif); font-size:clamp(1.8rem,3vw,3.8rem); line-height:.92; }
.retail-intro a { margin-top:1.2rem; font-size:.52rem; text-transform:uppercase; text-underline-offset:.25rem; }
.retail-main, .retail-main img { width:100%; height:100%; }
.retail-main img { object-fit:cover; }
.retail-products { display:grid; grid-template-rows:1fr 1fr; gap:1rem; }
.retail-products > div { display:flex; flex-direction:column; justify-content:center; align-items:center; gap:.8rem; background:#d8d0c3; }
.retail-products small { font-family:var(--serif); }
.product-shape { display:block; width:55px; height:55px; border:7px solid #af7e3e; border-radius:50%; box-shadow:0 8px 12px rgba(40,30,20,.15); }
.product-shape--arc { width:66px; height:38px; border-radius:50% 50% 10px 10px; border-bottom-width:12px; transform:rotate(-8deg); }
.retail-tag { position:absolute; left:-3%; bottom:-8%; padding:.75rem 1.1rem; border-radius:999px; color:#f3efe6; background:#4c392c; font-family:var(--serif); font-size:.85rem; transform:rotate(-2deg); }

.services-section { padding:clamp(6rem,11vw,10rem) var(--gutter); background:var(--spruce); color:var(--paper); }
.section-heading--wide { max-width:1200px; margin-bottom:4rem; }
.services-list { max-width:var(--max); margin:0 auto 3rem; border-top:1px solid rgba(243,239,230,.3); }
.services-list article { display:grid; grid-template-columns:80px minmax(220px,.7fr) 1fr; gap:2rem; align-items:start; padding:2.2rem 0; border-bottom:1px solid rgba(243,239,230,.3); }
.services-list article > span { font-family:var(--serif); font-size:1.1rem; }
.services-list h3 { margin:0; font-family:var(--serif); font-size:clamp(2rem,3vw,3.2rem); font-weight:400; }
.services-list p { max-width:520px; margin:.4rem 0 0; }
.services-section .button { margin-left:auto; }

.extras-section { display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(3rem,8vw,9rem); padding:clamp(6rem,11vw,11rem) var(--gutter); }
.extras-intro h2 { font-size:clamp(3.2rem,5.5vw,6.3rem); }
.extras-list { border-top:1px solid var(--line); }
.extras-list article { display:grid; grid-template-columns:minmax(150px,.7fr) 1.3fr; gap:2rem; padding:1.8rem 0; border-bottom:1px solid var(--line); }
.extras-list h3 { margin:0; font-family:var(--serif); font-size:1.35rem; font-weight:400; }
.extras-list p { margin:0; }

.process-section { display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(3rem,8vw,9rem); padding:clamp(6rem,11vw,11rem) var(--gutter); background:var(--bone); }
.process-heading h2 { font-size:clamp(3.2rem,6vw,7rem); }
.process-heading > p:last-child { max-width:440px; margin-top:2rem; }
.process-list { margin:0; padding:0; list-style:none; border-top:1px solid var(--line); }
.process-list li { display:grid; grid-template-columns:70px 1fr; gap:1.5rem; padding:2rem 0; border-bottom:1px solid var(--line); }
.process-list li > span { display:grid; place-items:center; width:42px; height:42px; border:1px solid currentColor; border-radius:50%; font-family:var(--serif); }
.process-list h3 { margin:0; font-family:var(--serif); font-size:2rem; font-weight:400; }
.process-list p { margin:.35rem 0 0; }

.about-section { position:relative; display:grid; grid-template-columns:1fr 1fr; min-height:720px; overflow:hidden; background:#b4c0ae; }
.about-mark { position:relative; min-height:640px; overflow:hidden; border-right:1px solid rgba(28,35,31,.24); font-family:var(--serif); font-size:clamp(13rem,29vw,34rem); line-height:.7; color:rgba(41,66,55,.45); }
.about-mark span:first-child { position:absolute; left:-2vw; top:5%; }
.about-mark span:last-child { position:absolute; right:-1vw; bottom:4%; }
.about-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(3rem,8vw,8rem); }
.about-copy h2 { font-size:clamp(3.3rem,6vw,7rem); }
.about-copy > p:not(.eyebrow) { max-width:620px; font-size:clamp(1rem,1.5vw,1.25rem); }
.about-copy > p:nth-of-type(2) { margin-top:2rem; }
.about-facts { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:2rem; }
.about-facts span { padding:.55rem .9rem; border:1px solid rgba(28,35,31,.42); border-radius:999px; font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; }

.contact-section { display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(3rem,8vw,9rem); padding:clamp(6rem,11vw,11rem) var(--gutter); color:var(--paper); background:var(--spruce-dark); }
.contact-details h2 { font-size:clamp(3.5rem,6vw,7rem); }
.contact-details > p:not(.eyebrow) { max-width:400px; margin:1.6rem 0 2.5rem; }
.contact-phone { display:block; font-family:var(--serif); font-size:clamp(2rem,3.7vw,4.2rem); line-height:1; text-decoration:none; }
.contact-email { display:inline-block; margin-top:1.2rem; text-underline-offset:.3rem; }
.contact-location { color:rgba(243,239,230,.68); font-size:.82rem; }
.contact-form-wrap { align-self:start; }
.contact-form { padding:clamp(1.5rem,3.5vw,3.5rem); border-radius:var(--radius); color:var(--ink); background:var(--paper); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.field { margin-bottom:1.25rem; }
.field label, .response-choice legend { display:block; margin-bottom:.55rem; font-size:.68rem; font-weight:650; letter-spacing:.11em; text-transform:uppercase; }
.field label span { font-weight:400; opacity:.72; }
.field input, .field textarea {
  width:100%; border:0; border-bottom:1px solid rgba(28,35,31,.45); border-radius:0;
  padding:.75rem 0; color:var(--ink); background:transparent;
}
.field textarea { resize:vertical; min-height:130px; border:1px solid rgba(28,35,31,.36); padding:.85rem; }
.field input:focus, .field textarea:focus { outline:0; border-color:var(--clay); box-shadow:0 2px 0 var(--clay); }
.response-choice { display:flex; flex-wrap:wrap; gap:1.3rem; margin:1.5rem 0; padding:0; border:0; }
.response-choice legend { width:100%; }
.response-choice label, .consent { display:flex; align-items:center; gap:.55rem; font-size:.85rem; }
.response-choice input, .consent input { width:18px; height:18px; accent-color:var(--spruce); }
.consent { margin:1.6rem 0; align-items:flex-start; }
.contact-form .button { width:100%; }
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status { margin-bottom:1.2rem; padding:1.2rem 1.35rem; border-radius:.85rem; background:#f3efe6; color:var(--ink); }
.form-status--success { border-left:5px solid #78a086; }
.form-status--error { border-left:5px solid var(--clay); }
.form-status h3 { margin:0 0 .4rem; font-family:var(--serif); font-size:1.6rem; font-weight:400; }
.form-status p, .form-status ul { margin:.3rem 0; }

.site-footer { padding:4rem var(--gutter) 2rem; color:var(--paper); background:#151b18; }
.footer-brand { display:block; width:235px; }
.site-footer > p { margin:2rem 0; font-family:var(--serif); font-size:clamp(2rem,4vw,4.3rem); }
.footer-links { display:flex; flex-wrap:wrap; gap:1rem 2.2rem; padding:1.5rem 0; border-top:1px solid rgba(243,239,230,.18); border-bottom:1px solid rgba(243,239,230,.18); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; }
.footer-links a { text-underline-offset:.25rem; }
.site-footer small { display:block; margin-top:2rem; opacity:.55; }

.legal-page { min-height:100vh; padding-top:110px; }
.legal-shell { max-width:900px; margin:0 auto; padding:clamp(4rem,8vw,8rem) var(--gutter); }
.legal-shell h1 { margin:0; font-family:var(--serif); font-size:clamp(4rem,8vw,8rem); font-weight:400; line-height:.9; }
.legal-shell h2 { margin-top:3rem; font-family:var(--serif); font-size:2rem; font-weight:400; }
.legal-shell p, .legal-shell li { max-width:720px; }
.simple-header { position:absolute; top:0; left:0; right:0; display:flex; justify-content:space-between; align-items:center; padding:1rem var(--gutter); border-bottom:1px solid var(--line); }
.simple-header .brand { width:220px; }
.error-page { display:grid; min-height:100vh; place-items:center; padding:2rem; color:var(--paper); background:var(--spruce-dark); text-align:center; }
.error-page .error-mark { font-family:var(--serif); font-size:clamp(9rem,28vw,24rem); line-height:.7; color:rgba(243,239,230,.13); }
.error-page h1 { margin:-1rem 0 1rem; font-family:var(--serif); font-size:clamp(3rem,7vw,7rem); font-weight:400; }
.error-page p { max-width:520px; }
.error-actions { justify-content:center; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns:1fr auto; }
  .brand { width:205px; }
  .menu-toggle {
    display:grid; place-items:center; gap:5px; width:46px; height:46px; padding:0; border:1px solid var(--line); border-radius:50%; background:var(--paper); cursor:pointer;
  }
  .menu-toggle span:not(.sr-only) { display:block; width:19px; height:1px; background:currentColor; transition:transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform:translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-3px) rotate(-45deg); }
  .site-nav {
    position:absolute; top:100%; left:0; right:0; display:none; flex-direction:column; align-items:flex-start; gap:0; padding:1.2rem var(--gutter) 1.6rem; background:var(--paper); border-bottom:1px solid var(--line);
  }
  .site-nav.is-open { display:flex; }
  .site-nav a { width:100%; padding:1rem 0; border-bottom:1px solid var(--line); font-family:var(--serif); font-size:1.8rem; letter-spacing:0; text-transform:none; }
  .site-nav a::after { display:none; }
  .header-call { display:none; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-copy { min-height:80svh; border-right:0; }
  .hero-stage { min-height:760px; }
  .direction, .direction--reverse { grid-template-columns:1fr; gap:3rem; }
  .direction--reverse .direction-copy { order:0; }
  .direction-copy { display:grid; grid-template-columns:80px 1fr; column-gap:1.5rem; }
  .direction-number { grid-row:1/4; margin:0; }
  .direction-copy .eyebrow, .direction-copy h3, .direction-copy > p:last-child { grid-column:2; }
  .services-list article { grid-template-columns:60px .8fr 1.2fr; }
  .extras-section, .process-section, .contact-section { grid-template-columns:1fr; }
  .extras-list { margin-top:1rem; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.2rem; --radius:1rem; }
  .site-header { min-height:68px; }
  .brand { width:180px; }
  .hero { padding-top:68px; }
  .hero-copy { min-height:690px; padding-top:5rem; }
  .hero h1 { font-size:clamp(3.8rem,16.8vw,6.2rem); }
  .hero-intro { font-size:1rem; }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .hero-stage { min-height:620px; }
  .hero-photo { inset:2rem 1.2rem 7.5rem; }
  .hero-photo-copy { width:80%; }
  .hero-photo-copy strong { font-size:3.3rem; }
  .hero-tile--cafe { right:.8rem; bottom:1.2rem; width:180px; }
  .hero-tile--note { left:.8rem; bottom:1.6rem; width:205px; padding:1rem; }
  .hero-monogram { width:68px; height:68px; font-size:2rem; }
  .hero-monogram span:first-child { left:14px; }
  .section-heading { margin-bottom:5rem; }
  .section-heading h2, .services-section h2, .extras-section h2, .process-section h2, .about-section h2, .contact-section h2 { font-size:clamp(3.2rem,15vw,5.2rem); }
  .work-section { padding-top:6rem; }
  .direction { margin-bottom:8rem; }
  .direction-copy { grid-template-columns:50px 1fr; gap:0 1rem; }
  .direction-number { font-size:1rem; }
  .direction-copy h3 { font-size:clamp(3.2rem,15vw,5.4rem); }
  .browser { aspect-ratio: 4/5; }
  .browser-bar { grid-template-columns:1fr 1fr; }
  .browser-bar > span:nth-child(2) { display:none; }
  .lodge-layout { grid-template-columns:1fr; position:relative; }
  .lodge-image { position:absolute; inset:0; }
  .lodge-image::after { content:''; position:absolute; inset:0; background:rgba(21,35,29,.5); }
  .lodge-copy { position:relative; z-index:1; }
  .phone { right:4%; width:35%; min-width:125px; }
  .cafe-layout { grid-template-columns:1fr; }
  .cafe-image { position:absolute; inset:42% 0 0; }
  .cafe-copy { position:relative; z-index:1; justify-content:flex-start; }
  .sticker--one { top:41%; left:5%; }
  .service-overlay { background:linear-gradient(180deg,rgba(245,241,233,.98) 0 54%,rgba(245,241,233,.08) 80%); }
  .service-copy { left:1.25rem; right:1.25rem; top:18%; width:auto; }
  .service-copy h4 { font-size:3.3rem; }
  .service-nav span { display:none; }
  .service-ticket { right:2%; width:210px; }
  .retail-grid { grid-template-columns:1fr 1fr; grid-template-rows:45% 55%; }
  .retail-intro { grid-column:1/3; justify-content:center; }
  .retail-main { grid-column:1; }
  .retail-products { grid-column:2; }
  .retail-nav span { display:none; }
  .retail-nav strong { grid-column:1/4; text-align:center; }
  .services-list article { grid-template-columns:42px 1fr; gap:1rem; }
  .services-list p { grid-column:2; }
  .extras-list article { grid-template-columns:1fr; gap:.7rem; }
  .process-list li { grid-template-columns:52px 1fr; }
  .about-section { grid-template-columns:1fr; }
  .about-mark { min-height:340px; border-right:0; border-bottom:1px solid rgba(28,35,31,.24); font-size:13rem; }
  .about-copy { padding:4.5rem var(--gutter); }
  .form-grid { grid-template-columns:1fr; gap:0; }
  .contact-phone { font-size:2.3rem; }
  .legal-shell h1 { font-size:clamp(3.25rem,16.5vw,4rem); }
  .footer-links { flex-direction:column; }
}

@media (max-width: 400px) {
  .brand { width:164px; }
  .services-section h2 { font-size:clamp(2.3rem,11.5vw,2.95rem); }
  .hero-copy { min-height:650px; }
  .hero h1 { font-size:3.7rem; }
  .hero-stage { min-height:570px; }
  .hero-photo { inset:1.2rem .8rem 7.4rem; }
  .hero-photo-copy { padding:1.2rem; }
  .hero-photo-copy strong { font-size:2.7rem; }
  .hero-tile--note { width:185px; left:.4rem; }
  .hero-tile--cafe { width:155px; right:.35rem; }
  .hero-tile--cafe strong { font-size:1.4rem; }
  .phone { display:none; }
  .browser { aspect-ratio: 3/4.3; }
  .service-ticket { bottom:-7%; }
}

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