/* ============================================
   ASIA GARDEN · La Oliva, Fuerteventura
   Clean minimalist · Burgundy + Blush
   ============================================ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5A1F2B;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6E0;
  --blush-light: #FBF5F2;
  --blush-mid: #EDE0D8;
  --cream: #FDF8F5;
  --text-dark: #1A1214;
  --text-mid: #4A3538;
  --text-light: #8A7075;
  --text-muted: #B09A9D;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

/* ============================================
   LAYOUT
   ============================================ */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 3rem 2rem;
  gap: 3rem;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--blush);
}

.logo-mark {
  width: 56px;
  height: 56px;
  color: var(--blush);
  opacity: 0.9;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--blush);
  opacity: 0.6;
  transition: var(--transition-fast);
  border-left: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  border-left-color: var(--blush);
  background: rgba(255, 255, 255, 0.05);
}

.nav-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  min-width: 20px;
}

.nav-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sidebar-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--blush);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blush);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.sidebar-phone:hover {
  opacity: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  grid-column: 2;
  margin-left: 280px;
}

.section {
  min-height: 100vh;
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  padding: 0;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--blush);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 5rem;
  width: 100%;
}

.hero-text {
  padding-right: 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--burgundy);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

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

.hero-image {
  position: relative;
  height: 600px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.hero-divider {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  right: 5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--blush-mid);
}

.divider-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  margin-top: 1.5rem;
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-image-col {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-stats {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  display: flex;
  gap: 2rem;
  background: var(--burgundy);
  padding: 2rem;
  border-radius: 2px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.7;
}

.about-text-col {
  padding-top: 2rem;
}

.about-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--blush-mid);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  background: var(--cream);
}

.menu-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}

.menu-intro p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--blush-mid);
}

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

.item-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.item-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-note {
  margin-top: 4rem;
  padding: 1.5rem 2rem;
  background: var(--blush-light);
  border-left: 2px solid var(--burgundy);
  border-radius: 0 2px 2px 0;
}

.menu-note p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--white);
  padding: 6rem 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

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

/* ============================================
   HOURS SECTION
   ============================================ */
.hours-section {
  background: var(--burgundy);
  color: var(--blush);
}

.hours-section .section-eyebrow {
  color: var(--blush);
  opacity: 0.6;
}

.hours-section .section-title {
  color: var(--blush);
}

.hours-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 230, 224, 0.15);
}

.hours-day:first-child {
  border-top: 1px solid rgba(245, 230, 224, 0.15);
}

.day-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.day-hours {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.03em;
}

.hours-day--highlight .day-name {
  color: var(--blush);
  font-weight: 500;
}

.hours-day--highlight .day-hours {
  opacity: 1;
  color: var(--blush);
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(245, 230, 224, 0.15);
}

.map-placeholder svg {
  color: var(--blush);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.map-placeholder p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.8;
  opacity: 0.8;
}

.map-placeholder .btn-outline {
  border-color: var(--blush);
  color: var(--blush);
}

.map-placeholder .btn-outline:hover {
  background: var(--blush);
  color: var(--burgundy);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--blush-mid);
}

.contact-item:first-child {
  border-top: 1px solid var(--blush-mid);
}

.contact-item svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--burgundy);
}

.contact-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-mid);
}

.contact-cta p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-cta-sub {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-col {
  background: var(--white);
  padding: 3rem;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(123, 45, 59, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid var(--blush-mid);
  border-radius: 2px;
  background: var(--blush-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: var(--burgundy);
}

.form-success svg {
  color: var(--burgundy);
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--blush);
  padding: 3rem 5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--blush);
  opacity: 0.6;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  text-decoration: none;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-copy p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--blush);
  opacity: 0.4;
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE HEADER
   ============================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--burgundy);
  z-index: 200;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blush);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-toggle {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blush);
  transition: var(--transition-fast);
  transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--burgundy);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--blush);
  text-decoration: none;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  opacity: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero-content {
    padding: 5rem 3rem;
  }
  
  .section {
    padding: 5rem 3rem;
  }
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
  
  .main-content {
    margin-left: 0;
    grid-column: 1;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .hero-bg {
    width: 100%;
    clip-path: none;
    opacity: 0.4;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    padding: 8rem 2rem 4rem;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-divider {
    left: 2rem;
    right: 2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-stats {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
  }
  
  .menu-categories {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item--wide {
    grid-column: span 2;
  }
  
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
  
  .hours-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .hero-content {
    padding: 7rem 1.5rem 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    text-align: center;
  }
  
  .hero-divider {
    left: 1.5rem;
    right: 1.5rem;
  }
  
  .about-stats {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item--wide {
    grid-column: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-col {
    padding: 2rem 1.5rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
}
