/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3f151b;
  background-color: #fdf6f0;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #7B2D3B;
}

.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8960a;
  background: linear-gradient(135deg, #fff0d4, #ffdf9e);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag-light {
  color: #ffb830;
  background: rgba(255, 184, 48, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.plum-text {
  color: #7B2D3B;
}

.amber-text {
  color: #c47606;
}

.section-desc {
  font-size: 1.1rem;
  color: #6c2530;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.text-amber {
  color: #e8960a;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-amber {
  background: linear-gradient(135deg, #ffb830, #e8960a);
  color: #fff;
  border-color: #e8960a;
  box-shadow: 0 4px 15px rgba(232, 150, 10, 0.35);
}

.btn-amber:hover {
  background: linear-gradient(135deg, #ffc95e, #ffb830);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 150, 10, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#site-header.scrolled {
  background: rgba(253, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(123, 45, 59, 0.1);
}

.nav {
  padding: 16px 0;
  transition: padding 0.3s ease;
}

#site-header.scrolled .nav {
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

#site-header.scrolled .nav-brand {
  color: #7B2D3B;
}

.nav-brand-text {
  letter-spacing: -0.01em;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#site-header.scrolled .nav-links a {
  color: #6c2530;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

#site-header.scrolled .nav-links a:hover {
  background: rgba(123, 45, 59, 0.08);
  color: #7B2D3B;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger {
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

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

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

#site-header.scrolled .hamburger,
#site-header.scrolled .hamburger::before,
#site-header.scrolled .hamburger::after {
  background: #7B2D3B;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(63, 21, 27, 0.82) 0%,
    rgba(123, 45, 59, 0.70) 50%,
    rgba(108, 37, 48, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffc95e;
  background: rgba(255, 201, 94, 0.15);
  border: 1px solid rgba(255, 201, 94, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.text-center {
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  background: #fdf6f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.img-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.15);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-card--main {
  width: 75%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 1;
}

.img-card--accent {
  width: 55%;
  height: 50%;
  bottom: 5%;
  right: 0;
  z-index: 2;
  border: 5px solid #fdf6f0;
}

.img-card--float {
  width: 35%;
  height: 30%;
  bottom: 0;
  left: 15%;
  z-index: 3;
  border: 5px solid #fdf6f0;
  box-shadow: 0 15px 40px rgba(123, 45, 59, 0.2);
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  color: #6c2530;
  opacity: 0.85;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(123, 45, 59, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #7B2D3B;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c47606;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== PRODUCTS ===== */
.products {
  background: #fdf0f3;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  border: 1px solid rgba(123, 45, 59, 0.06);
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.12);
  border-color: rgba(242, 168, 184, 0.4);
}

.product-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fdf0f3, #f9d4dc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #7B2D3B;
}

.product-desc {
  font-size: 0.95rem;
  color: #6c2530;
  opacity: 0.8;
  line-height: 1.7;
}

/* ===== SPECIALS ===== */
.specials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.specials-bg {
  position: absolute;
  inset: 0;
}

.specials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(63, 21, 27, 0.90) 0%,
    rgba(123, 45, 59, 0.85) 100%
  );
}

.specials-content {
  position: relative;
  z-index: 1;
}

.section-title-light {
  color: #fff;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.special-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.special-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: rgba(255, 184, 48, 0.4);
}

.special-badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B2D3B;
  background: linear-gradient(135deg, #ffc95e, #ffb830);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.special-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.special-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
  background: #fdf6f0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-info {
  padding: 20px 0;
}

.visit-info .section-title {
  margin-bottom: 16px;
}

.visit-info > p {
  color: #6c2530;
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-details strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #7B2D3B;
  margin-bottom: 2px;
}

.visit-details span,
.visit-details a {
  font-size: 0.95rem;
  color: #6c2530;
  opacity: 0.8;
  line-height: 1.6;
}

.visit-details a:hover {
  color: #c47606;
  text-decoration: underline;
}

.visit-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
  min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
  background: #2a0f12;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 280px;
}

.footer h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc95e;
  margin-bottom: 20px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: #ffc95e;
}

.footer-newsletter p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  min-width: 0;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input button {
  background: linear-gradient(135deg, #ffb830, #e8960a);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.newsletter-input button:hover {
  background: linear-gradient(135deg, #ffc95e, #ffb830);
}

.newsletter-success {
  display: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffc95e;
  margin-top: 10px;
}

.newsletter-success.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(42, 15, 18, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: right 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffc95e !important;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 400px;
    order: -1;
  }

  .about-stats {
    gap: 24px;
  }

  .products-grid,
  .specials-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badges {
    flex-direction: column;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .stat {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
}
