:root {
  --ink: #171412;
  --muted: #69635b;
  --paper: #fffaf2;
  --soft: #f4eadb;
  --line: rgba(23, 20, 18, 0.14);
  --gold: #b7813a;
  --leaf: #49664a;
  --wine: #7e2638;
  --blue: #0f5f63;
  --blue-deep: #06383f;
  --teal-glow: rgba(15, 95, 99, 0.34);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(31, 25, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 40px rgba(31, 25, 18, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 132px clamp(18px, 6vw, 88px) 60px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=84") center / cover;
  transform: scale(1.06);
  animation: heroZoom 13s ease-out forwards;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 11, 9, 0.78), rgba(13, 11, 9, 0.28) 56%, rgba(13, 11, 9, 0.64));
}

.hero-content {
  position: relative;
  max-width: 760px;
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title {
  animation: titleSlideIn 1.45s cubic-bezier(0.18, 0.9, 0.22, 1) both;
}

.hero-copy {
  position: relative;
  max-width: 650px;
  min-height: 4.2em;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-copy::after {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: currentColor;
  content: "";
  transform: translateY(3px);
  animation: caretBlink 0.85s steps(1) infinite;
}

.hero-copy.typed::after {
  display: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(126, 38, 56, 0.24);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  bottom: 44px;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  opacity: 0.78;
}

.hero-panel strong {
  display: block;
  margin: 6px 0;
  font-size: 1.45rem;
}

.section-band {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

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

.feature,
blockquote {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature {
  animation: cardFloat 4.2s ease-in-out infinite;
}

.feature:nth-child(2) {
  animation-delay: 0.35s;
}

.feature:nth-child(3) {
  animation-delay: 0.7s;
}

.feature:hover,
blockquote:hover,
.menu-item:hover {
  animation: none;
  color: var(--white);
  border-color: rgba(93, 185, 177, 0.5);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 28px 76px var(--teal-glow);
  transform: translateY(-12px) scale(1.055);
}

.feature:hover span,
.feature:hover p,
blockquote:hover p,
blockquote:hover cite,
.menu-item:hover span,
.menu-item:hover p,
.menu-item:hover strong {
  color: var(--white);
}

.feature span {
  color: var(--gold);
  font-weight: 900;
}

.feature h3,
.menu-item h3,
.service-detail h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.feature p,
.split-copy p,
.menu-item p,
.service-detail p,
.contact-copy p,
blockquote p {
  color: var(--muted);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.86) 48%, rgba(15, 34, 31, 0.7) 100%),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.split-section::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(183, 129, 58, 0.18);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.split-image img {
  width: 100%;
  min-height: 540px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.stats div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stats dt {
  color: var(--leaf);
  font-size: 2rem;
  font-weight: 900;
}

.stats dd {
  margin: 0;
  color: var(--muted);
}

.menu-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.83), rgba(12, 16, 14, 0.5)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
}

.menu-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(183, 129, 58, 0.22), transparent 34%);
  content: "";
  pointer-events: none;
}

.menu-section > * {
  position: relative;
  z-index: 1;
}

.menu-section .section-heading h2 {
  color: var(--white);
}

.menu-section .eyebrow {
  color: #f0bd72;
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.menu-item {
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 18px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 25, 18, 0.07);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-item img {
  width: 168px;
  height: 124px;
  border-radius: 6px;
  object-fit: cover;
}

.menu-item span {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-item strong {
  color: var(--leaf);
  font-size: 1.3rem;
}

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

.catering .section-heading h2,
.catering .service-detail p {
  color: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.service-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-tab {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transform-origin: left center;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.service-tab:hover {
  border-color: rgba(93, 185, 177, 0.55);
  background: rgba(93, 185, 177, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateX(8px) scale(1.045);
}

.service-tab.active {
  color: var(--white);
  border-color: rgba(93, 185, 177, 0.72);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 48px rgba(15, 95, 99, 0.38);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(15, 95, 99, 0.1));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.service-detail.service-enter {
  animation: serviceSlideIn 0.62s cubic-bezier(0.18, 0.9, 0.22, 1) both;
}

.service-detail img {
  width: 100%;
  height: 390px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-detail:hover img {
  transform: scale(1.045);
}

.service-detail ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.service-detail li {
  margin: 10px 0;
}

.service-detail h3,
.service-detail p,
.service-detail li {
  animation: detailTextIn 0.68s ease both;
}

.service-detail p {
  animation-delay: 0.08s;
}

.service-detail li:nth-child(1) {
  animation-delay: 0.14s;
}

.service-detail li:nth-child(2) {
  animation-delay: 0.2s;
}

.service-detail li:nth-child(3) {
  animation-delay: 0.26s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
}

.gallery-grid img:hover {
  filter: saturate(1.12) contrast(1.05);
  box-shadow: 0 24px 60px rgba(15, 95, 99, 0.25);
  transform: scale(1.035);
}

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

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

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 234, 219, 0.96), rgba(244, 234, 219, 0.82)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
}

.testimonials::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(15, 95, 99, 0.2), transparent 34%);
  content: "";
  pointer-events: none;
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

blockquote {
  margin: 0;
  animation: cardFloat 4.8s ease-in-out infinite;
}

blockquote:nth-child(2) {
  animation-delay: 0.4s;
}

blockquote:nth-child(3) {
  animation-delay: 0.8s;
}

blockquote p {
  margin-top: 0;
  font-size: 1.05rem;
}

blockquote cite {
  color: var(--leaf);
  font-style: normal;
  font-weight: 900;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 84px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(23, 20, 18, 0.9), rgba(73, 102, 74, 0.78)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-lines a,
.contact-lines span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.contact-lines a:hover,
.contact-lines span:hover {
  border-color: rgba(93, 185, 177, 0.55);
  background: rgba(15, 95, 99, 0.34);
  transform: translateX(8px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-form:hover {
  box-shadow: 0 30px 90px rgba(15, 95, 99, 0.28);
  transform: translateY(-6px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer div {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-160px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes serviceSlideIn {
  from {
    opacity: 0;
    transform: translateX(120px) scale(0.97);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes detailTextIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .main-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .intro-grid,
  .testimonial-grid,
  .split-section,
  .service-layout,
  .service-detail,
  .contact {
    grid-template-columns: 1fr;
  }

  .split-image img,
  .service-detail img {
    min-height: 0;
    height: 340px;
  }

  .menu-item {
    grid-template-columns: 112px 1fr;
  }

  .menu-item img {
    width: 112px;
    height: 118px;
  }

  .menu-item strong {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 19vw, 5.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .menu-item {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .menu-item img {
    width: 100%;
    height: 190px;
  }

  .menu-item strong {
    grid-column: auto;
  }

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

  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form {
    padding: 20px;
  }
}
