/* Plain HTML + CSS site (single-folder friendly) */
:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --text:#eaf0ff;
  --muted:#b8c6ff;
  --accent:#2f6bff;
  --accent2:#ff3b4d;
  --border: rgba(255,255,255,.12);
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, #152a53 0%, var(--bg) 60%);
  color: var(--text);
  line-height:1.55;
}

a{ color: inherit; text-underline-offset: 3px; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.site-header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.75);
  border-bottom: 1px solid var(--border);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
}

.brand-logo{
  width:48px;
  height:48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background:#fff;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ color: var(--muted); font-weight:600; font-size:.95rem; }

.nav{ display:flex; align-items:center; gap: 18px; }
.nav a{ text-decoration:none; color: var(--muted); font-weight:600; }
.nav a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.1rem;
  cursor:pointer;
}

.mobile-nav{
  display:none;
  padding: 12px 0 18px;
  border-top: 1px solid var(--border);
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  text-decoration:none;
  color: var(--muted);
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: linear-gradient(135deg, var(--accent), #6ea6ff);
  color: #071022;
  font-weight: 800;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(47,107,255,.25);
}
.btn:hover{ filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }

.btn-small{ padding: 10px 14px; font-size: .95rem; }
.btn-ghost{
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero{
  position:relative;
  padding: 46px 0 30px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(11,18,32,.75) 0%, rgba(11,18,32,.92) 70%),
    url("hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: .9;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
  align-items: start;
}

.hero-copy h1{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 6px 0 12px;
}
.hero-copy p{ color: var(--muted); font-size: 1.05rem; margin: 0 0 16px; }
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 10px; }

.quick-facts{
  margin: 18px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 8px;
  color: var(--muted);
}
.quick-facts a{ color: var(--text); }


/* ===== Hero (new layout to match provided mock) ===== */
.hero.hero--new{
  padding: 56px 0 40px;
  background:
    radial-gradient(900px 420px at 18% 30%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 70%, rgba(255,0,50,.18), transparent 65%),
    linear-gradient(135deg, #0a2a45 0%, #0b3e73 45%, #b61e2f 100%);
}

.hero--new .hero-grid{
  grid-template-columns: 1.15fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero-left{ max-width: 640px; }

.hero-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.95);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  width: fit-content;
}

.hero-pill-icon{
  width: 18px; height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.18);
  display:inline-block;
  position: relative;
}
.hero-pill-icon:after{
  content:"";
  position:absolute;
  inset: 4px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
}

.hero-title{
  margin: 14px 0 14px;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: .95;
  letter-spacing: -0.02em;
}
.hero-title-accent{ display:inline-block; }
.accent-red{ color: #ff2f3b; }
.accent-soft{ color: rgba(255,255,255,.80); }

.hero-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  max-width: 62ch;
  font-size: 1.07rem;
}

