:root{
  --bg: #fbf6e4;          /* icon cream */
  --surface: #ffffff;
  --surface2: #fffdf6;
  --text: #1c2a2a;
  --muted: #556565;
  --line: rgba(28,42,42,.12);

  --brand: #29562b;       /* app green */
  --brand-2: #236968;     /* icon teal */
  --gold: #986f39;        /* icon gold */
  --danger: #e53d39;      /* FAB red (optional accents) */

  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(35,105,104,.18), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(152,111,57,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 60%);
  line-height:1.55;
}

a{ color:inherit; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute; left:-9999px; top:10px;
  background: var(--surface);
  color: var(--text);
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.skip-link:focus{ left:12px; z-index:999; }

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(251,246,228,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
  text-decoration:none;
}
.brand__logo{
  width:40px; height:40px;
  border-radius:12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
  border:1px solid rgba(28,42,42,.10);
  background: #fff;
}
.brand__name{
  font-weight:900;
  letter-spacing: -.2px;
  color: var(--brand);
  margin:0;
  line-height:1.1;
}
.brand__tag{
  margin:2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.nav{ display:flex; align-items:center; gap:8px; }
.nav__link{
  padding:10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration:none;
  color: var(--muted);
  font-weight: 700;
}
.nav__link[aria-current="page"]{
  color: var(--brand);
  border-color: rgba(41,86,43,.18);
  background: rgba(41,86,43,.06);
}
.nav__link:hover{
  text-decoration:none;
  background: rgba(35,105,104,.06);
  border-color: rgba(35,105,104,.18);
  color: var(--brand-2);
}

.hero{
  padding: 44px 0 24px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:center;
}

.hero h1{
  margin:0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.7px;
  line-height: 1.05;
}
.lead{
  margin:0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 14px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(28,42,42,.10);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
}

.cta{
  margin-top: 16px;
  display:flex; gap:10px; flex-wrap:wrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(28,42,42,.12);
  background: rgba(255,255,255,.70);
  color: var(--text);
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, rgba(41,86,43,.95), rgba(35,105,104,.88));
  color: #fff;
  border-color: rgba(41,86,43,.20);
}
.btn--secondary{
  background: rgba(35,105,104,.10);
  border-color: rgba(35,105,104,.22);
  color: var(--brand-2);
}

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(28,42,42,.10);
  color: var(--muted);
}

.phoneframe{
  border-radius: 26px;
  border: 1px solid rgba(28,42,42,.12);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.phoneframe__top{
  height: 16px;
  background: rgba(28,42,42,.06);
}
.phoneframe__img{
  display:block;
  width:100%;
  height: 520px;
  object-fit: cover;
}

.section{ padding: 30px 0; }
.section__head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 14px; flex-wrap:wrap;
  margin-bottom: 14px;
}
.section__head h2{ margin:0; font-size: 24px; }
.section__head p{ margin:0; color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(28,42,42,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin:0; color: var(--muted); }

.feature{
  display:flex; gap:12px; align-items:flex-start;
}
.icon{
  width:40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(41,86,43,.10);
  border: 1px solid rgba(41,86,43,.20);
  flex: 0 0 auto;
}
.icon svg{ width:22px; height:22px; fill: var(--brand); }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(28,42,42,.10);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  cursor: zoom-in;
}
.shot img{
  display:block;
  width:100%;
  height: 380px;
  object-fit: cover;
}

.kicker{
  display:inline-block;
  font-weight: 900;
  color: var(--brand-2);
  border-left: 4px solid rgba(152,111,57,.55);
  padding-left: 10px;
}

.prose{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(28,42,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.prose h1{ margin-top:0; }
.prose h2{ margin-top: 18px; font-size: 18px; }
.prose p, .prose li{ color: var(--muted); }
.prose a{ color: var(--brand-2); }

.footer{
  margin-top: 18px;
  border-top: 1px solid rgba(28,42,42,.10);
  background: rgba(251,246,228,.65);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
  padding: 16px 0;
  color: var(--muted);
}
.footer__links{ display:flex; gap:12px; }
.footer__links a{ text-decoration:none; color: var(--muted); font-weight: 800; }
.footer__links a:hover{ text-decoration: underline; }

dialog{
  border: none;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 40px 120px rgba(0,0,0,.40);
  width: min(980px, calc(100% - 22px));
}
dialog::backdrop{
  background: rgba(0,0,0,.55);
}
.modal{
  display:grid;
  grid-template-columns: 1fr;
  background: #0b0f12;
}
.modal__bar{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 12px;
  color: #fff;
}
.modal__bar strong{ font-size: 14px; opacity:.9; }
.modal__close{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}
.modal__img{
  width:100%;
  height: min(80vh, 820px);
  object-fit: contain;
  background: #0b0f12;
}

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .phoneframe__img{ height: 520px; }
  .grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height: 520px; }
}

@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 26px)); }
  .nav__link{ padding: 9px 10px; }
  .phoneframe__img{ height: 500px; }
}
