/* ==========================================================================
   Warm Dine - Restaurant Showcase
   A warm, elegant design for restaurants
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --wd-bg: #faf8f5;
  --wd-bg-alt: #f5f0e8;
  --wd-bg-dark: #2c2420;
  --wd-bg-darker: #1a1614;
  --wd-text: #2c2420;
  --wd-text-light: #6b5b4f;
  --wd-text-muted: #9a8a7a;
  --wd-accent: #b8860b;
  --wd-accent-light: #d4a84b;
  --wd-accent-dark: #8a6508;
  --wd-warm: #d4a574;
  --wd-warm-light: #e8c9a8;
  --wd-border: rgba(44, 36, 32, 0.1);
  --wd-border-light: rgba(255, 255, 255, 0.15);
  --wd-white: #ffffff;
  --wd-error: #c44536;
  --wd-success: #5a8f5a;

  /* Typography */
  --wd-font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --wd-font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  /* Spacing */
  --wd-container: 1200px;
  --wd-container-wide: 1400px;
  --wd-section-padding: clamp(4rem, 8vw, 8rem);
  --wd-header-height: 80px;

  /* Transitions */
  --wd-transition: 0.3s ease;
  --wd-transition-slow: 0.5s ease;

  /* Shadows */
  --wd-shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
  --wd-shadow-md: 0 4px 20px rgba(44, 36, 32, 0.1);
  --wd-shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.12);

  /* Border Radius */
  --wd-radius-sm: 4px;
  --wd-radius-md: 8px;
  --wd-radius-lg: 16px;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.wd-body {
  font-family: var(--wd-font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--wd-text);
  background-color: var(--wd-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.wd-container {
  width: 100%;
  max-width: var(--wd-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wd-container-wide {
  width: 100%;
  max-width: var(--wd-container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.wd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--wd-header-height);
  background: transparent;
  z-index: 1000;
  transition: background-color var(--wd-transition), box-shadow var(--wd-transition);
}

.wd-header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--wd-shadow-sm);
}

.wd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wd-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.wd-logo {
  text-decoration: none;
  z-index: 1001;
}

.wd-logo-text {
  font-family: var(--wd-font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--wd-white);
  letter-spacing: 0.05em;
  transition: color var(--wd-transition);
}

.wd-header.scrolled .wd-logo-text {
  color: var(--wd-text);
}

/* Navigation */
.wd-nav {
  display: flex;
  align-items: center;
}

.wd-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.wd-nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wd-white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--wd-transition);
}

.wd-header.scrolled .wd-nav-link {
  color: var(--wd-text);
}

.wd-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--wd-transition);
}

.wd-nav-link:hover::after,
.wd-nav-link.active::after {
  width: 100%;
}

.wd-nav-link--cta {
  padding: 0.5rem 1.25rem;
  background: var(--wd-accent);
  color: var(--wd-white) !important;
  border-radius: var(--wd-radius-sm);
  transition: background-color var(--wd-transition);
}

.wd-nav-link--cta::after {
  display: none;
}

.wd-nav-link--cta:hover {
  background: var(--wd-accent-dark);
}

/* Mobile Menu Toggle */
.wd-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.wd-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wd-white);
  transition: all var(--wd-transition);
}

.wd-menu-toggle span:nth-child(2) {
  margin: 6px 0;
}

.wd-header.scrolled .wd-menu-toggle span {
  background: var(--wd-text);
}

.wd-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.wd-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.wd-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.wd-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--wd-header-height) 1.5rem 2rem;
  overflow: hidden;
}

.wd-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--wd-bg-dark);
}

.wd-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 36, 32, 0.7) 0%, rgba(26, 22, 20, 0.8) 100%);
}

