/*
  Chandos - Visual Overhaul
  A more modern, image-focused, and minimalist design system.
*/

/* 1. Design Tokens & Base Styles
-------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: fadeIn 600ms 200ms ease-out forwards;
  font-size: 15px;
  text-align: center;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 2. Typography
-------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 1rem 0; 
}
h2 { font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); }
p { margin: 0 auto 1rem; max-width: 65ch; }
a { color: var(--accent); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--accent-hover); }

/* 3. Hero Banner Section
-------------------------------------------------- */
.hero-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Hero blur overlay - fades in on scroll */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 58, 58, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 0;
  pointer-events: none;
}

.hero-banner.hero-scrolled::after {
  opacity: 1;
}

/* Half-height hero for non-lander pages */
.hero-banner.hero-half-width {
  min-height: 50vh;
  height: 50vh;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* 4. Header & Navigation (over hero)
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}


.hero-banner .site-header {
  background: transparent;
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
}

.site-nav-left {
  grid-column: 1;
  justify-self: start;
}

/* Hide mobile-only nav items on desktop */
.mobile-nav-item {
  display: none;
}

/* Hide hamburger button on desktop */
button.nav-toggle {
  display: none;
}

/* Hide mobile nav on desktop */
.mobile-nav {
  display: none;
}

.brand {
  grid-column: 2;
  justify-self: center;
  align-self: center;
}

.brand a {
  text-decoration: none;
  display: inline-block;
}

.brand-logo {
  display: block;
  height: clamp(2.5rem, 4vw, 5rem);
  width: auto;
}

.site-nav-right {
  grid-column: 3;
  justify-self: end;
}

.site-nav-left ol,
.site-nav-right ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.site-nav-left li,
.site-nav-right li {
  margin-bottom: 0;
}

.site-nav-left a,
.site-nav-right a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 200ms ease, background 200ms ease, color 150ms ease;
  white-space: nowrap;
}

.site-nav-left a:hover,
.site-nav-right a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.hero-banner .site-nav-left a,
.hero-banner .site-nav-right a {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-nav-left a:hover,
.site-nav-right a:hover {
  color: var(--accent);
}

.hero-banner .site-nav-left a:hover,
.hero-banner .site-nav-right a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.site-nav-left a.active,
.site-nav-right a.active {
  color: var(--accent);
  font-weight: 600;
}

.hero-banner .site-nav-left a.active,
.hero-banner .site-nav-right a.active {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  grid-column: 3;
  align-self: center;
}

/* Tablet: tighten nav spacing */
@media (max-width: 1024px) {
  .site-nav-left a,
  .site-nav-right a {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .site-nav-left ol,
  .site-nav-right ol {
    gap: 0.75rem;
  }

  .site-header .container {
    gap: 1rem;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 300px;
  }

  .hero-gradient-overlay {
    height: 60%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 100%
    );
  }

  .site-header .container {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
  }

  .brand {
    grid-column: 1;
  }

  /* Mobile: Hide desktop nav */
  .site-nav-left,
  .site-nav-right {
    display: none;
  }

  /* Mobile nav panel - slides in from right */
  .mobile-nav[data-visible] {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    z-index: 9998;
    background: rgba(74, 74, 74, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: slideInFromRight 250ms ease-out;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  @keyframes slideInFromRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .mobile-nav ol {
    flex-direction: column;
    gap: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav li {
    margin-bottom: 2rem;
  }

  .mobile-nav a {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--text);
    text-shadow: none;
    padding: 0.5rem 1rem;
    display: block;
    border-bottom: 2px solid transparent;
    transition: border-color 200ms ease;
  }

  .mobile-nav a:hover {
    border-bottom-color: var(--accent);
  }

  /* Hamburger button - fixed position in top-right */
  button.nav-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-toggle:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hamburger {
    display: block;
    position: relative;
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: transform 300ms ease;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 300ms ease, top 300ms ease;
  }

  .hamburger::before { top: -10px; }
  .hamburger::after { top: 10px; }

  body[data-nav-open] .hamburger {
    transform: rotate(45deg);
  }
  body[data-nav-open] .hamburger::before {
    top: 0;
    transform: rotate(90deg);
  }
  body[data-nav-open] .hamburger::after {
    top: 0;
    transform: rotate(90deg);
    opacity: 0;
  }

  body[data-nav-open] {
    overflow: hidden;
  }
}

/* 5. Main Content & Layout
-------------------------------------------------- */
main.container {
  position: relative;
  z-index: 5;
  margin-top: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--bg);
  min-height: 100vh;
}

/* Adjust main content for half-height hero pages */
body.half-width-hero main.container {
  margin-top: 50vh;
}

/* 6. Footer
-------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 5;
  margin-top: 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--text); }

/* 7. Booking Section & Widget
-------------------------------------------------- */
.booking-section {
  padding: 3rem 0;
}

.booking-section h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.booking-section p {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 65ch;
}

.booking-widget-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.booking-widget-container iframe {
  display: block;
  width: 100%;
  min-height: 840px;
  border: none;
}

/* 8. Components: Image-Text Sections
-------------------------------------------------- */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
  align-items: center;
  margin: var(--section-spacing) 0;
  padding: 2rem 0;
}

/* Image on left, text on right (default) */
.image-text.img-left .image-content {
  order: 1;
}
.image-text.img-left .text-content {
  order: 2;
}

/* Image on right, text on left */
.image-text.img-right .image-content {
  order: 2;
}
.image-text.img-right .text-content {
  order: 1;
}

.image-content {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-speed) ease;
}

