:root {
  --cream: #f7f1e5;
  --paper: #fffaf0;
  --gold: #f2a43b;
  --ember: #dd632d;
  --forest: #173f35;
  --forest-light: #245749;
  --ink: #20251f;
  --muted: #686b61;
  --line: rgba(32, 37, 31, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", sans-serif;
  --content: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
video {
  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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px max(24px, calc((100vw - 1380px) / 2));
  color: white;
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 8px 35px rgba(20, 32, 25, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 164px;
  height: 132px;
  padding-left: 8px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  background: var(--cream);
  mix-blend-mode: multiply;
}

.site-header:not(.scrolled) .brand img {
  background: var(--cream);
  mix-blend-mode: normal;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  margin-top: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
}

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

.site-nav a {
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid currentColor;
}

.nav-cta[aria-current="page"] {
  color: var(--forest);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  color: white;
  overflow: hidden;
  background: #19372e;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("Food Pictures/IMG_4114.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: hero-in 1.4s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 30, 25, 0.86) 0%, rgba(10, 30, 25, 0.56) 43%, rgba(10, 30, 25, 0.1) 77%),
    linear-gradient(0deg, rgba(10, 20, 16, 0.38), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--content);
  height: 100%;
  margin: auto;
  padding-top: 75px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: #ffd49a;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(4rem, 7.8vw, 7.9rem);
}

.hero h1 em {
  color: #ffc46f;
  font-weight: 400;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #1d2b24;
  background: var(--gold);
}

.button-primary:hover {
  background: #ffbd5f;
}

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

.button-dark:hover {
  background: var(--forest-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: white;
}

.hero-note {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - 1380px) / 2));
  bottom: 62px;
  display: flex;
  flex-direction: column;
  padding-left: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-note span {
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.78;
}

.hero-note strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.62rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 35px;
  margin-top: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: white;
  animation: scroll-line 2s infinite;
}

.section {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 110px;
  overflow: hidden;
  background: var(--paper);
}

.intro-mark {
  position: absolute;
  top: 52px;
  right: 20px;
  max-width: 720px;
  color: rgba(221, 99, 45, 0.055);
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 0.85;
  text-align: right;
}

.intro h2,
.section-heading h2 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
}

.intro-detail {
  align-self: end;
  max-width: 500px;
}

.intro-detail p:first-child {
  margin-top: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.5;
}

.intro-detail .text-link {
  margin-top: 16px;
}

.intro-video {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 20px;
}

.intro-video-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.intro-video-heading .eyebrow {
  margin-bottom: 0;
}

