:root {
  --bg-dark: #0b0809;
  --bg-grad-start: #120e12;
  --bg-grad-end: #302229;
  --card-bg: rgba(14, 11, 13, 0.82);
  --surface: rgba(34, 26, 31, 0.78);
  --accent: #c8985d;
  --accent-soft: rgba(201, 152, 93, 0.15);
  --text-primary: #f7f2ef;
  --text-muted: rgba(247, 242, 239, 0.72);
  --stat: #7be7c9;
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.22);
  --max-width: 1200px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(72, 39, 47, 0.35), transparent 55%),
    linear-gradient(160deg, var(--bg-grad-start), var(--bg-grad-end) 65%, #1a1418 100%);
  color: var(--text-primary);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(11, 8, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.branding img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  padding: 4px;
}

.brand-overline {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.45em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.cta {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #120e12;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 4.5rem);
}

.hero-media {
  position: relative;
  min-height: clamp(380px, 60vw, 520px);
  border-radius: 24px;
  background: url("images/logo_on_the_wall.jpg") center/cover;
  box-shadow: var(--shadow-xl);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.hero-content {
  max-width: 540px;
}

.hero-overline {
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-copy {
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button.primary {
  background: var(--accent);
  color: #120e12;
  font-weight: 600;
}

.button.primary:hover,
.button.primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.primary:disabled,
button.primary[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  background: transparent;
}

.button.ghost:hover,
.button.ghost:focus {
  border-color: var(--accent);
  color: var(--accent);
}

main section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  animation: section-rise 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.highlights {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.highlight-image {
  position: relative;
}

.highlight-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.floating-stats {
  position: absolute;
  left: 12%;
  bottom: -8%;
  padding: 1.6rem 2rem;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 220px;
}

.stat-value {
  display: block;
  font-size: 2.8rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--stat);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.highlight-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1.2rem;
}

.highlight-copy p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.pillars {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.pillars li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 152, 93, 0.25);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.services {
  background: rgba(12, 9, 11, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-card {
  background: var(--card-bg);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.service-body p {
  margin: 0;
  color: var(--text-muted);
}

.menu-preview {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-preview img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-preview img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.menu-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
}

.gallery {
  background: radial-gradient(circle at left, rgba(201, 152, 93, 0.1), transparent 60%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  cursor: zoom-in;
  filter: saturate(0.95);
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  filter: saturate(1.1);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  background: rgba(11, 8, 9, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  margin: 0 0 1.4rem;
}

.booking-copy p {
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.booking-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.booking-perks li {
  padding-left: 1.5rem;
  position: relative;
}

.booking-perks li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.booking-form {
  background: var(--card-bg);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.4rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 9, 11, 0.85);
  color: var(--text-primary);
  font: inherit;
  transition: border var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 152, 93, 0.18);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.form-footnote {
  margin: -0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-success {
  margin: 0;
  font-size: 0.95rem;
  color: #7be7c9;
  min-height: 1.2rem;
}

.contact {
  background: rgba(11, 8, 9, 0.65);
}

.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 4vw, 2.6rem);
  display: grid;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent 75%);
}

.contact-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.contact-block {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-block:first-of-type {
  border-top: none;
  padding-top: 0.4rem;
}

.contact-block-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(201, 152, 93, 0.25);
}

.contact-block-icon svg {
  width: 20px;
  height: 20px;
}

.contact-block-title {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
}

.contact-block-body p {
  margin: 0 0 0.6rem;
  color: var(--text-muted);
}

.contact-block-body p:last-of-type {
  margin-bottom: 0.4rem;
}

.contact-card .contact-details {
  display: grid;
  gap: 0.45rem;
}

.contact-card .contact-details a {
  color: var(--text-primary);
  transition: color var(--transition);
}

.contact-card .contact-details a:hover,
.contact-card .contact-details a:focus {
  color: var(--accent);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list .closed {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
}

.contact iframe {
  width: 100%;
  border: 0;
  border-radius: 24px;
  min-height: 360px;
  box-shadow: var(--shadow-md);
}

.site-footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: rgba(8, 6, 7, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #fff;
  padding: 4px;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-nav {
    order: 1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .highlights,
  .booking,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: clamp(320px, 45vw, 420px);
  }

  .floating-stats {
    left: auto;
    right: 8%;
    bottom: -10%;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .cta {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
    justify-content: center;
  }

  .floating-stats {
    position: static;
    margin-top: -4.5rem;
  }

  .gallery-grid img,
  .service-card img {
    height: 200px;
  }

  .contact iframe {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 2.8rem);
  }

  .booking-form {
    padding: 1.5rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
