/* Typography & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f4f5f1;
  background-color: #050605; /* black base, sage accents */
  line-height: 1.6;
}

/* Night theme toggle (South African time, applied via JS) */
body.theme-night {
  background-color: #050605;
  color: #f4f5f1;
}

body.theme-night h1,
body.theme-night h2,
body.theme-night h3 {
  color: #fcfdf9;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 1rem;
  color: #fcfdf9;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #6f826a; /* sage green primary */
  color: #fdfcf7;
  border-color: #566657;
}

.btn.primary:hover {
  background: #173723;
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: #4f6452;
  border-color: rgba(79, 100, 82, 0.55);
}

.btn.ghost:hover {
  background: rgba(23, 55, 35, 0.04);
}

.btn.full-width {
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(250, 247, 236, 0.7);
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(79, 100, 82, 0.9),
    rgba(79, 100, 82, 0.8),
    transparent
  ); /* sage-tinted header (day) */
  color: #fdfaf3;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(10, 26, 15, 0.4);
  background: linear-gradient(
    to bottom,
    rgba(79, 100, 82, 0.97),
    rgba(79, 100, 82, 0.9),
    rgba(79, 100, 82, 0.78)
  );
}

.site-header.is-scrolled .header-inner {
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fdfcf7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 240, 229, 0.4);
  overflow: hidden;
}

.logo-tree {
  font-family: "Playfair Display", serif;
  color: #fdfaf3;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.logo-circle img {
  width: 115%;
  height: 115%;
  object-fit: cover;
}

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

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.site-nav a.is-active {
  color: #ffffff;
}

.site-nav a.is-active::after {
  width: 100%;
}

.site-nav a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: rgba(246, 242, 232, 0.8);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 233, 0.6);
  font-size: 0.78rem;
}

.btn-nav:hover {
  background: rgba(252, 248, 239, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.2rem;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fdfaf3;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  color: #fdfaf3;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 5rem;
  background-image: url("client/576930547_122162100368762381_7940126523097298559_n.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.4)
    ),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(720px, 86vw);
  margin: 8rem auto 0;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
  max-width: 34rem;
  color: rgba(247, 243, 233, 0.9);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* About */
.about {
  background: #050806;
}

.about .column:first-child p {
  font-size: 0.98rem;
}

.about-cards {
  display: grid;
  gap: 1.4rem;
}

.feature-card {
  background: #101712;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(124, 150, 126, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #e2e7de;
}

/* Menu */
.menu {
  background: #6b8068; /* deep sage for menu */
  color: #fdfaf3;
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.6rem;
}

.section-header p {
  margin: 0;
  color: rgba(247, 243, 233, 0.78);
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.4rem 3rem;
  align-items: flex-start;
}

.menu-column + .menu-column {
  border-left: 1px solid rgba(247, 243, 233, 0.16);
  padding-left: 2rem;
}

.menu-column h3 {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
  font-weight: 600;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.2rem;
  margin-top: 2rem;
}

.menu-group .menu-list {
  gap: 0.6rem;
}

.menu-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.8rem;
  row-gap: 0.8rem;
}

.menu-item {
  font-size: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(247, 243, 233, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.75rem;
}

.menu-list--grid .menu-item {
  border-bottom: none;
  padding-bottom: 0.4rem;
}

.menu-item-header {
  /* Let the name and price participate directly in the menu-item grid */
  display: contents;
}

.menu-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  grid-column: 1;
}

.menu-price {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(247, 243, 233, 0.95);
  white-space: nowrap;
  grid-column: 2;
  text-align: right;
}

.menu-desc {
  font-size: 0.86rem;
  color: rgba(247, 243, 233, 0.78);
  grid-column: 1;
}

.menu-group-title {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.86);
}

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

