:root{
  --bg: #fbf7f1;
  --paper: #fffaf3;
  --ink: #1c1a17;
  --muted: rgba(28,26,23,.72);
  --line: rgba(28,26,23,.12);

  --sand: #e9dccb;
  --sage: #9fb3a1;
  --sky:  #a7c1d3;
  --clay: #c07a5b;
  --rose: #d6a0a6;

  --shadow: 0 14px 40px rgba(20,18,16,.12);
  --radius: 22px;
  --radius2: 30px;

  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(214,160,166,.20), transparent 60%),
              radial-gradient(1000px 600px at 80% 0%, rgba(159,179,161,.22), transparent 60%),
              radial-gradient(900px 650px at 70% 100%, rgba(167,193,211,.18), transparent 55%),
              var(--bg);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

.topbar{
  position:fixed; inset:0 0 auto 0;
  z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(251,247,241,.72);
  border-bottom:1px solid var(--line);
  top: env(safe-area-inset-top, 0px);
}

.hero{
  min-height: 96vh;
  padding-top:calc(78px + env(safe-area-inset-top, 0px));
  position:relative;
  display:grid;
  align-items:end;
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:baseline; gap:12px; text-decoration:none;
}
.brand .name{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size:20px; letter-spacing:.04em;
}
.brand .tag{
  font-size:12px; color:var(--muted); letter-spacing:.18em; text-transform:uppercase;
}
.menu{display:flex; gap:16px; align-items:center}
.menu a{
  text-decoration:none;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(28,26,23,.85);
  padding:10px 10px;
  border-radius:999px;
}
.menu a:hover{background:rgba(28,26,23,.06)}
.menu .cta{
  border:1px solid rgba(192,122,91,.35);
  background: rgba(192,122,91,.10);
}
.burger{display:none; border:1px solid var(--line); background:rgba(255,255,255,.35); border-radius:999px; padding:10px 12px; cursor:pointer}
.burger span{display:block; width:18px; height:2px; background:rgba(28,26,23,.70); margin:4px 0}

@media (max-width: 900px) {
  .menu { display: none; }
  .burger { display: block; }
  .nav { padding-right: 10px; }
}

