:root {
  --ink: #241512;
  --ink-soft: #624237;
  --paper: #fbf6ee;
  --paper-deep: #efe0cc;
  --cream: #fff9ef;
  --red: #6f241c;
  --red-dark: #44170f;
  --mustard: #e8ab2f;
  --sage: #667456;
  --sage-deep: #394331;
  --line: rgba(70, 33, 24, 0.18);
  --shadow: 0 20px 60px rgba(42, 19, 14, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(111, 36, 28, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #f7ead7 48%, var(--paper));
  background-size: 42px 42px, auto;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.subpage .site-header {
  background: rgba(68, 23, 15, 0.96);
  box-shadow: 0 10px 28px rgba(24, 11, 7, 0.22);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff8ed;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(68, 23, 15, 0.96);
  box-shadow: 0 10px 28px rgba(24, 11, 7, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.24));
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 248, 237, 0.76);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.site-nav a:not(.nav-call) {
  color: rgba(255, 248, 237, 0.9);
}

.site-nav a:not(.nav-call):hover {
  color: var(--mustard);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(255, 248, 237, 0.1);
  color: #fff8ed;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 237, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.1);
  color: #fff8ed;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  color: #fff8ed;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(34, 14, 10, 0.82) 0%, rgba(34, 14, 10, 0.54) 46%, rgba(34, 14, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(22, 9, 6, 0.26), rgba(22, 9, 6, 0.2) 62%, rgba(36, 21, 18, 0.74));
}

.hero-inner {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
  padding: 116px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(250px, 330px);
  align-items: end;
  gap: clamp(24px, 6vw, 70px);
}

.hero-logo {
  width: clamp(124px, 16vw, 190px);
  height: auto;
  margin: 0 0 18px -6px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

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

h1 {
  max-width: 760px;
  font-size: 4.55rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 3.6rem, 3.6rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy p {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255, 248, 237, 0.86);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--mustard);
  color: #32130e;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

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

.button-ghost {
  border-color: rgba(255, 248, 237, 0.42);
  background: rgba(255, 248, 237, 0.12);
  color: #fff8ed;
}

.hero-panel {
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(49, 19, 14, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel strong,
.live-status strong {
  display: inline-block;
  margin-left: 8px;
}

.hero-panel p,
.live-status {
  margin: 10px 0 0;
  color: rgba(255, 248, 237, 0.8);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mustard);
  box-shadow: 0 0 0 5px rgba(232, 171, 47, 0.15);
}

.status-dot.is-open {
  background: #7fc16a;
  box-shadow: 0 0 0 5px rgba(127, 193, 106, 0.16);
}

.status-dot.is-closed {
  background: #cd7566;
  box-shadow: 0 0 0 5px rgba(205, 117, 102, 0.16);
}

.quickbar {
  width: min(100% - 36px, var(--container));
  margin: -30px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quickbar a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 18px 22px;
  background: var(--cream);
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.quickbar a:last-child {
  border-right: 0;
}

.quickbar a:hover {
  background: #fff3dc;
}

.section {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-intro,
.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.section-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-copy p,
.service-copy p,
.hours-copy p,
.legal-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 249, 239, 0.72);
}

.feature-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--red);
}

.feature-grid p {
  color: var(--ink-soft);
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1fr;
  gap: 14px;
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  padding: 6px 0 20px;
}

.image-band figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--red-dark);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.image-band figure:hover img {
  transform: scale(1.035);
}

.image-band figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(36, 21, 18, 0.74);
  color: #fff8ed;
  font-weight: 800;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.owner-copy {
  border-left: 4px solid var(--mustard);
  padding-left: clamp(22px, 3vw, 34px);
}

.owner-copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.1vw, 3.35rem);
}

.owner-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.owner-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--red-dark);
  box-shadow: var(--shadow);
  justify-self: end;
  width: min(100%, 500px);
}

.owner-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.owner-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(36, 21, 18, 0.78);
  color: #fff8ed;
  font-weight: 800;
}

.service-media {
  position: relative;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border: 2px solid rgba(111, 36, 28, 0.24);
  border-radius: var(--radius);
  z-index: -1;
}

.service-media img,
.contact-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-media img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 16px;
  height: 2px;
  background: var(--mustard);
}

.highlight-list {
  display: grid;
  gap: 12px;
}

.highlight-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.highlight-list strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.highlight-list span {
  color: var(--ink-soft);
}

.hours-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  width: min(100% - 36px, var(--container));
  margin: 0 auto clamp(76px, 10vw, 128px);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  background: var(--red-dark);
  color: #fff8ed;
  box-shadow: var(--shadow);
}

.hours-copy p {
  color: rgba(255, 248, 237, 0.78);
}

.hours-table {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 248, 237, 0.1);
}

.hours-table div {
  display: grid;
  grid-template-columns: minmax(115px, 0.42fr) 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
}

.hours-table div:last-child {
  border-bottom: 0;
}

.hours-table span {
  color: rgba(255, 248, 237, 0.72);
}

.hours-table strong {
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 18px;
  width: min(100% - 36px, var(--container));
  margin: 0 auto clamp(76px, 10vw, 128px);
}

.contact-card {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.contact-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-photo img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.legal-section {
  padding: clamp(58px, 7vw, 90px) 0;
  background: rgba(255, 249, 239, 0.74);
  border-top: 1px solid var(--line);
}

.legal-main {
  padding-top: 92px;
}

.legal-hero {
  padding: clamp(58px, 8vw, 92px) 0 clamp(28px, 5vw, 54px);
  background: var(--red-dark);
  color: #fff8ed;
}

.legal-hero-inner {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 4.4rem, 4.4rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-hero p {
  max-width: 680px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.08rem;
}

.legal-section-alt {
  background: rgba(239, 224, 204, 0.52);
}

.legal-copy {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
}

.legal-copy h2 {
  font-size: clamp(2rem, 2.8rem, 2.8rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-copy a {
  color: var(--red);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #20110d;
  color: rgba(255, 248, 237, 0.78);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: #fff8ed;
}

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

.site-footer a {
  color: #fff8ed;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(68, 23, 15, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 13px 14px;
  }

  .nav-call {
    justify-content: center;
    margin-top: 6px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-inner,
  .section-intro,
  .owner-section,
  .service-section,
  .split-section,
  .hours-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 3.9rem, 3.9rem);
  }

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

  .quickbar a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quickbar a:last-child {
    border-bottom: 0;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band figure,
  .image-band img {
    aspect-ratio: 16 / 10;
  }

  .owner-media {
    justify-self: start;
    width: min(100%, 620px);
  }

  .contact-photo img {
    min-height: 320px;
  }

  .service-media::before {
    inset: 16px 0 -14px 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 58px;
  }

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

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(34, 14, 10, 0.7) 0%, rgba(34, 14, 10, 0.74) 46%, rgba(34, 14, 10, 0.9) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, var(--container));
    padding-top: 116px;
  }

  .hero-logo {
    width: 142px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .legal-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .quickbar,
  .image-band,
  .hours-section,
  .contact-section,
  .legal-hero-inner,
  .legal-copy {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .highlight-list div,
  .hours-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-section {
    padding: 28px 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