.hero-features{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-feature{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  min-width: 178px;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.hero-icon{
  width: 36px; height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color: white;
  flex: 0 0 36px;
}
.hero-icon--red{ background: rgba(255,47,59,.95); }
.hero-icon--green{ background: rgba(20,185,129,.95); }
.hero-icon--blue{ background: rgba(59,130,246,.95); }

.hero-feature-title{ font-weight: 800; }
.hero-feature-sub{ color: rgba(255,255,255,.80); font-size: .92rem; margin-top: 2px; }

.hero-actions--new{ margin-top: 10px; }

.btn.btn-red{
  background: #e0262d;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(224,38,45,.28);
}
.btn.btn-red:hover{ filter: brightness(1.04); }

.btn.btn-outline{
  background: rgba(255,255,255,.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: none;
}
.btn.btn-outline:hover{ background: rgba(255,255,255,.14); }

.btn-icon{ display:inline-flex; }

/* Right photo card */
.hero-right{ width: 100%; }
.hero-photo{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  background: rgba(0,0,0,.12);
}


/* Responsive */
@media (max-width: 920px){
  .hero--new .hero-grid{ grid-template-columns: 1fr; }
  .hero-left{ max-width: none; }
  .hero-badge{ right: 12px; }
  /* Keep the panel safely on the image without stretching across faces */
  .hero-photo-overlay{ left: 14px; right: auto; top: 14px; bottom: auto; max-width: 72%; min-height: 180px; }
}
@media (max-width: 520px){
  .hero-features{ gap: 10px; }
  .hero-feature{ width: 100%; }
}

.section{
  padding: 48px 0;
}
.section-alt{
  background: rgba(255,255,255,.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section h2{
  margin: 0 0 10px;
  font-size: 1.9rem;
}
.section-lead{
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(15,27,51,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }

.hero-card .card{ padding: 18px; }
.muted{ color: var(--muted); }
.fineprint{ color: rgba(184,198,255,.85); font-size: .9rem; margin: 10px 0 0; }

.form{ display:grid; gap: 12px; margin-top: 12px; }
label{ display:grid; gap: 6px; color: var(--text); font-weight:700; font-size: .95rem; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6,10,18,.45);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(110,166,255,.7);
  box-shadow: 0 0 0 4px rgba(47,107,255,.18);
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.about-photo{ padding: 14px; }
.about-photo img{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  display:block;
}
.about-photo figcaption{ margin-top: 10px; }

.about-bullets{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.bullet{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}
.dot{
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent2), #ff9aa3);
  box-shadow: 0 10px 20px rgba(255,59,77,.2);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-card{
  display:flex;
  gap: 12px;
  text-decoration:none;
  align-items:flex-start;
}
.contact-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
}
.contact-label{ font-weight:800; }
.contact-value{ color: var(--text); font-weight:700; }

.notice{
  position: sticky;
  top: 86px;
}

.site-footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(11,18,32,.85);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  object-fit: cover;
}
.footer-links{
  display:flex;
  gap: 14px;
}
.footer-links a{ color: var(--muted); text-decoration:none; font-weight:700; }
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .notice{ position: static; }
}
@media (max-width: 780px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .mobile-nav{ display:block; }
  .cards{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}


/* About showcase (reference layout) */
.about-showcase{
  background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 100%);
  position: relative;
  overflow: hidden;
}
.about-showcase::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(15,23,42,0.04) 0 50%, rgba(255,255,255,1) 50% 100%);
  z-index:0;
}
.about-showcase::after{
  content:"";
  position:absolute;
  inset:-40% -20% auto -20%;
  height: 220px;
  background: radial-gradient(closest-side, rgba(239,68,68,0.10), rgba(239,68,68,0));
  z-index:0;
  pointer-events:none;
}

.about2{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items:center;
}

.about2-image{
  border-radius: 22px;
  padding: 0;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(2,6,23,0.18);
}
.about2-image img{
  width:100%;
  height: 340px;
  object-fit: cover;
  display:block;
}

.about2-title{
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.accent-red{ color: var(--accent2); }

.about2-features{
  margin-top: 22px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}

.feature-row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.feature-title{
  font-weight: 750;
  margin-bottom: 4px;
}
.feature-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: white;
  flex: 0 0 42px;
}
.feature-icon svg{
  width: 22px;
  height: 22px;
}
.icon-red{ background: var(--accent2); }
.icon-blue{ background: #1d4ed8; }
.icon-green{ background: #16a34a; }

.about2-stats{
  margin-top: 26px;
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat{
  border-radius: 18px;
  padding: 18px 22px;
  min-width: 160px;
  text-align:center;
  box-shadow: 0 10px 30px rgba(2,6,23,0.10);
}
.stat-num{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  color: #0b3b82;
}

@media (max-width: 900px){
  .about2{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about2-image img{
    height: 260px;
  }
  .stat{
    flex: 1 1 140px;
  }
}





/* --- About Section Color Fix (Readable) --- */
.about-split{
  background: #eef2f6; /* light cool gray like screenshot bottom */
}

.about-split__container{
  align-items: start;
}

.about-split__content{
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}

.about-split__title{
  color: #374151; /* dark gray */
  letter-spacing: -0.02em;
}

.about-split__title .muted{
  color: #374151;
}

.about-split__title .accent{
  color: #dc2626; /* strong red */
}

.about-split__lead{
  color: #4b5563;
  line-height: 1.7;
}

.about-points{
  margin-top: 18px;
}

.about-point{
  display: flex;
  gap: 14px;
  padding: 10px 8px;
  border-radius: 14px;
}

.about-point__headline{
  color: #374151;
  font-weight: 700;
}

.about-point__sub{
  color: #6b7280;
}

.about-point--active{
  background: #f8e9ec; /* subtle pink highlight bar */
}

.about-point__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  flex: 0 0 34px;
}

.about-point__icon--red{ background: #dc2626; }
.about-point__icon--blue{ background: #1d4ed8; }
.about-point__icon--green{ background: #059669; }

.about-stats{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  background: transparent;
  padding: 0;
}

.stat-pill{
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(17,24,39,.08);
}

.stat-pill__value{
  color: #1d4ed8; /* blue numbers */
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.stat-pill__label{
  color: #6b7280;
  margin-top: 8px;
}

/* Ensure mobile still looks good */
@media (max-width: 900px){
  .about-split__content{ padding: 26px 22px 20px; }
  .about-stats{ grid-template-columns: 1fr; }
}


/* --- Hero Owners Card Patch --- */
.hero-right{
  display:flex;
  justify-content:flex-end;
}

.hero-photo{
  position:relative;
  width:min(560px, 100%);
  border-radius:18px;
  overflow:hidden;
  border:3px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 46px rgba(0,0,0,0.30);
  background: rgba(255,255,255,0.06);
}

.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.28));
  pointer-events:none;
}

.hero-photo-overlay{
  position:absolute;
  /* Keep the panel at the top-left and make it taller, while keeping faces clear */
  top:18px;
  left:18px;
  right:auto;
  bottom:auto;

  /* narrower so it stays off the faces; taller so the copy doesn't feel cramped */
  max-width: 56%;
  min-height: 190px;

  padding: 18px 16px 16px;
  border-radius: 14px;
  background: rgba(6, 33, 52, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.94);

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.hero-photo-title{
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hero-photo-sub{
  font-size: 16px;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 6px;
}

.hero-photo-small{
  font-size: 14px;
  opacity: 0.9;
}

.hero-badge{
  position:absolute;
  top: 12px;
  right: 12px;
  background: #16a34a;
  color:#ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-align:center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.35);
}

@media (max-width: 900px){
  .hero-photo{ width:100%; }
  .hero-photo-overlay{ max-width: 78%; min-height: 170px; }
}


/* --- About Showcase Match --- */
.section.about-showcase{
  background: linear-gradient(90deg, #eef0f3 0%, #eef0f3 46%, #ffffff 46%, #ffffff 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Layout */
.section.about-showcase .about2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

/* Left image card */
.section.about-showcase .about2-image.card{
  background: transparent;
  border: none;
  box-shadow: 0 16px 40px rgba(17,24,39,.10);
  border-radius: 18px;
  overflow: hidden;
}
.section.about-showcase .about2-image.card img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}

/* Right content panel (white card) */
.section.about-showcase .about2-content{
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 34px 26px;
  box-shadow: 0 18px 48px rgba(17,24,39,.10);
}

/* Text colors */
.section.about-showcase .about2-title{
  color: #374151 !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section.about-showcase .accent-red{
  color: #e11d2e !important;
}
.section.about-showcase .section-lead{
  color: #4b5563 !important;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 18px;
}
.section.about-showcase .feature-row h4{
  color: #374151 !important;
  font-weight: 700;
}
.section.about-showcase .feature-row p{
  color: #6b7280 !important;
}

/* Highlight middle feature row */
.section.about-showcase .feature-row.is-highlight,
.section.about-showcase .feature-row:nth-child(2){
  background: #f7e8ea;
  border-radius: 14px;
  padding: 14px 12px;
}

/* Feature icons keep their color chips */
.section.about-showcase .feature-icon{
  color: #ffffff !important;
}

/* Stats pills */
.section.about-showcase .about2-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 22px;
}
.section.about-showcase .about2-stats .stat.card{
  background: #ffffff !important;
  border: none !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 36px rgba(17,24,39,.10) !important;
  padding: 18px 18px 16px;
  text-align: center;
}
.section.about-showcase .about2-stats .stat-num{
  color: #1d4ed8 !important;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}
.section.about-showcase .about2-stats .muted{
  color: #6b7280 !important;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px){
  .section.about-showcase{
    background: #eef0f3;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section.about-showcase .about2{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section.about-showcase .about2-content{
    padding: 26px 22px 20px;
  }
  .section.about-showcase .about2-stats{
    grid-template-columns: 1fr;
  }
}


/* --- Restore tall Meet the Owners image (no crop) --- */
.hero-photo{
  aspect-ratio: auto !important;
}

/* --- About headings black --- */
.section.about-showcase .feature-row h4{
  color: #000000 !important;
}


/* --- Definitive Meet the Owners image framing (taller, no head crop) --- */
.hero-photo img{
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;   /* taller than 16:9 */
  object-fit: cover;
  object-position: center 35%;      /* keep faces in frame + show more water */
  display: block;
  transform: none !important;
}


/* --- About feature titles black (match screenshot) --- */
.section.about-showcase .feature-title{
  color: #000000 !important;
}


/* --- Force 3 hero feature boxes in one row (desktop only) --- */
@media (min-width: 900px){
  .hero .cards,
  .hero-features,
  .hero .features{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px;
  }
}


/* ---- Owners Section Fix ---- */

.hero-photo {
    display: flex;
    align-items: flex-end; /* push image content downward */
}

.hero-photo img {
    object-position: bottom center; /* shift photo downward */
}

.hero-photo-overlay {
    top: 0;
    bottom: auto;
    height: 60%;  /* taller box */
    max-width: 450px; /* slightly narrower */
}


/* ---- FINAL Owners Section Fix ---- */

.hero-photo {
    display: block !important;
    background-size: cover !important;
    background-position: right center !important;
    min-height: 520px !important;
}

.hero-photo img {
    object-position: center !important;
}

.hero-photo-overlay {
    position: absolute !important;
    top: 30px !important;
    left: 30px !important;
    bottom: auto !important;
    height: auto !important;
    width: 380px !important;
    max-width: 90% !important;
    padding: 40px !important;
    background: rgba(20, 20, 40, 0.75) !important;
    border-radius: 18px !important;
}


/* ---- Owners Section Layout Fix (Overlay above image; no face coverage) ---- */
.hero-photo{
  display:flex !important;
  flex-direction:column !important;
  min-height:auto !important;
  background: transparent !important;
}

.hero-photo-overlay{
  position:relative !important;
  inset:auto !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  bottom:auto !important;
  width:100% !important;
  max-width:none !important;
  min-height:auto !important;
  padding:34px 34px 28px !important;
  border-radius:18px 18px 0 0 !important;
  background: rgba(20,20,40,0.78) !important;
}

.hero-photo img{
  display:block !important;
  width:100% !important;
  height:360px !important;
  object-fit:cover !important;
  object-position:center 22% !important; /* keeps faces higher in frame */
}

.hero-badge{
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  z-index:3 !important;
}

/* On smaller screens, make image a bit taller */
@media (max-width: 640px){
  .hero-photo img{ height:420px !important; }
}





@media (max-width: 780px){
  .nav-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    font-size: 1.8rem;
    line-height: 1;
  }

  /* Make dropdown panel clearly visible */
  .mobile-nav{
    position:absolute !important;
    left:0;
    right:0;
    top:100%;
    background: rgba(11,18,32,.97);
    backdrop-filter: blur(12px);
    padding: 18px 20px 22px;
    display:block !important; /* rely on [hidden] for closed state */
  }

  .mobile-nav a{
    font-size: 1.6rem;
    padding: 16px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .mobile-nav a.btn{
    margin-top: 14px;
    display:inline-flex;
    width: 100%;
    justify-content:center;
    border-bottom: none;
  }
}




/* ---- Mobile menu fix v2: menu is hidden unless header has .menu-open ---- */
/* Ensure the HTML 'hidden' attribute always wins */
.mobile-nav[hidden]{ display:none !important; }

@media (max-width: 780px){
  /* Keep desktop nav hidden, show hamburger */
  .nav{ display:none !important; }
  .nav-toggle{ display:inline-flex !important; align-items:center; justify-content:center; }

  /* Default: mobile menu is NOT shown */
  .mobile-nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background: rgba(11,18,32,.97);
    backdrop-filter: blur(12px);
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  /* Show only when opened */
  .site-header.menu-open .mobile-nav{
    display:block;
  }

  .mobile-nav a{
    display:block;
    font-size: 1.25rem;
    padding: 14px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,.10);
    text-decoration:none;
    font-weight:800;
  }
  .mobile-nav a.btn{
    margin-top: 14px;
    display:flex;
    width:100%;
    justify-content:center;
    border-bottom:none;
  }
}


/* =====================================================
   Monthly Newsletter Card
   ===================================================== */
.newsletter-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, rgba(6, 33, 52, 0.92) 0%, rgba(20, 55, 80, 0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.93);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 14px;
}

.newsletter-icon {
  font-size: 26px;
  line-height: 1;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #ffffff;
  flex: 1;
}

.newsletter-season-badge {
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.newsletter-hook {
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  opacity: 0.95;
  margin: 0;
  border-left: 3px solid #16a34a;
  padding-left: 12px;
}

.newsletter-body {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.92;
}

.newsletter-did-you-know {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-dyk-header {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.newsletter-dyk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dyk-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.newsletter-dyk-item p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.92;
}

.newsletter-cta-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.90;
}

.newsletter-cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 13px 18px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.newsletter-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.55);
}

@media (max-width: 900px) {
  .newsletter-card {
    width: 100%;
  }
}

/* =====================================================
   Footer Additions — Facebook link & copyright
   ===================================================== */
.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-fb-link:hover {
  opacity: 1;
  color: #4f90e8;
}

.footer-copyright {
  text-align: center;
  font-size: 12.5px;
  opacity: 0.5;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 14px;
}