.wd-hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.wd-hero-subtitle {
  display: inline-block;
  font-family: var(--wd-font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--wd-warm);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.wd-hero-title {
  font-family: var(--wd-font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--wd-white);
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.wd-hero-title-accent {
  color: var(--wd-warm);
}

.wd-hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.wd-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.wd-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.wd-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  margin-top: 0.5rem;
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.wd-section {
  padding: var(--wd-section-padding) 0;
}

.wd-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wd-section-label {
  display: inline-block;
  font-family: var(--wd-font-serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--wd-accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.wd-section-label--light {
  color: var(--wd-warm);
}

.wd-section-title {
  font-family: var(--wd-font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--wd-text);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.wd-section-subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 0.9375rem;
  color: var(--wd-text-light);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--wd-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-radius: var(--wd-radius-sm);
  transition: all var(--wd-transition);
  cursor: pointer;
  border: none;
}

.wd-btn--primary {
  background: var(--wd-accent);
  color: var(--wd-white);
}

.wd-btn--primary:hover {
  background: var(--wd-accent-dark);
  transform: translateY(-2px);
}

.wd-btn--secondary {
  background: var(--wd-text);
  color: var(--wd-white);
}

.wd-btn--secondary:hover {
  background: var(--wd-bg-darker);
  transform: translateY(-2px);
}

.wd-btn--outline {
  background: transparent;
  color: var(--wd-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.wd-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.wd-btn--outline-dark {
  background: transparent;
  color: var(--wd-text);
  border: 1px solid var(--wd-border);
}

.wd-btn--outline-dark:hover {
  background: var(--wd-text);
  color: var(--wd-white);
}

.wd-btn--light {
  background: var(--wd-white);
  color: var(--wd-text);
}

.wd-btn--light:hover {
  background: var(--wd-bg);
  transform: translateY(-2px);
}

.wd-btn--outline-light {
  background: transparent;
  color: var(--wd-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.wd-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--wd-white);
}

.wd-btn-icon {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   Links
   -------------------------------------------------------------------------- */
.wd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wd-accent);
  text-decoration: none;
  transition: gap var(--wd-transition);
}

.wd-link-arrow:hover {
  gap: 0.75rem;
}

.wd-link-arrow-icon {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   Concept Section
   -------------------------------------------------------------------------- */
.wd-concept {
  background: var(--wd-bg);
}

.wd-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wd-concept-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--wd-radius-md);
}

.wd-concept-image-wrapper::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid var(--wd-accent);
  border-radius: var(--wd-radius-md);
  z-index: -1;
}

.wd-concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-concept-content {
  padding: 2rem 0;
}

.wd-concept-text {
  margin: 1rem 0;
  color: var(--wd-text-light);
  line-height: 2;
}

/* --------------------------------------------------------------------------
   Featured Menu Section
   -------------------------------------------------------------------------- */
.wd-featured {
  background: var(--wd-bg-alt);
}

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

.wd-featured-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-md);
  overflow: hidden;
  box-shadow: var(--wd-shadow-sm);
  transition: transform var(--wd-transition), box-shadow var(--wd-transition);
}

.wd-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wd-shadow-lg);
}

.wd-featured-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.wd-featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wd-transition-slow);
}

.wd-featured-card:hover .wd-featured-card-img {
  transform: scale(1.05);
}

.wd-featured-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--wd-accent);
  color: var(--wd-white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--wd-radius-sm);
}

.wd-featured-card-content {
  padding: 1.5rem;
}

.wd-featured-card-category {
  font-size: 0.75rem;
  color: var(--wd-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wd-featured-card-title {
  font-family: var(--wd-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wd-text);
  margin: 0.5rem 0;
}

.wd-featured-card-description {
  font-size: 0.875rem;
  color: var(--wd-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wd-featured-card-price {
  font-family: var(--wd-font-serif);
  font-size: 1.125rem;
  color: var(--wd-accent);
}

.wd-featured-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.wd-gallery-section {
  background: var(--wd-bg);
}

.wd-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.wd-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--wd-radius-md);
}

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

.wd-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wd-transition-slow);
}

.wd-gallery-item:hover .wd-gallery-img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.wd-cta-section {
  position: relative;
  padding: var(--wd-section-padding) 0;
  background: var(--wd-bg-dark);
  overflow: hidden;
}

.wd-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.wd-cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.wd-cta-title {
  font-family: var(--wd-font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--wd-white);
  margin-bottom: 1rem;
}

.wd-cta-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.wd-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wd-cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Placeholders (for demo without real images)
   -------------------------------------------------------------------------- */
.wd-concept-image-placeholder,
.wd-featured-card-placeholder,
.wd-gallery-placeholder,
.wd-about-image-placeholder,
.wd-chef-image-placeholder,
.wd-menu-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--wd-bg-alt) 0%, var(--wd-warm-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wd-font-serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--wd-text-muted);
}

