/* THEME — warm light background, white cards, orange/red accents, black highlights */

:root {
  --bg: #f8eee5;          /* overall page background */
  --bg-alt: #f4e4d5;
  --card-bg: #ffffff;     /* section card background */
  --text-main: #231310;
  --text-muted: #806254;
  --accent: #ff6b2c;      /* bright orange */
  --accent-deep: #c5331e; /* deeper red/orange */
  --border: #e2cbb7;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #ffe0c7 0%, transparent 45%),
    linear-gradient(#fdf7f1, var(--bg));
  color: var(--text-main);
  line-height: 1.6;
}

/* GENERAL LAYOUT */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* give every section space and offset for sticky header */

.hero,
.section {
  scroll-margin-top: 84px;
  padding: 4.5rem 0;
}

/* ---- SECTION CARDS ----
   White cards that pop as you scroll
*/

.hero > .container,
.section > .container {
  background: var(--card-bg);
  border-radius: 26px;
  padding: 3rem 2.6rem;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

/* subtle orange border highlight on cards */

.hero > .container::before,
.section > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid rgba(255, 107, 44, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

/* soft warm gradient overlay for depth */

.hero > .container::after,
.section > .container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 44, 0.07),
    transparent 45%,
    rgba(0, 0, 0, 0.03)
  );
  pointer-events: none;
}

/* POP ON SCROLL */

@keyframes section-pop {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* scroll-linked animation where supported */

@supports (animation-timeline: view()) {
  .hero > .container,
  .section > .container {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation-name: section-pop;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(0.18, 0.8, 0.25, 1);
    animation-fill-mode: forwards;
    animation-timeline: view();
    animation-range: entry 10% cover 45%;
  }
}

/* extra breathing room between sections */

.section + .section {
  padding-top: 3.4rem;
}

/* HEADER — black bar = highlight */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 0 2px #ffffff, 0 0 14px rgba(255, 107, 44, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0;
}

.main-nav a:hover {
  color: #ffffff;
}

.header-cta {
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 107, 44, 0.5);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: 44px; /* good tap size */
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--border);
  background: #ffffff;
  color: var(--accent-deep);
}

.btn-ghost:hover {
  background: #fff5ee;
}

/* HERO */

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  color: var(--accent-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.8rem 0 0.4rem;
}

.hero-lede {
  font-size: 0.98rem;
  max-width: 32rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.3rem 0 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
}

.hero-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-meta dd {
  margin: 0.15rem 0 0;
}

.hero-photo {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  background: #000; /* black highlight behind the photo */
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.7);
  max-width: 380px;
}

.hero-image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-image-card figcaption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

/* GENERIC SECTION HEADER */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin: 0;
}

.section-header p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff5ee;
  color: var(--accent-deep);
}

/* TWO-COL LAYOUT */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

/* VISIT */

.visit-card {
  background: #000; /* black highlight card */
  color: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.visit-card ul {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0.8rem;
  font-size: 0.9rem;
}

.visit-card li + li {
  margin-top: 0.35rem;
}

.visit-card li span {
  font-weight: 600;
  margin-right: 0.35rem;
  color: var(--accent);
}

.visit-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.chip-link,
.chip-text {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.chip-link {
  background: #000;
  border: 1px solid var(--accent);
  color: #ffffff;
  text-decoration: none;
}

.chip-text {
  background: #fff5ee;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fce1d0;
}

/* MENU */

.menu-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.menu-column h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.menu-subheading {
  margin-top: 1.4rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.menu-list li + li {
  margin-top: 0.8rem;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-item-name {
  font-weight: 600;
}

.menu-item-price {
  white-space: nowrap;
  color: var(--accent-deep);
}

.menu-item-desc {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.menu-small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CATERING NOTE */

.catering-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

/* STORY */

.story-card {
  background: #000; /* black highlight card */
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  color: #ffffff;
}

.story-card ul {
  padding-left: 1.1rem;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-auto-rows: minmax(230px, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-item {
  background: #000; /* black highlight around images */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-item-large {
  grid-row: span 2;
}

/* BOOKING & REVIEWS */

.booking-card,
.reviews-card {
  background: #000; /* black highlight cards */
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.booking-card h2 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin: 1.1rem 0 1rem;
  font-size: 0.85rem;
}

.booking-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.booking-meta dd {
  margin: 0.1rem 0 0;
}

.booking-contact {
  font-size: 0.9rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.reviews-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.review-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1rem;
  font-size: 0.85rem;
}

.review-list li + li {
  margin-top: 0.8rem;
}

.stars {
  color: #ffb628;
  font-size: 0.8rem;
}

.review-author {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.reviews-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent);
}

/* FOOTER — black highlight bar */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2rem 0 2.4rem;
  background: #000000;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 600;
}

.footer-note {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--accent);
}

/* RESPONSIVE — TABLET */

@media (max-width: 960px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-inner,
  .two-col,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-photo {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item-large {
    grid-row: auto;
  }

  .hero > .container,
  .section > .container {
    padding: 2.4rem 1.8rem;
    border-radius: 22px;
  }
}

/* RESPONSIVE — PHONE */

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0.1rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    flex: 1 1 auto;
  }

  .header-cta {
    order: 2;
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
    margin-left: auto;
  }

  /* show nav on mobile as horizontal scroll pills */
  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    gap: 0.9rem;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .hero,
  .section {
    padding: 3.3rem 0;
  }

  .hero > .container,
  .section > .container {
    padding: 1.8rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .hero-photo {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

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