.mobile{
  display:none;
  padding:10px 0 18px 0;
}
.mobile a{
  display:block;
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.mobile a:hover{background:rgba(28,26,23,.06)}

.mobile[data-open="1"] {
  display: block;
}

.hero .bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(251,247,241,.00) 0%, rgba(251,247,241,.22) 40%, rgba(251,247,241,.82) 86%, var(--bg) 100%),
    url("../img/hero-lake.jpg") center/cover no-repeat;
  filter: saturate(1.04) contrast(1.02);
}
.hero .grain{
  position:absolute; inset:0;
  pointer-events:none;
  mix-blend-mode:multiply;
  opacity:.08;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero .content{
  position:relative;
  padding: 0 0 64px 0;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(28,26,23,.16);
  background:rgba(255,250,243,.55);
  box-shadow: 0 8px 22px rgba(20,18,16,.08);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.kicker .dot{width:8px; height:8px; border-radius:99px; background:var(--clay)}
.h1{
  margin:16px 0 10px 0;
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(40px, 7vw, 74px);
  letter-spacing: .02em;
}
.sub{
  color:var(--muted);
  max-width: 62ch;
  font-size:16px;
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(28,26,23,.16);
  background: rgba(255,250,243,.65);
  box-shadow: 0 10px 26px rgba(20,18,16,.10);
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: rgba(192,122,91,.45);
  background: rgba(192,122,91,.14);
}
.section{
  padding: 70px 0;
}
.section .head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:22px;
}
.section h2{
  margin:0;
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size: 28px;
  letter-spacing:.02em;
}
.section p.lead{
  margin:0;
  color:var(--muted);
  max-width: 70ch;
}
.grid{
  display:grid; gap:18px;
}
.cards{grid-template-columns: repeat(12, 1fr)}
.card{
  background: rgba(255,250,243,.62);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card .pad{padding:18px}
.card .label{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(28,26,23,.68);
}
.card h3{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  margin:8px 0 8px;
  font-size:22px;
}
.card p{margin:0; color:var(--muted)}
.card .links{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.listen{grid-column: span 7}
.feature{grid-column: span 5}
.cards > .feature:only-of-type{max-width: 320px; margin: 0 auto}
@media (max-width: 900px){
  .listen,.feature{grid-column: span 12}
  .cards > .feature:only-of-type{grid-column: span 12}
}

.photo-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.photo{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20,18,16,.12);
  background: rgba(255,250,243,.45);
}
.photo.big{grid-column: span 7}
.photo.small{grid-column: span 5}
.photo.tall{grid-row: span 2}
.photo img{width:100%; height:100%; object-fit:cover}
@media (max-width: 900px){
  .photo.big,.photo.small{grid-column: span 12}
}

.table{
  width:100%;
  border-collapse: collapse;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,250,243,.62);
  box-shadow: var(--shadow);
}
.table th,.table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.table th{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(28,26,23,.68);
  background: rgba(233,220,203,.35);
}
.table tr:last-child td{border-bottom:none}

.footer{
  padding: 42px 0 52px;
  border-top:1px solid var(--line);
  background: rgba(255,250,243,.35);
}
.footer .cols{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:22px;
}
.footer .logo{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size:22px; letter-spacing:.02em;
  margin-bottom:8px;
}
.footer .small{color:var(--muted); max-width:65ch}
.footer .social{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.footer .social a{display:flex; align-items:center; justify-content:center; width:36px; height:36px; text-decoration:none; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,.35)}
.footer .social a:hover{background:rgba(28,26,23,.06)}
.footer .social svg{width:18px; height:18px; fill:#1c1a17}
@media (max-width: 800px){
  .footer .cols{grid-template-columns: 1fr}
  .footer .social{justify-content:flex-start}
}

.page-hero{
  padding-top: 96px;
  padding-bottom: 26px;
}
.page-hero h1{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  margin:0 0 10px 0;
  font-size: 44px;
}
.page-hero p{margin:0; color:var(--muted); max-width:72ch}

.video-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.vcard{grid-column: span 4}
.video-wrapper{
  position:relative;
  width:100%;
}
.video-wrapper img{
  width:100%;
  height:auto;
  display:block;
}
.play-btn-link{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:60px;
  height:60px;
  background:rgba(255,255,255,.85);
  border-radius:999px;
  cursor:pointer;
  z-index:2;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.play-btn-link:hover{
  background:rgba(255,255,255,.95);
  transform:translate(-50%, -50%) scale(1.1);
}
.play-btn-link::before{
  content:'';
  width:0;
  height:0;
  border-left:22px solid rgba(28,26,23,.85);
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  margin-left:4px;
  transition:all .3s ease;
}
.play-btn-link:hover::before{
  border-left-color:rgba(192,122,91,.95);
}
.vcard video{
  width:100%;
  height:100%;
  display:block;
  background:#000;
  object-fit: cover;
}
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:60px;
  height:60px;
  background:rgba(255,255,255,.85);
  border:none;
  border-radius:999px;
  cursor:pointer;
  z-index:2;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}
.play-btn:hover{
  background:rgba(255,255,255,.95);
  transform:translate(-50%, -50%) scale(1.1);
}
.play-btn::before{
  content:'';
  width:0;
  height:0;
  border-left:22px solid rgba(28,26,23,.85);
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  margin-left:4px;
  transition:all .3s ease;
}
.play-btn:hover::before{
  border-left-color:rgba(192,122,91,.95);
}
@media (max-width: 900px){
  .vcard{grid-column: span 12}
}
.hint{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.social-icons{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}
.social-icons a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(28,26,23,.16);
  background:rgba(255,250,243,.65);
  box-shadow: 0 6px 18px rgba(20,18,16,.10);
  transition:.2s ease;
}
.social-icons a:hover{
  transform:translateY(-2px);
  background:rgba(192,122,91,.14);
}
.social-icons svg{
  width:16px;
  height:16px;
  fill:#1c1a17;
}
