:root {
  --ink: #f7f3e8;
  --muted: #c9c0ad;
  --paper: #fff8ed;
  --charcoal: #10130f;
  --charcoal-2: #171b15;
  --green: #214a38;
  --green-2: #123024;
  --gold: #d79a38;
  --amber: #f4bf63;
  --tomato: #a43c2e;
  --line: rgba(255, 248, 237, 0.16);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #0d100d 0%, #141711 42%, #fff8ed 42%, #fff8ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #141711;
  background: var(--amber);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--ink);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 19, 15, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #15110a;
  font-weight: 900;
  background: linear-gradient(145deg, var(--amber), #f6df9d);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(215, 154, 56, 0.28);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(247, 243, 232, 0.78);
  font-size: 0.93rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--amber);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #15110a;
  font-weight: 800;
  background: var(--amber);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(215, 154, 56, 0.26);
}

.header-call svg,
.btn svg,
.mobile-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 46px);
  padding: 112px clamp(18px, 5vw, 72px) 62px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-bg {
  z-index: -3;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.94) 0%, rgba(10, 12, 9, 0.78) 34%, rgba(10, 12, 9, 0.35) 66%, rgba(10, 12, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 12, 9, 0.58) 0%, rgba(10, 12, 9, 0.06) 45%, rgba(10, 12, 9, 0.82) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 18%, rgba(244, 191, 99, 0.12) 45%, transparent 68%);
  transform: translateX(-65%);
  animation: lightSweep 7s ease-in-out infinite;
}

.hero-text {
  width: min(720px, 100%);
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.15rem, 12vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(247, 243, 232, 0.86);
  font-size: clamp(1.08rem, 3vw, 1.42rem);
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #14110a;
  background: linear-gradient(135deg, #f4bf63, #d79a38);
  box-shadow: 0 18px 38px rgba(215, 154, 56, 0.28);
}

.btn-primary::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-110%);
  animation: buttonGleam 4.8s ease-in-out infinite;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 248, 237, 0.12);
  border-color: rgba(255, 248, 237, 0.2);
  backdrop-filter: blur(18px);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(255, 248, 237, 0.28);
  background: rgba(16, 19, 15, 0.24);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(690px, 100%);
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-weight: 850;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(255, 248, 237, 0.34);
  border-radius: 999px;
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  margin-top: 9px;
  background: var(--amber);
  border-radius: 999px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.about-section,
.gallery-section,
.contact-section {
  color: #161913;
  background: var(--paper);
}

.menu-section,
.trust-section,
.offer-section {
  background:
    linear-gradient(180deg, var(--charcoal-2), var(--green-2));
}

.split {
  display: grid;
  gap: 28px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.offer-card h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.contact-copy p,
.offer-card p,
.feature-panel p,
.info-card p,
.trust-item span,
.contact-form p {
  color: currentColor;
  opacity: 0.74;
}

.section-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.feature-panel {
  align-self: end;
  padding: clamp(22px, 5vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(33, 74, 56, 0.96), rgba(16, 19, 15, 0.96)),
    url("../images/sables-dish-05.jpg") center / cover;
  background-blend-mode: multiply;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-panel strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 1;
}

.feature-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber);
  font-weight: 900;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
}

.menu-section .section-heading,
.trust-section .section-heading,
.offer-section .section-heading {
  color: var(--ink);
}

.card-grid,
.trust-strip {
  display: grid;
  gap: 14px;
}

.info-card,
.trust-item,
.contact-form,
.offer-card {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: var(--radius);
}

.info-card {
  min-height: 235px;
  padding: 24px;
  background: rgba(255, 248, 237, 0.08);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.info-card:hover,
.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 191, 99, 0.38);
  background: rgba(255, 248, 237, 0.12);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #14110a;
  background: var(--amber);
  border-radius: var(--radius);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.info-card h3 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(20, 17, 10, 0.13);
}

.gallery-item:nth-child(3n + 1) {
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.05);
}

.trust-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-item {
  padding: 20px;
  background: rgba(255, 248, 237, 0.07);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 1.05rem;
}

.contact-layout {
  display: grid;
  gap: 26px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #161913;
  background: #ffffff;
  border: 1px solid rgba(22, 25, 19, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 25, 19, 0.06);
}

.contact-list span {
  color: var(--tomato);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(20px, 5vw, 30px);
  color: var(--ink);
  background: #171b15;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: var(--radius);
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 12px 14px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.map-wrap {
  width: min(var(--max), calc(100% - clamp(36px, 10vw, 144px)));
  height: min(56vw, 430px);
  min-height: 310px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(22, 25, 19, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(22, 25, 19, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.offer-card {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.11), rgba(255, 248, 237, 0.04)),
    linear-gradient(90deg, rgba(164, 60, 46, 0.16), rgba(33, 74, 56, 0.2));
  box-shadow: var(--shadow);
}

.offer-card p {
  max-width: 720px;
  margin: 18px 0 0;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 34px clamp(18px, 5vw, 72px) 108px;
  color: rgba(247, 243, 232, 0.82);
  background: #0d100d;
}

.site-footer strong,
.site-footer span,
.site-footer a,
.site-footer small {
  display: block;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 7px;
  color: var(--ink);
  background: rgba(16, 19, 15, 0.88);
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  gap: 4px;
  color: #14110a;
  font-size: 0.76rem;
  font-weight: 900;
  background: var(--amber);
  border-radius: 6px;
}

.mobile-cta svg {
  width: 19px;
  height: 19px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 10, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 248, 237, 0.12);
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes lightSweep {
  0%,
  54% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

@keyframes buttonGleam {
  0%,
  52% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(19px);
    opacity: 0;
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 2;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1fr auto;
  }

  .site-footer {
    grid-template-columns: 1.2fr 0.8fr auto;
    align-items: start;
    padding-bottom: 42px;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 719px) {
  .site-header {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero {
    min-height: calc(100svh - 190px);
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 9, 0.92) 0%, rgba(10, 12, 9, 0.76) 54%, rgba(10, 12, 9, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 12, 9, 0.48) 0%, rgba(10, 12, 9, 0.06) 40%, rgba(10, 12, 9, 0.88) 100%);
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-facts {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

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

  .map-wrap {
    width: calc(100% - 36px);
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .offer-card h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }
}

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

  .header-call {
    font-size: 0.86rem;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-cta {
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  .mobile-cta a {
    font-size: 0.7rem;
  }
}

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