@media (max-width: 900px) {
  .menu-groups-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

.menu-note {
  margin-top: 2rem;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(247, 243, 233, 0.7);
}

/* Experience */
.experience {
  background: #050806;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-list li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #111812;
  font-size: 0.82rem;
}

.ambience-card {
  background: radial-gradient(circle at top left, #5f7561, #435444);
  color: #fdfaf3;
  border-radius: 1.4rem;
  padding: 2rem 2.2rem;
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.experience-right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.video-card {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #050806;
  border: 1px solid rgba(124, 150, 126, 0.3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-caption {
  padding: 0.9rem 1.4rem 1.2rem;
  font-size: 0.84rem;
  color: #dde3d9;
}

.owner-card,
.chef-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border-radius: 1.3rem;
  background: #101712;
  border: 1px solid rgba(124, 150, 126, 0.32);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}

.owner-photo,
.chef-photo {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
}

.owner-photo img,
.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.owner-content,
.chef-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.owner-name,
.chef-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.owner-role,
.chef-role {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7b6c;
}

.owner-bio,
.chef-bio {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #dde3d9;
}

/* Reviews */
.reviews {
  background: #050806;
}

.reviews-carousel {
  max-width: 640px;
  margin: 0 auto 1.6rem;
  position: relative;
}

.review-card {
  display: none;
  padding: 1.8rem 1.9rem;
  border-radius: 1.4rem;
  background: #101712;
  border: 1px solid rgba(124, 150, 126, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-card.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.review-stars {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #c49b3f;
  margin-bottom: 0.6rem;
}

.review-text {
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
  color: #e3e8df;
}

.review-meta {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a897a;
}

.review-more {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  color: #cfd5c9;
}

.review-more a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(68, 84, 69, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.review-dot.is-active {
  background: #6f826a;
  border-color: #6f826a;
  transform: scale(1.1);
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.quote-meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Location */
.location {
  background: #050806;
}

.location-details p {
  margin-bottom: 1.3rem;
  font-size: 0.92rem;
}

.map-placeholder {
  display: none;
}

.map-embed {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 35, 18, 0.35);
  background: #d7decf;
}

.map-fallback {
  padding: 1.8rem 1.6rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  background: radial-gradient(circle at top, #6f826a, #050806);
  color: #e8eee3;
}

.map-fallback p {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-fallback a {
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 239, 231, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .map-fallback {
    min-height: 320px;
  }
}

.map-caption {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: #4b5947;
}

/* Reservations */
.reservations {
  background: #556a53; /* deep sage */
  color: #fdfaf3;
}

.reservations .column p {
  color: rgba(247, 243, 233, 0.9);
}

.contact-items p a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reservation-form {
  background: rgba(48, 69, 51, 0.95);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(249, 245, 235, 0.08);
  backdrop-filter: blur(10px);
}

.form-row {
  margin-bottom: 1rem;
}

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

label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: rgba(247, 243, 233, 0.85);
}

input,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(248, 244, 235, 0.22);
  padding: 0.55rem 0.7rem;
  font: inherit;
  background: rgba(40, 59, 43, 0.96);
  color: #fdfaf3;
}

input::placeholder,
textarea::placeholder {
  color: rgba(249, 245, 235, 0.45);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #e2d3b0;
  box-shadow: 0 0 0 1px rgba(226, 211, 176, 0.4);
}

.form-footnote {
  margin-top: 0.8rem;
  font-size: 0.76rem;
  color: rgba(247, 243, 233, 0.78);
}

.reservation-widget {
  margin-top: 1.2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(249, 245, 235, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  background: rgba(40, 59, 43, 0.96);
}

.reservation-widget iframe {
  display: block;
}

/* Footer */
.site-footer {
  background: #384535;
  color: rgba(232, 227, 213, 0.84);
  padding: 1.6rem 0 2rem;
  font-size: 0.78rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  flex-wrap: wrap;
}

.footer-main {
  flex: 1 1 220px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(232, 227, 213, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.9;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(237, 243, 232, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.footer-meta {
  margin-top: 0.3rem;
  color: rgba(232, 227, 213, 0.7);
}

.footer-credit {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(226, 221, 210, 0.78);
}

.footer-credit a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Night theme overrides */
body.theme-night .site-header {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.86),
    transparent
  );
}

body.theme-night .about,
body.theme-night .experience,
body.theme-night .location {
  background: #050806;
}

body.theme-night .feature-card {
  background: #0d130f;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

body.theme-night .pill-list li {
  background: #111812;
}

body.theme-night .menu {
  background: #050806;
}

body.theme-night .section-header p,
body.theme-night .menu-desc,
body.theme-night .menu-note {
  color: rgba(238, 240, 235, 0.86);
}

body.theme-night .location-details p,
body.theme-night .map-caption {
  color: rgba(224, 231, 222, 0.86);
}

body.theme-night .reservations {
  background: #020302;
}

body.theme-night .reservation-form {
  background: rgba(12, 17, 12, 0.96);
}

body.theme-night .site-footer {
  background: #020302;
}

/* Responsive */
@media (max-width: 840px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    align-items: flex-end;
  }

  .hero-content {
    margin-top: 6rem;
    margin-bottom: 2.8rem;
  }

  .header-inner {
    padding-inline: 0.2rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0.6rem 4vw 0.9rem;
    background: rgba(8, 14, 9, 0.96);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .site-header.nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.75rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .menu-column + .menu-column {
    border-left: none;
    padding-left: 0;
  }

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


