:root{
  --bg: #f5efe7;
  --bg-soft: #fbf7f1;
  --white: #ffffff;
  --dark: #141414;
  --dark-2: #1d1d1d;
  --text: #242424;
  --muted: #6f6f6f;
  --primary: #f46a1f;
  --primary-dark: #d75712;
  --border: #eadfce;
  --shadow: 0 12px 30px rgba(20,20,20,0.08);
  --radius: 18px;
  --container: 1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

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

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

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(15,15,15,0.95);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  flex-direction:column;
  flex-shrink:0;
}

.brand-title{
  color:var(--white);
  font-size:2rem;
  font-weight:800;
  line-height:1;
}

.site-header .brand-title,
.site-footer .brand-title{
  background:linear-gradient(90deg, #ffb15a 0%, #f46a1f 45%, #ffffff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.brand-tag{
  color:#f0ede8;
  font-size:.85rem;
  margin-top:4px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.site-nav a{
  color:#fff4ea;
  font-size:.96rem;
  font-weight:500;
  transition:.2s ease;
}

.site-nav a:hover{
  color:#ffb15a;
}

.nav-cta{
  background:var(--primary);
  color:#fff !important;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(244,106,31,0.22);
}

.nav-cta:hover{
  background:var(--primary-dark);
  color:#fff;
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:6px 0;
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:calc(100vh - 86px);
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(20,20,20,0.78) 34%, rgba(20,20,20,0.22) 62%, rgba(20,20,20,0.12) 100%),
    url('assets/hero.jpg') center center / cover no-repeat;
}

.hero-grid{
  position:relative;
  z-index:1;
  width:100%;
  padding:72px 0;
}

.hero-copy{
  max-width:610px;
  color:#fff;
}

.eyebrow{
  margin:0 0 14px;
  color:#ffa14a;
  font-family:'Playfair Display', serif;
  font-size:2rem;
  font-weight:700;
}

.hero h1{
  margin:0;
  font-size:5rem;
  line-height:.95;
  font-weight:800;
  letter-spacing:-0.03em;
}

.hero-subtitle{
  margin:18px 0 0;
  font-size:2.1rem;
  line-height:1.2;
  font-weight:700;
  max-width:560px;
}

.hero-text{
  margin:20px 0 0;
  max-width:560px;
  color:#f3eee7;
  font-size:1.05rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-weight:700;
  transition:.2s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 24px rgba(244,106,31,0.2);
}

.btn-primary:hover{
  background:var(--primary-dark);
}

.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.06);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.12);
}

.btn-light{
  background:#fff4e8;
  color:var(--primary-dark);
  border-color:#f3d1b8;
}

.btn-light:hover{
  background:#ffe7d2;
}

.feature-strip{
  padding:34px 0 20px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  background:transparent;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:14px 28px;
  position:relative;
}

.feature-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:12px;
  bottom:12px;
  width:1px;
  background:#e6cdb7;
}

.feature-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:var(--primary);
  font-size:2rem;
  font-weight:700;
  flex-shrink:0;
}

.feature-item h3{
  margin:0 0 6px;
  font-size:1.4rem;
}

.feature-item p{
  margin:0;
  color:var(--muted);
}

.cards-section{
  padding:18px 0 18px;
}

.tab-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  padding:15px 20px;
  border-radius:12px;
  background:#f7f2eb;
  border:1px solid var(--border);
  font-weight:700;
  text-transform:uppercase;
  font-size:.95rem;
}

.tab.active{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

.cards-grid{
  display:grid;
  gap:20px;
}

.three-col{
  grid-template-columns:repeat(3, 1fr);
}

.four-col{
  grid-template-columns:repeat(4, 1fr);
}

.place-card,
.story-card,
.mini-card{
  background:var(--white);
  border:1px solid #eadfce;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.place-card img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
}

.card-body{
  padding:18px 18px 20px;
}

.card-body h3{
  margin:0 0 6px;
  font-size:1.6rem;
  line-height:1.15;
}

.muted{
  color:var(--muted);
}

.meta-row{
  margin-top:14px;
}

.rating{
  color:var(--primary-dark);
  font-weight:700;
}

.rating small{
  color:#888;
  font-weight:600;
}

.card-footer{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.mini-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:12px;
  border:1px solid #f1b287;
  color:var(--primary-dark);
  font-weight:700;
  background:#fffaf6;
}

.mini-btn:hover{
  background:#fff0e4;
}

.dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}