.text-content {
  padding: 2rem;
}

.text-content h2,
.text-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

/* Mobile responsive: stack vertically */
@media (max-width: 768px) {
  .image-text {
    grid-template-columns: 1fr;
  }
  
  /* Always show image first on mobile */
  .image-text.img-left .image-content,
  .image-text.img-right .image-content {
    order: 1;
  }
  
  .image-text.img-left .text-content,
  .image-text.img-right .text-content {
    order: 2;
  }
  
  .text-content {
    padding: 1rem;
  }
}

/* 8. Forms (for other pages)
-------------------------------------------------- */
form {
  margin: 2rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
input[type="text"], input[type="email"], input[type="date"], input[type="time"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  font-size: 1rem;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="date"]:focus, input[type="time"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.15);
}
form p { margin-bottom: 1.5rem; }
button, input[type="submit"] {
  appearance: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 150ms ease, transform 100ms ease;
}
button:hover, input[type="submit"]:hover {
  background: var(--accent-hover);
}
button:active, input[type="submit"]:active {
  transform: translateY(1px);
}

/* 9. Other Pages Content
-------------------------------------------------- */
main.container > h2:first-child {
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
figure { margin: 2rem 0; }
img.responsive {
width: 100%;
height: auto;
border-radius: var(--radius);
box-shadow: var(--shadow-md);
}

/* 10. Hero Content Area
-------------------------------------------------- */
.hero-content-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 140px 1.5rem 2rem;
  text-align: center;
}

.hero-content-wrapper h2 {
color: #ffffff;
font-size: clamp(2rem, 3vw, 3rem);
margin-bottom: 1rem;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content-wrapper p {
color: #ffffff;
font-size: clamp(1rem, 1.5vw, 1.25rem);
margin-bottom: 2rem;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
max-width: 800px;
}

/* 11. Japanese-Deco Pattern & Texture System
-------------------------------------------------- */

/* Stepped geometric pattern - Art Deco meets Japanese minimalism */
.pattern-overlay {
  position: relative;
}

.pattern-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3Cpath d='M30 10 L50 30 L30 50 L10 30 Z' fill='none' stroke='%23faf7f2' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Diagonal line texture - subtle, architectural */
.texture-lines {
  position: relative;
}

.texture-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    var(--cream) 0,
    var(--cream) 1px,
    transparent 1px,
    transparent 20px
  );
}

/* Alternating section backgrounds with subtle texture */
main.container .image-text:nth-child(odd) {
  position: relative;
}