.wd-concept-image-placeholder::before,
.wd-featured-card-placeholder::before,
.wd-gallery-placeholder::before,
.wd-about-image-placeholder::before,
.wd-chef-image-placeholder::before,
.wd-menu-card-placeholder::before {
  content: attr(data-text);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.wd-footer {
  background: var(--wd-bg-darker);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.wd-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--wd-border-light);
}

.wd-footer-logo {
  font-family: var(--wd-font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wd-white);
  letter-spacing: 0.05em;
}

.wd-footer-tagline {
  margin-top: 0.5rem;
  font-family: var(--wd-font-serif);
  font-style: italic;
  color: var(--wd-warm);
}

.wd-footer-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--wd-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wd-footer-info p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.wd-footer-closed {
  margin-top: 0.5rem;
  color: var(--wd-warm);
}

.wd-footer-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--wd-transition);
}

.wd-footer-link:hover {
  color: var(--wd-white);
}

.wd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.wd-showcase-note {
  font-style: italic;
}

.wd-image-credit {
  font-size: 0.6875rem;
  opacity: 0.6;
}

.wd-image-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wd-image-credit a:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.wd-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wd-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.wd-animate:nth-child(2) { transition-delay: 0.1s; }
.wd-animate:nth-child(3) { transition-delay: 0.2s; }
.wd-animate:nth-child(4) { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Menu Page
   -------------------------------------------------------------------------- */
.wd-menu-hero {
  padding-top: calc(var(--wd-header-height) + 4rem);
  padding-bottom: 3rem;
  background: var(--wd-bg-dark);
  text-align: center;
}

.wd-menu-hero .wd-section-title {
  color: var(--wd-white);
}

.wd-menu-hero .wd-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.wd-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wd-menu-tab {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--wd-radius-sm);
  cursor: pointer;
  transition: all var(--wd-transition);
}

.wd-menu-tab:hover {
  color: var(--wd-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.wd-menu-tab.active {
  color: var(--wd-text);
  background: var(--wd-white);
  border-color: var(--wd-white);
}

.wd-menu-content {
  padding: var(--wd-section-padding) 0;
}

.wd-menu-category {
  display: none;
}

.wd-menu-category.active {
  display: block;
}

.wd-menu-category-title {
  font-family: var(--wd-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--wd-border);
}

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

.wd-menu-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--wd-white);
  border-radius: var(--wd-radius-md);
  box-shadow: var(--wd-shadow-sm);
  transition: box-shadow var(--wd-transition);
}

.wd-menu-card:hover {
  box-shadow: var(--wd-shadow-md);
}

.wd-menu-card-image {
  aspect-ratio: 1;
  border-radius: var(--wd-radius-sm);
  overflow: hidden;
}

.wd-menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wd-transition);
}

.wd-menu-card:hover .wd-menu-card-img {
  transform: scale(1.05);
}

.wd-menu-card-content {
  display: flex;
  flex-direction: column;
}

.wd-menu-card-name {
  font-family: var(--wd-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.25rem;
}

.wd-menu-card-name-en {
  font-size: 0.75rem;
  color: var(--wd-text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.wd-menu-card-description {
  flex: 1;
  font-size: 0.875rem;
  color: var(--wd-text-light);
  line-height: 1.6;
}

.wd-menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.wd-menu-card-price {
  font-family: var(--wd-font-serif);
  font-size: 1rem;
  color: var(--wd-accent);
}

.wd-menu-card-allergens {
  display: flex;
  gap: 0.25rem;
}

.wd-allergen-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  border-radius: 50%;
  font-size: 0.625rem;
  color: var(--wd-text-muted);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.wd-about-hero {
  padding-top: calc(var(--wd-header-height) + 4rem);
  padding-bottom: 3rem;
  background: var(--wd-bg-dark);
  text-align: center;
}

.wd-about-hero .wd-section-title {
  color: var(--wd-white);
}

.wd-about-story {
  background: var(--wd-bg);
}

.wd-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wd-about-story-image {
  aspect-ratio: 4/3;
  border-radius: var(--wd-radius-md);
  overflow: hidden;
}

.wd-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-about-story-content {
  padding: 2rem 0;
}

.wd-about-story-text {
  margin: 1rem 0;
  color: var(--wd-text-light);
  line-height: 2;
}

.wd-chef-section {
  background: var(--wd-bg-alt);
}

.wd-chef-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

.wd-chef-image {
  aspect-ratio: 3/4;
  border-radius: var(--wd-radius-md);
  overflow: hidden;
}

.wd-chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-chef-content {
  padding: 2rem 0;
}

.wd-chef-name {
  font-family: var(--wd-font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.5rem;
}

.wd-chef-title {
  font-size: 0.875rem;
  color: var(--wd-accent);
  margin-bottom: 1.5rem;
}

.wd-chef-bio {
  color: var(--wd-text-light);
  line-height: 2;
}

.wd-chef-bio p {
  margin-bottom: 1rem;
}

.wd-values-section {
  background: var(--wd-bg);
}

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

.wd-value-card {
  padding: 2rem;
  background: var(--wd-white);
  border-radius: var(--wd-radius-md);
  text-align: center;
  box-shadow: var(--wd-shadow-sm);
}

.wd-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  border-radius: 50%;
  color: var(--wd-accent);
}

.wd-value-icon svg {
  width: 28px;
  height: 28px;
}

.wd-value-title {
  font-family: var(--wd-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.75rem;
}

.wd-value-text {
  font-size: 0.875rem;
  color: var(--wd-text-light);
  line-height: 1.8;
}

.wd-about-gallery {
  background: var(--wd-bg-alt);
}

.wd-about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wd-about-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--wd-radius-md);
  overflow: hidden;
}

.wd-about-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wd-transition-slow);
}

