/* ===========================
   THE SWEET ESCAPE — Main CSS
   =========================== */

:root {
  --cream: #fdf6ec;
  --blush: #f4a7b9;
  --rose:  #e07a8f;
  --berry: #9b3a5a;
  --brown: #5c3317;
  --tan:   #d4a96a;
  --white: #ffffff;
  --text:  #3a2012;
  --light-text: #7a5c3d;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(92,51,23,0.10);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

/* --- Utility --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-primary { background: var(--berry); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--berry); border: 2px solid var(--berry); }
.btn-tan { background: var(--tan); color: var(--brown); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 560px;
}

/* ============================
   HEADER / NAV
   ============================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,236,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,169,106,0.25);
  box-shadow: 0 2px 12px rgba(92,51,23,0.06);
}
nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 44px; height: 44px; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--berry);
}
.nav-brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--berry); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  margin: 5px 0; transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212,169,106,0.3);
    box-shadow: 0 8px 24px rgba(92,51,23,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; }
  .nav-cta { margin: 8px 24px; }
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--brown);
  color: rgba(253,246,236,0.8);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand p { font-size: 0.95rem; margin-top: 12px; line-height: 1.7; color: rgba(253,246,236,0.7); }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo-row svg { width: 40px; height: 40px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); font-weight: 700; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(253,246,236,0.7); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blush); }
.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 1.9; color: rgba(253,246,236,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(253,246,236,0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(253,246,236,0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================
   HERO (Home)
   ============================ */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #fdf6ec 0%, #fce8d4 60%, #fad5d5 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,167,185,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-illustration { order: -1; }
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--brown);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--berry); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(92,51,23,0.18));
}

/* ============================
   FEATURES STRIP
   ============================ */
.features-strip {
  padding: 40px 0;
  background: var(--berry);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.feature-item strong { font-size: 0.95rem; display: block; }
.feature-item span { font-size: 0.8rem; opacity: 0.75; }

/* ============================
   FEATURED SECTION (Home)
   ============================ */
.section { padding: 80px 0; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(92,51,23,0.15); }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.card-img.bg1 { background: linear-gradient(135deg, #fce8d4, #fad5d5); }
.card-img.bg2 { background: linear-gradient(135deg, #fad5d5, #f0c4d8); }
.card-img.bg3 { background: linear-gradient(135deg, #f0c4d8, #dbb8e0); }
.card-img.bg4 { background: linear-gradient(135deg, #fce8d4, #f9ddb6); }
.card-img.bg5 { background: linear-gradient(135deg, #d5e8d4, #b8ddb9); }
.card-img.bg6 { background: linear-gradient(135deg, #d4e8f8, #b8d4ec); }
.card-body { padding: 20px 24px 24px; }
.card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.card-body h3 { font-size: 1.2rem; color: var(--brown); margin-bottom: 8px; }
.card-body p { font-size: 0.9rem; color: var(--light-text); line-height: 1.6; margin-bottom: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--berry); }

/* ============================
   MENU PAGE
   ============================ */
.page-hero {
  padding: 60px 0 48px;
  background: linear-gradient(135deg, #fdf6ec 0%, #fce8d4 100%);
  text-align: center;
  border-bottom: 1px solid rgba(212,169,106,0.2);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--brown); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: var(--light-text); }

.menu-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--blush);
  background: transparent;
  color: var(--berry);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--berry);
  border-color: var(--berry);
  color: var(--white);
}

.menu-category { margin-bottom: 56px; }
.menu-category-title {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(212,169,106,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.menu-item {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(92,51,23,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(92,51,23,0.12); }
.menu-item-emoji { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.menu-item h4 { font-size: 1.05rem; color: var(--brown); margin-bottom: 6px; }
.menu-item p { font-size: 0.85rem; color: var(--light-text); margin-bottom: 12px; line-height: 1.55; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-family: var(--font-display); font-weight: 700; color: var(--berry); font-size: 1.1rem; }
.badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
}
.badge-new { background: #fde8c3; color: #9b6014; }
.badge-popular { background: #fde0e6; color: var(--berry); }
.badge-seasonal { background: #d4eed5; color: #2a7a2e; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-intro {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-intro { grid-template-columns: 1fr; } }
.about-img-block {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-img-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #fce8d4 0%, #fad5d5 60%, #f0c4d8 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--berry);
  color: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(155,58,90,0.35);
}
.about-badge-float strong { font-size: 2rem; font-family: var(--font-display); display: block; }
.about-badge-float span { font-size: 0.78rem; opacity: 0.85; }
.about-text .section-subtitle { max-width: 100%; margin-bottom: 20px; }
.about-values {
  padding: 72px 0;
  background: linear-gradient(135deg, #fce8d4 0%, #fdf6ec 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--light-text); line-height: 1.65; }
.team-section { padding: 72px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s;
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.team-info { padding: 20px 24px 24px; }
.team-info h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--rose); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.team-info p { font-size: 0.88rem; color: var(--light-text); line-height: 1.6; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 72px 0;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 2rem; color: var(--brown); margin-bottom: 16px; }
.contact-info > p { font-size: 1rem; color: var(--light-text); margin-bottom: 32px; line-height: 1.7; }
.info-block { margin-bottom: 26px; display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  font-size: 1.4rem;
  background: var(--cream);
  border-radius: 10px;
  padding: 8px 10px;
  flex-shrink: 0;
  border: 1px solid rgba(212,169,106,0.25);
}
.info-block strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rose); margin-bottom: 4px; }
.info-block p { font-size: 0.95rem; color: var(--light-text); line-height: 1.7; }
.hours-table { font-size: 0.92rem; color: var(--light-text); }
.hours-table tr td:first-child { font-weight: 600; color: var(--brown); padding-right: 16px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--brown); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(212,169,106,0.4);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(224,122,143,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.82rem; color: var(--light-text); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--berry);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--light-text); font-size: 0.95rem; }

/* ============================
   MAP PLACEHOLDER
   ============================ */
.map-section { padding: 0 0 72px; }
.map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #fce8d4, #fad5d5);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brown);
  font-size: 1rem;
  border: 2px dashed rgba(212,169,106,0.4);
  box-shadow: var(--shadow);
}
.map-placeholder span:first-child { font-size: 3rem; }
.map-placeholder strong { font-size: 1.1rem; color: var(--berry); }
.map-placeholder p { font-size: 0.9rem; color: var(--light-text); }

/* ============================
   TESTIMONIALS (Home)
   ============================ */
.testimonials { padding: 80px 0; background: linear-gradient(135deg, #fdf6ec 0%, #fce8d4 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--tan); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.95rem; color: var(--light-text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer strong { font-size: 0.9rem; color: var(--brown); display: block; }
.reviewer span { font-size: 0.8rem; color: var(--rose); }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  padding: 72px 0;
  background: var(--berry);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--cream); margin-bottom: 14px; }
.cta-banner p { font-size: 1.05rem; color: rgba(253,246,236,0.8); margin-bottom: 32px; }
.cta-banner .btn-tan:hover { background: var(--tan); }

/* ============================
   NEWSLETTER
   ============================ */
.newsletter { padding: 56px 0; background: var(--cream); border-top: 1px solid rgba(212,169,106,0.2); }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-inner h3 { font-size: 1.5rem; color: var(--brown); }
.newsletter-inner p { font-size: 0.9rem; color: var(--light-text); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 18px;
  border: 1.5px solid rgba(212,169,106,0.4);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--rose); }