main.container .image-text:nth-child(odd)::before {
  content: '';
  position: absolute;
  inset: -2rem -1.5rem;
  background: var(--bg-alt);
  opacity: 0.5;
  z-index: -1;
  /* Subtle corner accents - art deco touch */
  border-top: 1px solid rgba(199, 135, 90, 0.1);
  border-bottom: 1px solid rgba(199, 135, 90, 0.1);
}

/* 12. Refined Link & Button Styles
-------------------------------------------------- */

/* Clean-lined CTA links - large touch targets, sharp edges */
.content-link {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid rgba(199, 135, 90, 0.4);
  background: transparent;
  transition: all 200ms ease;
  min-width: 160px;
  text-align: center;
}

.content-link::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(199, 135, 90, 0.25);
  pointer-events: none;
}

.content-link:hover {
  color: var(--cream);
  background: var(--green);
  border-color: var(--green);
}

.content-link:hover::after {
  border-color: rgba(255, 255, 255, 0.3);
  inset: 6px;
}

.content-link:active {
  transform: translateY(1px);
}

/* 17. Parallax Scroll Effect
-------------------------------------------------- */
.parallax-container {
  perspective: 1px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
}

.parallax-section {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Fade-in entrance for panels */
.image-text {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.image-text.in-view {
  opacity: 1;
}

/* Overlay behind content, in front of hero */
body::before {
  content: '';
  position: fixed;
  top: 100vh;
  left: 0;
  right: 0;
  bottom: -200vh;
  background: var(--bg);
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
}

/* Mobile: even larger touch targets */
@media (max-width: 768px) {
  .content-link {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    min-width: 200px;
  }
}

/* Bordered button variant */
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--green);
  color: var(--text);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

/* Solid button variant */
.btn-solid {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-solid:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* 13. Section Dividers - Art Deco Accent
-------------------------------------------------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--muted);
  opacity: 0.3;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Diamond accent */
.section-divider span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* 14. Footer Enhancement
-------------------------------------------------- */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(199, 135, 90, 0.2);
  background: var(--bg-alt);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* 15. Image Frame Accents
-------------------------------------------------- */
.image-content {
  position: relative;
  border-radius: 0;
}

.image-content::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(199, 135, 90, 0.15);
  pointer-events: none;
  z-index: 1;
}

.image-content img {
  border-radius: 0;
}

/* 16. Reusable Pattern Backgrounds
-------------------------------------------------- */

/* Base pattern setup - add to any element */
[class*="bg-pattern-"] {
  position: relative;
}

[class*="bg-pattern-"]::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[class*="bg-pattern-"] > * {
  position: relative;
  z-index: 1;
}

/* Seigaiha - Japanese wave arcs */
.bg-pattern-seigaiha::after {
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q20 0 40 40 Q60 0 80 40' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3Cpath d='M-40 40 Q-20 0 0 40' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3Cpath d='M80 40 Q100 0 120 40' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 40px;
}

/* Kikko - Hexagonal tortoiseshell */
.bg-pattern-kikko::after {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 0 L56 17 L56 50 L28 67 L0 50 L0 17 Z' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3Cpath d='M28 33 L56 50 L56 83 L28 100 L0 83 L0 50 Z' fill='none' stroke='%23faf7f2' stroke-width='1' transform='translate(0,33)'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* Art Deco fan/sunburst */
.bg-pattern-deco-fan::after {
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 80 L0 40 L40 0' fill='none' stroke='%23c7875a' stroke-width='1.5'/%3E%3Cpath d='M40 80 L20 40 L40 0' fill='none' stroke='%23c7875a' stroke-width='1'/%3E%3Cpath d='M40 80 L40 40 L40 0' fill='none' stroke='%23c7875a' stroke-width='1'/%3E%3Cpath d='M40 80 L60 40 L40 0' fill='none' stroke='%23c7875a' stroke-width='1'/%3E%3Cpath d='M40 80 L80 40 L40 0' fill='none' stroke='%23c7875a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* Diagonal pinstripe */
.bg-pattern-stripe::after {
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    45deg,
    var(--cream) 0,
    var(--cream) 1px,
    transparent 1px,
    transparent 16px
  );
}

/* Cross-hatch */
.bg-pattern-crosshatch::after {
  opacity: 0.02;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--cream) 0,
      var(--cream) 1px,
      transparent 1px,
      transparent 24px
    ),
    repeating-linear-gradient(
      -45deg,
      var(--cream) 0,
      var(--cream) 1px,
      transparent 1px,
      transparent 24px
    );
}

