:root {
  --ink: #111111;
  --muted: #62645f;
  --line: #d9ded8;
  --paper: #eef4ef;
  --surface: #f0f0ef;
  --juniper: #21423b;
  --juniper-soft: #e8efea;
  --claret: #8d2738;
  --gold: #d7c957;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--claret);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.94;
}

h1 {
  max-width: 820px;
  font-size: 5.6rem;
}

h2 {
  max-width: 760px;
  font-size: 3.75rem;
}

h3 {
  font-size: 1.7rem;
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  border-color: var(--juniper);
  background: var(--juniper);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  background: rgba(240, 240, 239, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 166px;
  min-width: 150px;
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 700;
  line-height: 0.88;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--claret);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, top 180ms ease, box-shadow 180ms ease;
}

.menu-toggle::before {
  top: 15px;
  box-shadow: 0 6px 0 var(--ink);
}

.menu-toggle::after {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] {
  border-color: var(--ink);
  background: var(--ink);
}

.menu-toggle[aria-expanded="true"]::before,
.menu-toggle[aria-expanded="true"]::after {
  background: var(--white);
}

.menu-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: 0 0 0 transparent;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 136px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.88) 0%, rgba(8, 10, 9, 0.64) 48%, rgba(8, 10, 9, 0.22) 100%),
    url("../images/interior-counter.jpg") center/cover;
}

.hero.compact {
  min-height: 58vh;
  padding-bottom: 64px;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .button:not(.light) {
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--white);
}

.hero .button:not(.light):hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 12, 10, 0.45);
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.hero-panel span {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.section {
  padding: 94px 0;
}

.section.paper {
  background: var(--paper);
}

.section.juniper {
  background: var(--juniper);
  color: var(--white);
}

.section.juniper h2,
.section.juniper h3 {
  color: var(--white);
}

.section.juniper p {
  color: rgba(255, 255, 255, 0.76);
}

.section.juniper .eyebrow {
  color: #ffdce4;
}

.section-header {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: end;
  gap: 58px;
  margin-bottom: 48px;
}

.about-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 52px;
  align-items: center;
}

.about-copy,
.page-copy {
  display: grid;
  gap: 24px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.feature-image img,
.gallery-item img,
.menu-photo img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 4.8;
  margin-bottom: 34px;
}

.stats,
.service-grid,
.menu-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.stat,
.service,
.menu-card,
.quote,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stat {
  min-height: 118px;
  padding: 20px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service {
  min-height: 250px;
  padding: 26px;
}

.service span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--juniper-soft);
  color: var(--juniper);
  font-weight: 900;
}

.service p,
.menu-card p,
.faq-item p {
  margin-top: 14px;
}

.menu-grid {
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.section.juniper .menu-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.price {
  margin-top: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
}

.menu-photo {
  position: sticky;
  top: 110px;
}

.menu-photo img {
  max-height: 820px;
  object-fit: contain;
  background: var(--paper);
}

.menu-section {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-row p {
  margin-top: 6px;
}

.menu-row strong {
  color: var(--claret);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.feature-image {
  height: 560px;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.feature b {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--claret);
  color: var(--white);
}

.feature p {
  margin-top: 4px;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: stretch;
}

.gallery-item img {
  aspect-ratio: 4 / 4.2;
}

.gallery-item.tall img {
  aspect-ratio: 4 / 5.4;
}

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

.gallery-item.wide img {
  aspect-ratio: 8 / 4.2;
}

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

.instagram-feed a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--juniper);
}

.instagram-feed img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.instagram-feed a:hover img {
  opacity: 0.78;
  transform: scale(1.04);
}

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

.quote {
  min-height: 250px;
  padding: 30px;
}

.quote p {
  color: var(--ink);
  font-size: 1.02rem;
}

.quote cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  padding: 28px;
}

.cta {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.58)),
    url("../images/exterior-entrance.jpg") center/cover;
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
}

.contact-grid {
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--juniper);
  color: var(--white);
}

.contact-panel h2,
.contact-panel .eyebrow {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 32px 0;
}

.contact-list b {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--white);
  font-weight: 800;
}

.map {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.08);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.contact-card {
  padding: 26px;
}

.contact-card p {
  margin-top: 10px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

@media (max-width: 1020px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-grid,
  .section-header,
  .about-grid,
  .feature-grid,
  .contact-grid,
  .cta-inner,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 370px;
  }

  .service-grid,
  .menu-grid,
  .quote-grid,
  .contact-cards,
  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-photo {
    position: static;
  }

  .feature-image {
    height: 430px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    width: 142px;
    min-width: 142px;
  }

  .brand img {
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(240, 240, 239, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 88vh;
    padding: 116px 0 44px;
    background-position: center;
  }

  .hero.compact {
    min-height: 56vh;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    gap: 22px;
    margin-bottom: 34px;
  }

  .image-stack,
  .stats,
  .service-grid,
  .menu-grid,
  .quote-grid,
  .faq-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item.wide img {
    aspect-ratio: 4 / 4.2;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .service,
  .menu-card,
  .quote {
    min-height: auto;
  }

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

  .feature b {
    width: 44px;
    height: 44px;
  }

  .feature-image {
    height: 340px;
  }

  .contact-panel {
    padding: 26px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta {
    padding: 68px 0;
  }

  .map {
    min-height: 340px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

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

  .button {
    width: 100%;
  }
}