.wd-about-gallery-item:hover .wd-about-gallery-img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Contact / Reservation Page
   -------------------------------------------------------------------------- */
.wd-contact-hero {
  padding-top: calc(var(--wd-header-height) + 4rem);
  padding-bottom: 3rem;
  background: var(--wd-bg-dark);
  text-align: center;
}

.wd-contact-hero .wd-section-title {
  color: var(--wd-white);
}

.wd-contact-hero .wd-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.wd-reservation-section {
  background: var(--wd-bg);
}

.wd-reservation-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Step Indicator */
.wd-steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}

.wd-step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wd-step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  color: var(--wd-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
  transition: all var(--wd-transition);
}

.wd-step-item.active .wd-step-number {
  background: var(--wd-accent);
  color: var(--wd-white);
}

.wd-step-item.completed .wd-step-number {
  background: var(--wd-success);
  color: var(--wd-white);
}

.wd-step-label {
  font-size: 0.875rem;
  color: var(--wd-text-muted);
  transition: color var(--wd-transition);
}

.wd-step-item.active .wd-step-label,
.wd-step-item.completed .wd-step-label {
  color: var(--wd-text);
}

.wd-step-line {
  width: 60px;
  height: 2px;
  background: var(--wd-bg-alt);
  margin: 0 1rem;
  transition: background var(--wd-transition);
}

.wd-step-line.completed {
  background: var(--wd-success);
}

/* Reservation Form */
.wd-reservation-form {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  box-shadow: var(--wd-shadow-md);
  overflow: hidden;
}

.wd-form-step {
  display: none;
  padding: 2.5rem;
}

.wd-form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wd-form-step-title {
  font-family: var(--wd-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.5rem;
}

.wd-form-step-description {
  color: var(--wd-text-light);
  margin-bottom: 2rem;
}

/* Calendar */
.wd-calendar {
  margin-bottom: 2rem;
}

.wd-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.wd-calendar-title {
  font-family: var(--wd-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wd-text);
}

.wd-calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.wd-calendar-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  border: none;
  border-radius: var(--wd-radius-sm);
  color: var(--wd-text);
  cursor: pointer;
  transition: all var(--wd-transition);
}

.wd-calendar-nav-btn:hover:not(:disabled) {
  background: var(--wd-text);
  color: var(--wd-white);
}

.wd-calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.wd-calendar-nav-btn svg {
  width: 18px;
  height: 18px;
}

.wd-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.wd-calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--wd-text-muted);
  padding: 0.5rem;
}

.wd-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--wd-radius-sm);
  font-size: 0.875rem;
  color: var(--wd-text);
  cursor: pointer;
  transition: all var(--wd-transition);
}

.wd-calendar-day:hover:not(:disabled):not(.wd-calendar-day--empty) {
  background: var(--wd-bg-alt);
}

.wd-calendar-day--empty {
  cursor: default;
}

.wd-calendar-day--today {
  border-color: var(--wd-accent);
}