/* Diamond grid - Art Deco meets Japanese */
.bg-pattern-diamond::after {
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 0 L48 24 L24 48 L0 24 Z' fill='none' stroke='%23faf7f2' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

/* Stepped chevron - Art Deco */
.bg-pattern-chevron::after {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='30' viewBox='0 0 60 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30' fill='none' stroke='%23c7875a' stroke-width='1'/%3E%3Cpath d='M0 30 L30 8 L60 30' fill='none' stroke='%23c7875a' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 30px;
}

/* Asanoha - Hemp leaf geometric */
.bg-pattern-asanoha::after {
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 0 L24 24 M24 24 L48 12 M24 24 L48 36 M24 24 L24 48 M24 24 L0 36 M24 24 L0 12' stroke='%23faf7f2' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

/* Pattern intensity modifiers */
.bg-pattern-light[class*="bg-pattern-"]::after { opacity: 0.02; }
.bg-pattern-medium[class*="bg-pattern-"]::after { opacity: 0.06; }
.bg-pattern-strong[class*="bg-pattern-"]::after { opacity: 0.12; }

/* Pattern color variants */
.bg-pattern-green[class*="bg-pattern-"]::after {
  filter: hue-rotate(90deg);
}

.bg-pattern-orange[class*="bg-pattern-"]::after {
  filter: sepia(1) saturate(2);
}

/* Responsive Breakpoints for Half-Height Hero
-------------------------------------------------- */
@media (max-width: 768px) {
  /* Mobile: Shorter hero */
  .hero-banner.hero-half-width {
    min-height: 40vh;
    height: 40vh;
  }

  body.half-width-hero main.container {
    margin-top: 40vh;
  }

  .booking-widget-container iframe {
    height: 720px;
  }
}

/* 18. Restaurant Menu Styles
-------------------------------------------------- */
.menu-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem 3rem;
  background-color: #f5f0e6;
  position: relative;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Subtle pixel noise overlay */
.menu-container::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

/* Subtle inner border */
.menu-container::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(180, 160, 140, 0.2);
  pointer-events: none;
}

.menu-section {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(120, 100, 80, 0.15);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b6914;
  margin-bottom: 0.5rem;
  text-align: center;
}

.menu-section-price {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  color: #6b5c4c;
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(120, 100, 80, 0.1);
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: #3a3632;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  color: #6b5c4c;
  white-space: nowrap;
}

.menu-item-description {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: italic;
  color: #6b5c4c;
  margin: 0.25rem 0 0;
  text-align: left;
}

.menu-item-tags {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a6b4a;
  text-transform: lowercase;
  margin-left: 0.5rem;
}

.menu-item-allergens {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #8a7a6a;
  margin-left: 0.5rem;
}

.menu-item-addon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.5rem;
  padding-left: 1rem;
  gap: 1rem;
}

.menu-addon-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.95rem;
  color: #3a3632;
  font-style: italic;
}

.menu-addon-price {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.95rem;
  color: #6b5c4c;
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
  .menu-container {
    padding: 0 0.5rem;
  }

  .menu-item-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .menu-item-name {
    text-align: center;
  }

  .menu-item-price {
    text-align: center;
    width: 100%;
  }

  .menu-item-description {
    text-align: center;
  }

  .menu-item-allergens,
  .menu-item-tags {
    display: block;
    margin-left: 0;
    text-align: center;
  }

  .menu-item-addon {
    flex-direction: column;
    padding-left: 0;
    text-align: center;
    gap: 0.25rem;
  }

  .menu-addon-name,
  .menu-addon-price {
    text-align: center;
    width: 100%;
  }
}
