:root {
  --ink: #171312;
  --muted: #6f625e;
  --paper: #fffaf6;
  --cream: #f3eadf;
  --rose: #b45b65;
  --marigold: #e69a28;
  --leaf: #355e47;
  --line: rgba(23, 19, 18, 0.14);
  --shadow: 0 18px 60px rgba(35, 25, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a,
.text-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover,
.text-link:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #201817;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.32)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.02) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  padding: 120px clamp(18px, 6vw, 76px) 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--marigold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--rose);
  border-color: var(--rose);
}

.button-primary:hover {
  background: #984852;
  border-color: #984852;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats-band div {
  min-width: 0;
  padding: 20px clamp(14px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.stats-band span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-pad {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  max-width: 1080px;
}

.intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--leaf);
  font-weight: 850;
}

.service-path {
  background: #fff;
  border-top: 1px solid var(--line);
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-grid a {
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(180, 91, 101, 0.12), transparent 48%),
    var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 91, 101, 0.48);
  box-shadow: var(--shadow);
}

.service-grid h3 {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.experience-strip {
  background: var(--cream);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
}

.feature-grid article,
.note-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-grid article:not(.feature-large) {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.feature-grid article:not(.feature-large) img {
  min-height: 300px;
}

.feature-grid article:not(.feature-large) h3 {
  padding: 18px;
}

.feature-large {
  min-height: 520px;
}

.feature-large div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.feature-large span {
  display: block;
  margin-bottom: 8px;
  color: var(--marigold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-large h3 {
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
}

.experience-cta {
  width: min(1180px, 100%);
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 19, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.experience-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.menu-notes {
  background: #fff;
}

.note-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.note-grid img {
  width: 100%;
  height: min(34vw, 420px);
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.note-grid h3 {
  padding: 16px;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-grid a {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 42px 14px 14px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.gallery-caption strong {
  min-width: 0;
  font-size: clamp(0.96rem, 1.5vw, 1.2rem);
  line-height: 1.1;
}

.gallery-caption em {
  flex: 0 0 auto;
  color: #f1b24d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-grid a:hover img {
  transform: scale(1.035);
}

.gallery-grid a:hover .gallery-caption,
.gallery-grid a:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  background: var(--leaf);
  color: #fff;
}

.inquiry .section-kicker {
  color: #f1b24d;
}

.inquiry-media img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.inquiry-copy {
  max-width: 720px;
}

.profile-label {
  margin-bottom: 10px;
  font-weight: 900;
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.inquiry-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field,
.form-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field span,
.form-group legend {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field b,
.form-group b {
  color: #f1b24d;
}

.inquiry-form input:not([type="radio"]):not([type="hidden"]),
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.98);
  color: var(--ink);
  font: inherit;
}

.inquiry-form input:not([type="radio"]):not([type="hidden"]) {
  min-height: 46px;
  padding: 0 12px;
}

.inquiry-form textarea {
  min-height: 142px;
  padding: 12px;
  resize: vertical;
}

.inquiry-form input:not([type="radio"]):not([type="hidden"]):focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(241, 178, 77, 0.34);
  border-color: #f1b24d;
}

.form-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-group legend {
  padding: 0;
}

.form-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.form-options input {
  appearance: auto;
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  accent-color: var(--rose);
}

.inquiry-copy p.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-honey {
  display: none;
}

.inquiry-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.inquiry-list span {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.inquiry-list span:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.thanks-page .hero {
  min-height: 100svh;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band div:nth-child(2) {
    border-right: 0;
  }

  .stats-band div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-large,
  .feature-grid img,
  .feature-grid article:not(.feature-large) img {
    min-height: 360px;
  }

  .note-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06));
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.84rem;
  }

  nav {
    width: auto;
    flex: 1;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0.75rem;
  }

  h1 {
    font-size: clamp(2rem, 10.4vw, 3.15rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }

  h3 {
    font-size: 0.96rem;
  }

  .section-pad {
    padding: 42px 14px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.22)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.06) 62%);
  }

  .hero-content {
    padding: 98px 14px 34px;
  }

  .hero-copy {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions,
  .hero-actions .button,
  .inquiry .button,
  .experience-cta,
  .experience-cta .button,
  .inquiry-actions {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band div {
    min-height: 74px;
    padding: 12px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:nth-child(2),
  .stats-band div:last-child {
    border-right: 0;
  }

  .stats-band div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .stats-band div:last-child {
    border-right: 0;
  }

  .stats-band strong {
    font-size: clamp(0.9rem, 4.5vw, 1.12rem);
    overflow-wrap: anywhere;
  }

  .stats-band span {
    font-size: 0.52rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }

  .intro p {
    font-size: 1.06rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 18px;
  }

  .section-heading .text-link {
    display: inline-flex;
    margin-top: 10px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-grid a {
    min-height: 98px;
    padding: 12px;
  }

  .service-grid h3 {
    font-size: 1.06rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-large {
    grid-column: 1 / -1;
  }

  .feature-large,
  .feature-grid img,
  .feature-grid article:not(.feature-large) img {
    min-height: 0;
  }

  .feature-large {
    min-height: 360px;
  }

  .feature-grid article:not(.feature-large) {
    grid-template-rows: 150px auto;
  }

  .feature-grid article:not(.feature-large) img {
    height: 150px;
  }

  .feature-grid article:not(.feature-large) h3 {
    padding: 11px;
    min-height: 58px;
    font-size: 0.76rem;
  }

  .experience-cta {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
  }

  .note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .note-grid img {
    height: 152px;
  }

  .note-grid h3 {
    padding: 10px;
    min-height: 52px;
    font-size: 0.74rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .gallery-grid a {
    aspect-ratio: 1 / 1.08;
  }

  .gallery-grid a:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.24 / 1;
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
    gap: 8px;
    padding: 34px 8px 8px;
  }

  .gallery-caption strong {
    font-size: 0.72rem;
  }

  .gallery-caption em {
    display: none;
  }

  .feature-large h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .inquiry {
    gap: 20px;
  }

  .inquiry-media img {
    max-height: 360px;
  }

  .inquiry-list {
    margin: 18px 0;
  }

  .inquiry-list span {
    padding: 10px 0;
    font-size: 0.88rem;
  }

  .inquiry-form {
    gap: 14px;
    margin-top: 20px;
    padding: 14px;
  }

  .form-grid,
  .form-options {
    grid-template-columns: 1fr;
  }

  .form-options label {
    min-height: 42px;
    padding: 9px 10px;
  }

  .site-footer {
    display: grid;
    justify-content: stretch;
    padding: 18px 14px;
    font-size: 0.78rem;
  }

}