.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#d7cdc3;
}

.dot.active{
  background:var(--primary);
}

.signature-section{
  padding:10px 0 30px;
}

.signature-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}

.signature-image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.signature-copy{
  background:#fbf4ec;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.script-tag{
  margin:0 0 8px;
  color:var(--primary);
  font-family:'Playfair Display', serif;
  font-size:2rem;
  font-weight:700;
}

.signature-copy h2{
  margin:0;
  font-size:2.8rem;
  line-height:1.1;
}

.copy-space{
  margin-top:14px;
  margin-bottom:0;
}

.recipe-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.recipe-list li{
  position:relative;
  padding-left:18px;
  margin:10px 0;
  color:#444;
  font-weight:500;
}

.recipe-list li::before{
  content:"•";
  color:var(--primary);
  position:absolute;
  left:0;
  top:0;
  font-size:1.2rem;
  line-height:1;
}

.signature-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.city-section,
.stories-section{
  padding:18px 0 28px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-bottom:20px;
}

.section-title span{
  width:66px;
  height:2px;
  background:#eb9a67;
  border-radius:2px;
}

.section-title h2{
  margin:0;
  font-size:2.65rem;
  line-height:1.1;
  text-align:center;
}

.city-filter{
  display:flex;
  justify-content:center;
  margin-bottom:22px;
}

.city-filter select{
  min-width:220px;
  min-height:48px;
  border-radius:12px;
  border:1px solid #dfccb8;
  padding:0 16px;
  font-size:1rem;
  background:#fff;
  color:#444;
  outline:none;
}

.mini-card{
  padding:18px;
}

.mini-card h3{
  margin:0 0 8px;
  font-size:1.5rem;
  line-height:1.15;
}

.mini-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:14px 0 18px;
  color:#444;
  font-weight:600;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
}

.badge.green{
  color:#278046;
  background:#e8f7ec;
  border:1px solid #b8e5c4;
}

.badge.orange{
  color:#d15b17;
  background:#fff0e4;
  border:1px solid #f2c5a6;
}

.mini-btn.wide{
  width:100%;
}

.stories-grid{
  align-items:stretch;
}

.story-card{
  display:grid;
  grid-template-columns:160px 1fr;
  min-height:160px;
}

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

.story-body{
  padding:18px;
}

.story-body h3{
  margin:0 0 10px;
  font-size:1.45rem;
  line-height:1.2;
}

.story-body p{
  margin:0 0 14px;
  color:var(--muted);
}

.story-body a{
  color:var(--primary-dark);
  font-weight:700;
}

.newsletter{
  padding:10px 0 0;
}

.newsletter-wrap{
  background:var(--primary);
  border-radius:16px;
  padding:22px 26px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  box-shadow:0 14px 28px rgba(244,106,31,0.18);
}

.newsletter-copy h3{
  margin:0;
  color:#fff;
  font-size:1.8rem;
}

.newsletter-copy p{
  margin:6px 0 0;
  color:#fff2e8;
}

.newsletter-form{
  display:flex;
  align-items:center;
  gap:0;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  min-height:56px;
  width:min(100%, 540px);
}

.newsletter-form input{
  flex:1;
  min-width:260px;
  border:none;
  outline:none;
  padding:0 18px;
  font-size:1rem;
  min-height:56px;
}

.newsletter-form button{
  border:none;
  background:#161616;
  color:#fff;
  min-height:56px;
  padding:0 28px;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
}