.wd-calendar-day--selected {
  background: var(--wd-accent) !important;
  color: var(--wd-white) !important;
}

.wd-calendar-day--closed {
  color: var(--wd-text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
}

.wd-calendar-day:disabled {
  color: var(--wd-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.wd-calendar-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--wd-text-muted);
}

.wd-calendar-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wd-calendar-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--wd-radius-sm);
}

.wd-calendar-legend-dot--available {
  background: var(--wd-bg-alt);
  border: 1px solid var(--wd-border);
}

.wd-calendar-legend-dot--closed {
  background: var(--wd-bg);
  text-decoration: line-through;
}

.wd-calendar-legend-dot--selected {
  background: var(--wd-accent);
}

/* Time Slots */
.wd-time-section {
  margin-top: 2rem;
}

.wd-time-section-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 1rem;
}

.wd-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wd-time-slot {
  padding: 0.75rem 1.25rem;
  background: var(--wd-bg-alt);
  border: 1px solid transparent;
  border-radius: var(--wd-radius-sm);
  font-size: 0.875rem;
  color: var(--wd-text);
  cursor: pointer;
  transition: all var(--wd-transition);
}

.wd-time-slot:hover:not(:disabled) {
  background: var(--wd-bg);
  border-color: var(--wd-accent);
}

.wd-time-slot.selected {
  background: var(--wd-accent);
  color: var(--wd-white);
  border-color: var(--wd-accent);
}

.wd-time-slot:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.wd-time-slot-status {
  display: block;
  font-size: 0.625rem;
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* Form Fields */
.wd-form-group {
  margin-bottom: 1.5rem;
}

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

.wd-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.5rem;
}

.wd-form-label .required {
  color: var(--wd-error);
  margin-left: 0.25rem;
}

.wd-form-input,
.wd-form-select,
.wd-form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--wd-font-sans);
  font-size: 1rem;
  color: var(--wd-text);
  background: var(--wd-bg);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-sm);
  transition: border-color var(--wd-transition), box-shadow var(--wd-transition);
}

.wd-form-input:focus,
.wd-form-select:focus,
.wd-form-textarea:focus {
  outline: none;
  border-color: var(--wd-accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.wd-form-input.error,
.wd-form-select.error,
.wd-form-textarea.error {
  border-color: var(--wd-error);
}

.wd-form-input::placeholder {
  color: var(--wd-text-muted);
}

.wd-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.wd-form-error {
  display: none;
  font-size: 0.75rem;
  color: var(--wd-error);
  margin-top: 0.5rem;
}

.wd-form-error.visible {
  display: block;
}

/* Guest Counter */
.wd-guest-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wd-guest-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  border: none;
  border-radius: var(--wd-radius-sm);
  font-size: 1.25rem;
  color: var(--wd-text);
  cursor: pointer;
  transition: all var(--wd-transition);
}

.wd-guest-btn:hover:not(:disabled) {
  background: var(--wd-text);
  color: var(--wd-white);
}

.wd-guest-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.wd-guest-count {
  min-width: 60px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wd-text);
}

.wd-guest-label {
  font-size: 0.875rem;
  color: var(--wd-text-light);
}

.wd-guest-note {
  display: block;
  font-size: 0.75rem;
  color: var(--wd-text-muted);
  margin-top: 0.75rem;
}

/* Form Actions */
.wd-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wd-border);
}

.wd-form-actions--right {
  justify-content: flex-end;
}

.wd-btn--back {
  background: transparent;
  color: var(--wd-text-light);
  padding-left: 0;
}

.wd-btn--back:hover {
  color: var(--wd-text);
  transform: none;
}

/* Confirmation Summary */
.wd-confirmation-summary {
  background: var(--wd-bg);
  border-radius: var(--wd-radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.wd-summary-title {
  font-family: var(--wd-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--wd-border);
}

.wd-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wd-border);
}

.wd-summary-row:last-child {
  border-bottom: none;
}

.wd-summary-label {
  font-size: 0.875rem;
  color: var(--wd-text-muted);
}

.wd-summary-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wd-text);
}

.wd-terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.wd-terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.125rem;
  accent-color: var(--wd-accent);
}

.wd-terms-checkbox label {
  font-size: 0.875rem;
  color: var(--wd-text-light);
  line-height: 1.5;
}

.wd-terms-checkbox a {
  color: var(--wd-accent);
  text-decoration: none;
}

