:root{
  --bg:#0a0d12;
  --bg-alt:#10151c;
  --surface:#151b23;
  --surface-2:#1b232d;
  --border:#262f3a;
  --text:#f2f5f8;
  --muted:#9aa7b4;
  --red:#e0263f;
  --red-dim:#a01c2f;
  --red-bright:#ff4a5e;
  --gold:#f4c430;
  --radius:16px;
  --radius-sm:10px;
  --maxw:1100px;
  --header-h:64px;
}

*, *::before, *::after{ box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; }
html, body{ margin:0; padding:0; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

/* ---------- header / nav ---------- */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,13,18,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header .container{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  min-width:0;
}
.brand img{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 2px var(--red);
  flex:none;
}
.brand-name{
  font-weight:700;
  font-size:15px;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:8px;
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  cursor:pointer;
  flex:none;
}
.nav-toggle svg{ width:20px; height:20px; }

.site-nav{
  position:fixed;
  top:var(--header-h);
  left:0;
  right:0;
  background:var(--bg-alt);
  border-bottom:1px solid var(--border);
  display:none;
  flex-direction:column;
  padding:10px 20px 18px 20px;
  gap:2px;
  max-height:calc(100vh - var(--header-h));
  overflow-y:auto;
}
.site-nav.open{ display:flex; }
.site-nav a{
  display:block;
  padding:13px 6px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:15px;
  border-bottom:1px solid var(--border);
}
.site-nav a:last-of-type{ border-bottom:none; }
.site-nav a.active{ color:var(--red-bright); }

.nav-fb-btn{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--red);
  color:#fff !important;
  font-weight:700;
  padding:12px 16px;
  border-radius:10px;
  text-align:center;
}

@media (min-width:860px){
  .nav-toggle{ display:none; }
  .site-nav{
    position:static;
    display:flex !important;
    flex-direction:row;
    align-items:center;
    background:transparent;
    border:none;
    padding:0;
    gap:26px;
    max-height:none;
    overflow:visible;
  }
  .site-nav a{
    padding:8px 0;
    border-bottom:none;
    font-size:14.5px;
  }
  .nav-fb-btn{
    margin-top:0;
    padding:10px 18px;
    font-size:14px;
  }
}

/* ---------- hero ---------- */

