:root{
  --ink:#1C1A18;
  --muted: rgba(28,26,24,0.72);
  --paper:#FFFDF9;
  --cream:#FFF6E8;

  --honey:#F4B63B;
  --gold:#D88A1E;
  --coral:#FF5C7A;
  --sunset:#FF8C4B;
  --ocean:#2B7CFF;
  --teal:#24C6C9;
  --sage:#37B38B;

  --line: rgba(28,26,24,0.12);
  --shadow: 0 14px 40px rgba(20,16,12,0.12);
  --radius: 24px;
  --radius-sm: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 700px at 20% -10%, rgba(244,182,59,0.22), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(43,124,255,0.14), transparent 55%),
    radial-gradient(700px 500px at 70% 110%, rgba(255,92,122,0.12), transparent 55%),
    var(--cream);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; height:auto; display:block}

.container{max-width:1120px; margin:0 auto; padding:0 18px}

.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(255,246,232,0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  padding:14px 0 10px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.brand img{height:70px; width:auto}
.nav{
  display:flex; gap:12px; align-items:center; justify-content:center; flex-wrap:wrap;
}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.2px;
}
.nav a.active, .nav a:hover{
  color:var(--ink);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(28,26,24,0.10);
}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(28,26,24,0.14);
  background: rgba(255,255,255,0.75);
  font-weight:900;
  color:var(--ink);
  box-shadow: 0 10px 22px rgba(20,16,12,0.08);
}
.button.primary{
  border:0;
  background: linear-gradient(135deg, var(--honey), var(--sunset));
}
.button.ocean{
  border:0;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color:#051018;
}
.button.coral{
  border:0;
  background: linear-gradient(135deg, var(--coral), var(--sunset));
}
.button:focus{outline: 3px solid rgba(43,124,255,0.35); outline-offset:3px}

.hero{padding:26px 0 10px}
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--paper);
  border: 1px solid rgba(28,26,24,0.10);
  box-shadow: var(--shadow);
  position:relative;
}
.hero-media{
  min-height: 560px;
  background-size: cover;
  background-position: center;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.00) 26%, rgba(0,0,0,0.38) 58%, rgba(0,0,0,0.55) 100%);
}
.hero-content{
  position:absolute; left:0; right:0; bottom:0;
  padding: 26px 22px 22px;
  color: #fff;
}
.h-eyebrow{
  font-size:12px;
  letter-spacing:.30em;
  text-transform:uppercase;
  opacity:.92;
}
h1,h2,h3{
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  line-height:1.05;
  margin:10px 0 0;
}
h1{font-size:56px}
h2{font-size:40px}
h3{font-size:26px}
.lede{
  margin:10px 0 0;
  font-size:18px;
  opacity:.94;
  max-width: 62ch;
}
.hero-actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

.section{padding:42px 0}
.card{
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(28,26,24,0.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(20,16,12,0.08);
}
.padded{padding:22px}
.kicker{color:rgba(28,26,24,0.70); font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:12px}
hr.sep{border:0; border-top:1px solid var(--line); margin:18px 0}

.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}

.band{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(28,26,24,0.10);
  box-shadow: var(--shadow);
}
.band .inner{padding:26px 22px}
.band.gold{background: linear-gradient(135deg, rgba(244,182,59,0.92), rgba(255,140,75,0.78));}
.band.coral{background: linear-gradient(135deg, rgba(255,92,122,0.92), rgba(255,140,75,0.76));}
.band.ocean{background: linear-gradient(135deg, rgba(43,124,255,0.90), rgba(36,198,201,0.70));}
.band h2, .band p{color:#101010}
.band .lede{opacity:1}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(28,26,24,0.10);
  color: rgba(28,26,24,0.92);
  font-weight:900;
  font-size:13px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gallery img{
  width:100%;
  height: 260px;
  object-fit:cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(28,26,24,0.08);
  box-shadow: 0 10px 18px rgba(20,16,12,0.06);
}
.g-4{grid-column: span 4}
.g-6{grid-column: span 6}
.g-8{grid-column: span 8}
.g-12{grid-column: span 12}

.blend-grid{display:grid; grid-template-columns: repeat(12,1fr); gap:14px}
.blend{
  grid-column: span 6;
  padding:18px;
  border-radius: var(--radius);
  border: 1px solid rgba(28,26,24,0.10);
  background: rgba(255,255,255,0.82);
  position:relative; overflow:hidden;
}
.blend::before{
  content:"";
  position:absolute; inset:-60px;
  opacity:.70;
  background: radial-gradient(460px 280px at 20% 10%, var(--tint, rgba(244,182,59,0.26)), transparent 60%),
              radial-gradient(460px 280px at 90% 40%, rgba(255,255,255,0.35), transparent 65%);
}
.blend > *{position:relative; z-index:2}
.meta{color:rgba(28,26,24,0.70); font-weight:900; margin-top:6px}
.small{font-size:14px; color: rgba(28,26,24,0.78)}

.footer{
  padding:34px 0;
  border-top: 1px solid var(--line);
  color: rgba(28,26,24,0.74);
}
.footer-grid{
  display:grid; grid-template-columns: repeat(12, 1fr); gap:16px;
}
.footer .col{grid-column: span 4}
.footer a{color: rgba(28,26,24,0.86); font-weight:900}
.note{
  padding:14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(36,198,201,0.10);
  border:1px solid rgba(36,198,201,0.18);
  color: rgba(28,26,24,0.86);
}

@media (max-width: 900px){
  h1{font-size:44px}
  .hero-media{min-height: 540px}
  .col-6,.col-4,.col-8{grid-column: span 12}
  .blend{grid-column: span 12}
  .footer .col{grid-column: span 12}
  .gallery img{height:220px}
  .brand img{height:62px}
}