.wd-terms-checkbox a:hover {
  text-decoration: underline;
}

/* Completion Screen */
.wd-completion {
  text-align: center;
  padding: 3rem 2rem;
}

.wd-completion-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 143, 90, 0.1);
  border-radius: 50%;
  color: var(--wd-success);
}

.wd-completion-icon svg {
  width: 40px;
  height: 40px;
}

.wd-completion-title {
  font-family: var(--wd-font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.5rem;
}

.wd-completion-text {
  color: var(--wd-text-light);
  margin-bottom: 2rem;
}

.wd-reservation-number {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--wd-bg);
  border-radius: var(--wd-radius-md);
  margin-bottom: 2rem;
}

.wd-reservation-number-label {
  font-size: 0.75rem;
  color: var(--wd-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.wd-reservation-number-value {
  font-family: var(--wd-font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wd-accent);
  letter-spacing: 0.1em;
}

.wd-completion-note {
  font-size: 0.875rem;
  color: var(--wd-text-muted);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wd-border);
}

/* Contact Info Section */
.wd-contact-info-section {
  background: var(--wd-bg-alt);
}

.wd-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wd-contact-info-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--wd-shadow-sm);
}

.wd-contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg-alt);
  border-radius: 50%;
  color: var(--wd-accent);
}

.wd-contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.wd-contact-info-title {
  font-family: var(--wd-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--wd-text);
  margin-bottom: 0.5rem;
}

.wd-contact-info-text {
  font-size: 0.875rem;
  color: var(--wd-text-light);
  line-height: 1.8;
}

.wd-contact-info-text a {
  color: var(--wd-accent);
  text-decoration: none;
  font-weight: 500;
}

.wd-contact-info-text a:hover {
  text-decoration: underline;
}

/* Map Section */
.wd-map-section {
  background: var(--wd-bg);
}

.wd-map-container {
  aspect-ratio: 21/9;
  background: var(--wd-bg-alt);
  border-radius: var(--wd-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .wd-concept-grid,
  .wd-about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wd-concept-image-wrapper::after {
    display: none;
  }

  .wd-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 180px);
  }

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

  .wd-chef-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wd-chef-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .wd-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .wd-menu-grid {
    grid-template-columns: 1fr;
  }

  .wd-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --wd-header-height: 64px;
  }

  .wd-menu-toggle {
    display: flex;
  }

  .wd-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wd-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--wd-transition), visibility var(--wd-transition);
  }

  .wd-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .wd-nav-list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .wd-nav-link {
    font-size: 1.25rem;
    color: var(--wd-white);
  }

  .wd-nav-link--cta {
    padding: 0.75rem 2rem;
  }

  .wd-menu-toggle.active span {
    background: var(--wd-white);
  }

  .wd-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .wd-hero-description br {
    display: none;
  }

  .wd-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .wd-featured-grid {
    grid-template-columns: 1fr;
  }

  .wd-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .wd-values-grid {
    grid-template-columns: 1fr;
  }

  .wd-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wd-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .wd-menu-card {
    grid-template-columns: 1fr;
  }

  .wd-menu-card-image {
    aspect-ratio: 16/9;
  }

  .wd-form-row {
    grid-template-columns: 1fr;
  }

  .wd-steps-indicator {
    gap: 0;
    margin-bottom: 2rem;
  }

  .wd-step-line {
    width: 24px;
    margin: 0 0.25rem;
  }

  .wd-step-item {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .wd-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .wd-step-label {
    font-size: 0.625rem;
    white-space: nowrap;
  }

  .wd-form-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .wd-btn--back {
    order: 2;
  }

  .wd-cta-text br {
    display: none;
  }
}

@media (max-width: 480px) {
  .wd-container,
  .wd-container-wide {
    padding: 0 1rem;
  }

  .wd-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .wd-btn {
    width: 100%;
  }

  .wd-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .wd-time-slots {
    justify-content: center;
  }

  .wd-form-step {
    padding: 1.5rem;
  }

  .wd-confirmation-summary {
    padding: 1.5rem;
  }

  .wd-calendar-legend {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .wd-step-line {
    width: 16px;
  }

  .wd-step-number {
    width: 28px;
    height: 28px;
    font-size: 0.6875rem;
  }

  .wd-step-label {
    font-size: 0.5625rem;
  }
}