.hero{
  position:relative;
  background:
    linear-gradient(180deg, rgba(10,13,18,.55) 0%, rgba(10,13,18,.80) 65%, var(--bg) 100%),
    radial-gradient(1100px 480px at 15% -10%, rgba(224,38,63,.22), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(244,196,48,.10), transparent 55%),
    url('/images/sunset-poppy.jpg');
  background-size: cover;
  background-position: center 60%;
  border-bottom:1px solid var(--border);
  padding:56px 0 60px 0;
}
.hero .container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:22px;
}
.hero-logo{
  width:clamp(140px, 40vw, 200px);
  height:clamp(140px, 40vw, 200px);
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 4px var(--red), 0 14px 40px rgba(0,0,0,.55);
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12.5px;
  font-weight:700;
  color:var(--gold);
}
.hero h1{
  margin:0;
  font-size:clamp(28px, 6.5vw, 46px);
  line-height:1.15;
  font-weight:800;
  letter-spacing:.2px;
  max-width:16ch;
}
.hero p.lede{
  margin:0;
  max-width:56ch;
  color:var(--muted);
  font-size:16px;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:340px;
  gap:12px;
  margin-top:6px;
}
@media (min-width:560px){
  .hero-actions{ flex-direction:row; max-width:none; justify-content:center; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:15px 22px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background:linear-gradient(180deg, #ff3b52 0%, var(--red) 55%, var(--red-dim) 100%);
  color:#fff;
  box-shadow:0 4px 16px rgba(224,38,63,.35);
}
.btn-primary:hover{ filter:brightness(1.06); }
.btn-outline{
  background:transparent;
  border-color:var(--border);
  color:var(--text);
}
.btn-outline:hover{ border-color:var(--red); color:var(--red-bright); }
.btn svg{ width:18px; height:18px; flex:none; }
.btn-block{ width:100%; }

/* ---------- info strip (address / hours) ---------- */

.info-strip{ padding:44px 0; }
.info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width:700px){
  .info-grid{ grid-template-columns:1fr 1fr; }
}
.info-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.info-icon{
  flex:none;
  width:42px;
  height:42px;
  border-radius:10px;
  background:rgba(224,38,63,.14);
  color:var(--red-bright);
  display:flex;
  align-items:center;
  justify-content:center;
}
.info-icon svg{ width:22px; height:22px; }
.info-card h3{
  margin:2px 0 6px 0;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.info-card p{ margin:0; font-size:15.5px; }
.info-card .hours-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:14.5px;
  padding:3px 0;
}
.info-card .hours-row span:first-child{ color:var(--muted); }
.info-card a.map-link{
  display:inline-block;
  margin-top:8px;
  color:var(--red-bright);
  font-weight:700;
  font-size:13.5px;
  text-decoration:none;
}

/* ---------- socials ---------- */

.social-strip{
  padding:8px 0 48px 0;
}
.social-card{
  background:linear-gradient(135deg, rgba(224,38,63,.14), rgba(244,196,48,.06));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.social-card h2{ margin:0; font-size:20px; }
.social-card p{ margin:0; color:var(--muted); font-size:14.5px; max-width:44ch; }
.social-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:8px;
}

/* ---------- section headings ---------- */

.section{ padding:48px 0; }
.section-head{
  text-align:center;
  max-width:52ch;
  margin:0 auto 30px auto;
}
.section-head .eyebrow{ display:block; margin-bottom:8px; }
.section-head h2{ margin:0 0 10px 0; font-size:clamp(22px,4.5vw,30px); }
.section-head p{ margin:0; color:var(--muted); font-size:15px; }

/* ---------- testimonials ---------- */

.testimonial-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media (min-width:760px){
  .testimonial-grid{ grid-template-columns:repeat(3,1fr); }
}
.testimonial-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.stars{ color:var(--gold); font-size:15px; letter-spacing:2px; }
.testimonial-card blockquote{
  margin:0;
  font-size:15px;
  color:var(--text);
  font-style:italic;
}
.testimonial-card cite{
  font-style:normal;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
.placeholder-note{
  font-size:12px;
  color:var(--muted);
  text-align:center;
  margin-top:18px;
}

/* ---------- generic content blocks (about page) ---------- */

.content-block{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
  padding:16px 0;
}
@media (min-width:760px){
  .content-block{ grid-template-columns:1fr 1fr; }
  .content-block.reverse .content-media{ order:2; }
}
.content-media{
  aspect-ratio:4/3;
  background:var(--surface);
  border:1px dashed var(--border);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  padding:20px;
  gap:8px;
  flex-direction:column;
}
.content-media svg{ width:34px; height:34px; opacity:.6; }
.content-text h2{ margin:0 0 12px 0; font-size:22px; }
.content-text p{ margin:0 0 12px 0; color:var(--muted); font-size:15px; }
.content-text p:last-child{ margin-bottom:0; }

/* ---------- gallery ---------- */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media (min-width:600px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:14px; } }
@media (min-width:900px){ .gallery-grid{ grid-template-columns:repeat(4,1fr); } }
.gallery-item{
  aspect-ratio:1/1;
  border-radius:var(--radius-sm);
  background:var(--surface);
  border:1px dashed var(--border);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  text-align:center;
  padding:10px;
  font-size:12px;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-item svg{ width:26px; height:26px; opacity:.55; margin-bottom:6px; }
.gallery-empty{
  text-align:center;
  color:var(--muted);
  font-size:14.5px;
  padding:20px 0 8px 0;
}

/* ---------- contact ---------- */

.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:820px){
  .contact-grid{ grid-template-columns:.85fr 1fr; align-items:start; }
}
.contact-details-col{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.contact-details{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.contact-details .detail-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.contact-details .detail-row h3{
  margin:0 0 4px 0;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.contact-details .detail-row p, .contact-details .detail-row a{
  margin:0;
  font-size:15.5px;
  text-decoration:none;
}
.contact-details a.tel-link, .contact-details a.email-link{ color:var(--red-bright); font-weight:700; }

.contact-form{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
}
.form-row{ margin-bottom:16px; }
.form-row label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--muted);
  margin-bottom:6px;
}
.form-row input, .form-row textarea{
  width:100%;
  background:var(--bg-alt);
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  padding:11px 12px;
}
.form-row textarea{ resize:vertical; min-height:120px; line-height:1.4; }
.form-row input:focus, .form-row textarea:focus{
  outline:2px solid var(--red);
  outline-offset:0;
  background:#20262f;
}
.form-note{ font-size:12.5px; color:var(--muted); margin:2px 0 18px 0; }
.form-status{
  font-size:14px;
  font-weight:600;
  margin-top:14px;
  min-height:20px;
}
.form-status.ok{ color:#5fd88a; }
.form-status.err{ color:var(--red-bright); }

/* ---------- footer ---------- */

.site-footer{
  margin-top:auto;
  border-top:1px solid var(--border);
  background:var(--bg-alt);
  padding:36px 0 28px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:700px){
  .footer-grid{ grid-template-columns:1.2fr 1fr 1fr; }
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.footer-brand img{ width:34px; height:34px; border-radius:50%; object-fit:cover; }
.footer-brand span{ font-weight:700; }
.site-footer h4{
  margin:0 0 10px 0;
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.site-footer p{ margin:0 0 6px 0; font-size:14px; color:var(--muted); }
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{ font-size:14px; text-decoration:none; color:var(--text); }
.footer-links a:hover{ color:var(--red-bright); }
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--border);
  text-align:center;
  font-size:12.5px;
  color:var(--muted);
}
