
:root{
  --navy:#1F5F8B;
  --tan:#D8C3A5;
  --green:#355E3B;
  --grey:#D9D9D9;
  --orange:#F4A261;
  --ink:#1d2430;
  --cream:#F7F4EE;
  --card:#ffffff;
  --line:rgba(29,36,48,.12);
  --shadow:0 20px 45px rgba(29,36,48,.08);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top, rgba(217,217,217,.32), transparent 34%),
    linear-gradient(180deg, #fff, #f8f5ef 55%, #eef3ef);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{width:min(1240px, calc(100% - 32px)); margin:0 auto}
.announce{
  background:linear-gradient(90deg, var(--green), #27472f);
  color:#fff;
  font-size:.92rem;
  letter-spacing:.02em;
}
.announce .wrap{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:8px 0;
  text-align:center;
}
.announce .dot{
  width:8px;height:8px;border-radius:999px;background:var(--orange);
  display:inline-block;
}

header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:saturate(120%) blur(8px);
  background:rgba(247,244,238,.88);
  border-bottom:1px solid rgba(29,36,48,.06);
}
.navbar{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
}
.brand img{
  height:74px;
  width:auto;
}
.brand .wordmark{
  display:none;
}
.nav-toggle{
  display:none;
  margin-left:auto;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  height:44px;
  width:44px;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.nav-toggle span{
  display:block;width:18px;height:2px;background:var(--ink);position:relative;
}
.nav-toggle span::before,.nav-toggle span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink);
}
.nav-toggle span::before{top:-6px}
.nav-toggle span::after{top:6px}

nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
nav a{
  padding:12px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  color:#22313a;
}
nav a:hover, nav a.active{
  background:#fff;
  box-shadow:0 8px 20px rgba(29,36,48,.06);
  color:var(--navy);
}

