:root {
  --bg: #f2f2f0;
  --paper: #ffffff;
  --ink: #24211e;
  --muted: #6d665f;
  --line: #ded7ce;
  --accent: #5f5d59;
  --accent-dark: #4a4a4f;
  --sage: #e4e6dc;
  --shadow: 0 20px 50px rgba(36, 33, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(242, 242, 240, 0.92);
  border-bottom: 1px solid rgba(222, 215, 206, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 245px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-image {
  display: block;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 68% center;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  max-width: 620px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  font-size: clamp(56px, 8vw, 104px);
}

h2 {
  max-width: 13ch;
  font-size: clamp(34px, 5vw, 58px);
}

.hero-content p:not(.eyebrow),
.copy,
.legal p,
.contact-details address {
  color: var(--muted);
  font-size: 17px;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 56px);
}

.two-column,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.about-content {
  max-width: 680px;
}

.about-content h2 {
  max-width: 16ch;
  font-size: 34px;
}

.about-content .copy {
  max-width: 650px;
  margin-top: clamp(24px, 3vw, 40px);
  color: var(--muted);
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.48;
}

.about-content .copy p {
  margin: 0;
}

.about-content .copy p + p {
  margin-top: 1.1em;
}

.copy p:first-child,
.legal p:first-of-type {
  margin-top: 0;
}

.editorial-image {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  overflow: hidden;
  background: transparent;
}

.editorial-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 72% center;
}

.muted {
  background: var(--sage);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.hours {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hours div,
.brand-logo-tile {
  background: var(--paper);
}

.hours div {
  min-height: 150px;
  padding: 26px;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 12px 0 0;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-logo-tile {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 28px;
}

.brand-logo-tile img {
  display: block;
  width: auto;
  max-width: min(82%, 320px);
  max-height: 58px;
  object-fit: contain;
}

.contact-details address {
  margin-top: 28px;
  font-style: normal;
}

.contact-details a {
  color: var(--accent-dark);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(127, 89, 72, 0.34);
  outline-offset: 2px;
  border-color: var(--accent);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-weight: 400;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal {
  max-width: 980px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .hero,
  .about-section,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    min-height: 46vh;
    order: -1;
  }

  .hero-image img {
    min-height: 46vh;
    object-position: 68% center;
  }

  .hero-content {
    padding: 44px 20px 64px;
  }

  .hero-content .eyebrow {
    max-width: 100%;
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.08;
  }

  h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  h2 {
    max-width: 14ch;
  }

  .about-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-content {
    max-width: none;
  }

  .about-content h2 {
    max-width: 16ch;
    font-size: 34px;
  }

  .about-content .copy {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.62;
  }

  .editorial-image {
    margin-top: 34px;
    max-width: none;
    justify-self: stretch;
  }

  .hours,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .announcement-bar {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .brand-logo {
    width: 156px;
  }

  .section {
    padding: 64px 20px;
  }

  .hours,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .hours div,
  .brand-logo-tile {
    min-height: 96px;
  }

  .brand-logo-tile {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