.intro-video-heading > p:last-child {
  max-width: none;
  margin: 0;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.services {
  padding-top: 105px;
  background: var(--cream);
}

.home-services {
  background: var(--cream);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.preview-card {
  grid-column: span 2;
  min-height: 330px;
  padding: 35px;
  background: var(--paper);
  border-top: 3px solid var(--ember);
}

.preview-card:nth-last-child(-n + 2) {
  grid-column: span 2;
}

.preview-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.preview-card > span {
  color: var(--ember);
  font-family: var(--serif);
  font-style: italic;
}

.preview-card h3 {
  margin: 70px 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

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

.centered-action {
  margin-top: 42px;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 6px;
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 185px;
  padding: 28px 10px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.service-card:hover {
  padding-right: 26px;
  padding-left: 26px;
  background: rgba(255, 250, 240, 0.75);
}

.service-number {
  align-self: start;
  padding-top: 8px;
  color: var(--ember);
  font-family: var(--serif);
  font-style: italic;
}

.service-kicker {
  margin: 0 0 2px;
  color: var(--ember);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
}

.service-card p:last-child {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.service-card > a {
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card > a span {
  display: inline-block;
  margin-left: 5px;
  color: var(--ember);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

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

.film-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.film h2 {
  font-size: clamp(3.3rem, 6vw, 6.2rem);
}

.video-shell {
  position: relative;
  background: #0e1814;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.video-shell::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-video {
  background: var(--forest);
}

.video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  padding: 0;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(9, 24, 20, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.intro-video .video-play-button {
  opacity: 1;
  visibility: visible;
}

.video-play-button:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.07);
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 30px solid currentColor;
}

.video-play-button[hidden] {
  display: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
  background: var(--paper);
}

.home-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  color: white;
  background: var(--forest);
}

.home-feature-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center 28%;
}

.home-feature-copy h2 {
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
}

.home-feature-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 30%;
}

.experience-stamp {
  position: absolute;
  right: -45px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  height: 190px;
  padding: 28px;
  color: white;
  background: var(--ember);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.experience-stamp strong {
  font-family: var(--serif);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1;
}

.experience-stamp span {
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  color: var(--forest);
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
}

.about-copy .lead {
  margin-top: 30px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.27rem;
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

blockquote {
  margin: 30px 0;
  padding-left: 22px;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  border-left: 2px solid var(--gold);
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  color: white;
  background: var(--forest);
}

.philosophy-title {
  position: sticky;
  top: 140px;
  align-self: start;
}

.philosophy h2 {
  max-width: 560px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.philosophy-points article {
  padding: 12px 0 45px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy-points article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

.philosophy-points h3 {
  margin: 10px 0 6px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.philosophy-points p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  background: var(--cream);
}

.home-gallery {
  background: var(--paper);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
  height: 480px;
}

.home-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ddd3c1;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  color: white;
  background: #112f28;
}

.home-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  background: var(--forest);
}

.home-cta .eyebrow {
  justify-content: center;
}

.home-cta h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.home-cta .button {
  margin-top: 40px;
}

.home-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px auto 32px;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 570px;
  padding: 170px max(24px, calc((100vw - 1180px) / 2)) 95px;
  color: white;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 30, 25, 0.9), rgba(10, 30, 25, 0.28));
}

.services-hero {
  background-image: url("Food Pictures/IMG_4122.jpeg");
  background-position: center 48%;
}

.about-hero {
  background-image: url("Erika Pic.jpg");
  background-position: center 35%;
}

.gallery-hero {
  background-image: url("Food Pictures/IMG_4118.jpeg");
}

.book-hero {
  background-image: url("Food Pictures/IMG_4121.jpeg");
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.page-hero-content > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  background: var(--paper);
}

.page-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -45px;
}

.page-intro h2 {
  font-size: clamp(3rem, 5.3vw, 5rem);
}

.page-intro > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-page {
  padding-top: 70px;
}

.service-page .service-card {
  align-items: start;
  padding-top: 42px;
  padding-bottom: 42px;
}

.service-uses {
  font-size: 0.9rem;
}

.gallery-page {
  padding-top: 25px;
}

.about-page {
  padding-top: 110px;
}

.booking-page {
  padding-top: 100px;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 35px 0;
}

.booking-steps span {
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-steps b {
  margin-right: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.contact-intro {
  align-self: start;
}

.contact h2 {
  max-width: 480px;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-location {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-location span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-location strong {
  margin: 4px 0;
  color: #ffd49a;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.inquiry-form {
  position: relative;
  padding: 48px;
  color: var(--ink);
  background: var(--paper);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 23px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-requirement {
  margin: -13px 0 23px;
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-preference[hidden] {
  display: none;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9d9b90;
  border-radius: 0;
  outline: 0;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 1px 0 var(--ember);
}

.inquiry-form .button {
  width: 100%;
  margin-top: 6px;
}

.inquiry-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 12px;
  color: var(--forest);
  background: rgba(23, 63, 53, 0.08);
}

.form-status.success {
  color: #174f38;
  background: #e4f2e9;
}

.form-status.error {
  color: #7e2d24;
  background: #f8e4df;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  align-items: end;
  gap: 50px;
  padding: 65px max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: var(--gold);
}

.footer-brand img {
  width: 120px;
  height: 96px;
  padding: 8px;
  object-fit: cover;
  object-position: center 20%;
  background: var(--paper);
  border: 1px solid rgba(32, 37, 31, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(32, 37, 31, 0.12);
}

.footer-brand p {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer nav a {
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-meta {
  color: rgba(32, 37, 31, 0.75);
  font-size: 0.74rem;
  text-align: right;
}

.footer-meta p {
  margin: 5px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  55%, 100% { transform: translateY(200%); }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 40px, 680px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: max(110px, calc(env(safe-area-inset-top) + 90px)) 34px
      max(40px, calc(env(safe-area-inset-bottom) + 24px));
    overflow-y: auto;
    color: white;
    background: var(--forest);
    transform: translateX(100%);
    transition: transform 250ms ease;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.02em;
  }

  .site-nav .nav-cta {
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .menu-open .site-nav {
    transform: none;
  }

  .menu-open .site-header {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-open .menu-toggle {
    color: white;
  }

  .menu-open .menu-toggle > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 30, 25, 0.86), rgba(10, 30, 25, 0.35));
  }

  .hero-note {
    display: none;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro,
  .section-heading,
  .about,
  .philosophy,
  .contact,
  .home-feature,
  .page-intro {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    grid-column: auto;
    min-height: 0;
  }

  .preview-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .preview-card:nth-child(4) {
    grid-column: auto;
  }

  .preview-card h3 {
    margin-top: 35px;
  }

  .home-gallery-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .home-gallery-grid img:first-child {
    grid-column: 1 / -1;
    height: 420px;
  }

  .home-gallery-grid img:not(:first-child) {
    height: 300px;
  }

  .page-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -20px;
  }

  .intro-mark {
    top: 35px;
    right: 10px;
    max-width: 500px;
    font-size: 4.5rem;
  }

  .intro-video-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .intro-video-heading > p:last-child {
    text-align: left;
    white-space: normal;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .about {
    padding-right: max(54px, calc((100vw - 680px) / 2));
  }

  .experience-stamp {
    right: -30px;
  }

  .philosophy-title {
    position: static;
  }

  .contact-intro {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100vw - 34px);
  }

  .site-header {
    padding-top: 12px;
    padding-right: 17px;
    padding-bottom: 12px;
    padding-left: 17px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 92px;
    height: 74px;
    padding-left: 5px;
  }

  .hero-image {
    animation: none;
    transform: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .page-hero {
    min-height: 500px;
    padding: 140px 17px 65px;
  }

  .page-hero h1 {
    font-size: 4.1rem;
  }

  .hero-content {
    padding-top: 35px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 75px 17px;
  }

  .intro h2,
  .section-heading h2,
  .about-copy h2,
  .philosophy h2,
  .contact h2 {
    font-size: 3.15rem;
  }

  .service-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 27px 0;
  }

  .service-card > a {
    grid-column: 2;
    justify-self: start;
  }

  .service-card:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .film-heading {
    display: block;
  }

  .film h2 {
    font-size: 3.4rem;
  }

  .video-play-button {
    width: 84px;
    height: 84px;
  }

  .video-play-button span {
    margin-left: 6px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 23px;
  }

  .about {
    padding-right: 40px;
  }

  .experience-stamp {
    right: -25px;
    bottom: 25px;
    width: 145px;
    height: 145px;
    padding: 22px;
  }

  .experience-stamp strong {
    font-size: 2.8rem;
  }

  .experience-stamp span {
    font-size: 0.53rem;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .home-gallery-grid {
    display: block;
  }

  .home-gallery-grid img,
  .home-gallery-grid img:first-child,
  .home-gallery-grid img:not(:first-child) {
    height: 280px;
    margin-bottom: 8px;
  }

  .gallery-grid .gallery-wide {
    grid-column: span 2;
  }

  .gallery-grid .gallery-tall {
    grid-row: span 2;
  }

  .inquiry-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 20px;
  }

  .footer-meta {
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