.hero{
  padding:18px 0 0;
}
.hero-card{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  min-height:660px;
  box-shadow:var(--shadow);
  background:#111;
}
.hero-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.64) 100%),
    linear-gradient(120deg, rgba(31,95,139,.18), rgba(244,162,97,.12));
  z-index:1;
}
.hero-card img{
  width:100%; height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:660px;
  display:flex;
  align-items:flex-end;
  padding:42px;
}
.hero-copy{
  width:min(760px, 100%);
  color:#fff;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  font-size:.85rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.kicker::before{
  content:"";
  width:10px;height:10px;border-radius:999px;background:var(--orange);
}
.hero h1{
  margin:0 0 16px;
  font-size:clamp(2.75rem, 5vw, 5.7rem);
  line-height:.95;
  letter-spacing:-.04em;
}
.script{
  font-family:"Brush Script MT","Segoe Script","Snell Roundhand",cursive;
  font-weight:400;
  font-size:1.28em;
}
.hero p{
  margin:0 0 26px;
  max-width:60ch;
  font-size:1.06rem;
  line-height:1.7;
  color:rgba(255,255,255,.9);
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid transparent;
}
.btn.primary{
  background:var(--orange);
  color:#1a140d;
}
.btn.secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.btn:hover{transform:translateY(-1px)}
.hero-banner{
  margin-top:-32px;
  position:relative;
  z-index:3;
  display:flex;
  justify-content:center;
}
.badge-row{
  width:min(1100px, calc(100% - 24px));
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.badge{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(29,36,48,.08);
  border-radius:22px;
  padding:18px 16px;
  box-shadow:var(--shadow);
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.badge .icon{
  width:38px;height:38px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(31,95,139,.14), rgba(244,162,97,.14));
  display:grid;
  place-items:center;
  font-size:1.15rem;
}
.badge strong{display:block; margin-bottom:4px}
.badge span{font-size:.92rem; color:#5b6570; line-height:1.45}

.section{
  padding:82px 0;
}
.section.tight{padding-top:52px}
.section h2{
  font-size:clamp(1.9rem, 3vw, 3rem);
  margin:0 0 14px;
  letter-spacing:-.03em;
}
.section p.lead{
  max-width:70ch;
  margin:0 0 28px;
  line-height:1.8;
  color:#5b6570;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.section-head .mini{
  color:var(--navy);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.8rem;
}

.category-nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:12px 0 0;
}
.tab{
  padding:11px 15px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 20px rgba(29,36,48,.05);
  font-weight:700;
  font-size:.92rem;
  color:#2f3945;
}
.tab:hover{border-color:rgba(31,95,139,.35); color:var(--navy)}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.feature{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.feature .photo{
  aspect-ratio: 4 / 3;
  overflow:hidden;
}
.feature .photo img{
  width:100%; height:100%; object-fit:cover;
}
.feature .body{
  padding:20px;
}
.feature h3{
  margin:0 0 8px;
  font-size:1.18rem;
}
.feature p{
  margin:0 0 14px;
  color:#5b6570;
  line-height:1.6;
}
.pills{
  display:flex; flex-wrap:wrap; gap:8px;
}
.pill{
  padding:8px 11px;
  border-radius:999px;
  background:rgba(31,95,139,.08);
  color:var(--navy);
  font-size:.86rem;
  font-weight:700;
}
.section-slab{
  background:linear-gradient(180deg, rgba(217,195,165,.14), rgba(255,255,255,0));
}
.divided{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panel .panel-image{
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background:#ddd;
}
.panel .panel-image img{width:100%; height:100%; object-fit:cover}
.panel .panel-body{
  padding:26px;
}
.panel ul{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.panel li{
  padding:10px 0;
  border-top:1px solid var(--line);
  color:#4f5963;
}
.panel li strong{color:#1f2c3a}

.collection-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.collection{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:0;
  min-height:220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.collection .thumb{
  background:#ddd;
}
.collection .thumb img{
  width:100%; height:100%; object-fit:cover;
}
.collection .copy{
  padding:22px;
}
.collection h3{margin:0 0 8px}
.collection p{margin:0; color:#5b6570; line-height:1.6}
.collection .taglist{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:16px
}
.collection .tag{
  padding:7px 10px;
  border-radius:999px;
  background:#f6f1e8;
  color:#514636;
  font-size:.86rem;
  font-weight:700;
}

.newsletter{
  background:linear-gradient(135deg, rgba(31,95,139,.07), rgba(244,162,97,.12));
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:34px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
}
.newsletter form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.newsletter input{
  flex:1 1 260px;
  min-height:48px;
  border-radius:999px;
  border:1px solid var(--line);
  padding:0 16px;
  font-size:1rem;
}

footer{
  padding:28px 0 44px;
  color:#65707a;
}
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:20px;
}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{color:#4a5661; font-weight:700}

.page-hero{
  padding:46px 0 18px;
}
.page-hero .box{
  background:linear-gradient(135deg, rgba(31,95,139,.08), rgba(53,94,59,.08));
  border:1px solid var(--line);
  border-radius:34px;
  padding:36px;
  box-shadow:var(--shadow);
}
.page-hero h1{margin:0 0 10px; font-size:clamp(2.2rem, 4vw, 4rem)}
.page-hero p{margin:0; line-height:1.75; color:#5b6570; max-width:72ch}

.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}
.shop-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.shop-card .photo{aspect-ratio: 4 / 3; overflow:hidden}
.shop-card img{width:100%; height:100%; object-fit:cover}
.shop-card .body{padding:20px}
.shop-card h3{margin:0 0 8px}
.shop-card p{margin:0 0 14px; color:#5b6570; line-height:1.6}
.price-row{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
  color:var(--navy); font-weight:800
}

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:18px;
}
.contact-card, .form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:24px;
}
.form-card form{
  display:grid;
  gap:12px;
}
.form-card input,.form-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
}
.form-card textarea{min-height:170px; resize:vertical}

.small{font-size:.92rem;color:#65707a}
.hr{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

@media (max-width: 1024px){
  .feature-grid,.shop-grid{grid-template-columns:repeat(2,1fr)}
  .collection-grid,.divided,.newsletter,.contact-grid{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .nav-toggle{display:inline-flex}
  nav{
    position:fixed;
    inset:128px 16px auto 16px;
    background:rgba(247,244,238,.98);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    border-radius:24px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  nav.open{display:flex}
  nav a{padding:14px 16px}
  .navbar{gap:12px}
  .hero-content{padding:28px}
  .badge-row{grid-template-columns:1fr 1fr}
  .feature-grid,.shop-grid{grid-template-columns:1fr}
  .hero-card,.hero-content{min-height:640px}
}
@media (max-width: 560px){
  .brand img{height:64px}
  .hero-card,.hero-content{min-height:700px}
  .badge-row{grid-template-columns:1fr}
  .newsletter,.page-hero .box{padding:22px}
  .section{padding:64px 0}
  .collection{grid-template-columns:1fr}
}