.site-footer{
  margin-top:18px;
  background:linear-gradient(180deg, #101010 0%, #181818 100%);
  color:#fff;
  padding:32px 0 24px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.1fr .8fr .9fr;
  gap:24px;
  align-items:center;
}

.footer-left h2{
  margin:0 0 10px;
  font-size:3rem;
  line-height:1.05;
}

.footer-left h2::first-line{
  color:#fff;
}

.footer-left h2{
  color:#f39d5d;
}

.footer-lead{
  color:#fff;
  font-weight:600;
  margin:0 0 8px;
}

.footer-left p:last-child{
  margin-bottom:0;
  color:#d3d3d3;
}

.footer-contact{
  border:1px solid rgba(244,106,31,0.45);
  border-radius:16px;
  padding:24px;
  background:rgba(255,255,255,0.02);
}

.footer-contact h3{
  margin:0 0 14px;
  color:#ffae74;
  font-size:1.5rem;
}

.footer-contact p{
  margin:10px 0;
  color:#f6f3ef;
}

.footer-image img{
  width:100%;
  border-radius:18px;
  object-fit:cover;
  max-height:240px;
}

.footer-bottom{
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:18px;
  display:grid;
  gap:16px;
  justify-items:center;
  text-align:center;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.footer-links a{
  color:#ede7df;
}

.copyright{
  margin:0;
  color:#c9c1b9;
}

@media (max-width: 1180px){
  .hero h1{
    font-size:4.2rem;
  }

  .hero-subtitle{
    font-size:1.8rem;
  }

  .section-title h2{
    font-size:2.25rem;
  }

  .card-body h3,
  .mini-card h3{
    font-size:1.3rem;
  }

  .signature-copy h2{
    font-size:2.3rem;
  }

  .footer-left h2{
    font-size:2.5rem;
  }
}

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

  .site-nav{
    position:absolute;
    left:16px;
    right:16px;
    top:86px;
    background:#151515;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    box-shadow:0 20px 30px rgba(0,0,0,0.28);
  }

  .site-nav.open{
    display:flex;
  }

  .site-nav a{
    padding:6px 4px;
  }

  .site-nav .nav-cta{
    text-align:center;
  }

  .feature-grid,
  .three-col,
  .four-col,
  .signature-grid,
  .footer-top,
  .newsletter-wrap{
    grid-template-columns:1fr;
  }

  .feature-item{
    padding:18px 0;
  }

  .feature-item:not(:last-child)::after{
    left:0;
    right:0;
    top:auto;
    bottom:0;
    width:auto;
    height:1px;
  }

  .story-card{
    grid-template-columns:140px 1fr;
  }

  .newsletter-form{
    width:100%;
  }

  .footer-image img{
    max-height:none;
  }
}

@media (max-width: 760px){
  .container{
    width:min(100% - 24px, var(--container));
  }

  .nav-wrap{
    min-height:78px;
  }

  .hero{
    min-height:auto;
  }

  .hero-grid{
    padding:58px 0 66px;
  }

  .eyebrow{
    font-size:1.5rem;
  }

  .hero h1{
    font-size:3rem;
  }

  .hero-subtitle{
    font-size:1.6rem;
  }

  .hero-text{
    font-size:.98rem;
  }

  .btn{
    width:100%;
  }

  .tab{
    min-width:unset;
    flex:1 1 100%;
  }

  .signature-copy{
    padding:24px 20px;
  }

  .signature-copy h2,
  .section-title h2,
  .footer-left h2{
    font-size:2rem;
  }

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

  .story-card img{
    aspect-ratio:16 / 10;
  }

  .newsletter-wrap{
    padding:18px;
  }

  .newsletter-copy h3{
    font-size:1.45rem;
  }

  .newsletter-form{
    flex-direction:column;
    background:transparent;
    gap:12px;
    overflow:visible;
    min-height:auto;
  }

  .newsletter-form input,
  .newsletter-form button{
    width:100%;
    border-radius:12px;
  }

  .newsletter-form input{
    min-width:0;
    background:#fff;
  }

  .footer-links{
    gap:12px 16px;
  }
}

@media (max-width: 480px){
  .brand-title{
    font-size:1.6rem;
  }

  .brand-tag{
    font-size:.75rem;
  }

  .hero h1{
    font-size:2.4rem;
  }

  .hero-subtitle{
    font-size:1.32rem;
  }

  .feature-item h3{
    font-size:1.15rem;
  }

  .card-body h3,
  .mini-card h3,
  .story-body h3{
    font-size:1.15rem;
  }

  .card-footer{
    flex-direction:column;
    align-items:stretch;
  }

  .mini-btn{
    width:100%;
  }
}


.contact-intro{
  margin:0 0 14px;
  color:#f6f3ef;
  line-height:1.7;
}

.bot-check-box{
  margin-top:10px;
  margin-bottom:16px;
}

.bot-check-label{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.bot-check-label input[type="checkbox"]{
  width:18px;
  height:18px;
  accent-color:#f46a1f;
  cursor:pointer;
}

.email-reveal-box{
  display:none;
  margin-top:10px;
}