:root{
  --bg: #fbf6e4;             /* warm cream */
  --surface: #ffffff;
  --surface2: #fff9ed;
  --text: #1f2424;
  --muted: #5b6464;
  --line: rgba(31,36,36,.12);

  --brand: #b0122a;          /* envelope red */
  --brand2: #f2b705;         /* sparkle gold */
  --accent: #6b3a12;         /* warm brown for headings */
  --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(176,18,42,.16), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(242,183,5,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 62%);
  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,.78);
  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;
  text-decoration:none;
  min-width: 220px;
}
.brand__logo{
  width:40px; height:40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(31,36,36,.10);
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}
.brand__name{
  margin:0;
  font-weight: 900;
  letter-spacing: -.2px;
  color: var(--brand);
  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: 800;
}
.nav__link[aria-current="page"]{
  color: var(--brand);
  border-color: rgba(176,18,42,.18);
  background: rgba(176,18,42,.06);
}
.nav__link:hover{
  text-decoration:none;
  background: rgba(242,183,5,.10);
  border-color: rgba(242,183,5,.25);
  color: #7a5100;
}

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

.kicker{
  display:inline-block;
  font-weight: 900;
  color: #7a5100;
  border-left: 4px solid rgba(242,183,5,.65);
  padding-left: 10px;
}

.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.7px;
  line-height: 1.05;
  color: var(--accent);
}
.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(31,36,36,.10);
  background: rgba(255,255,255,.60);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  font-weight: 800;
  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(31,36,36,.12);
  background: rgba(255,255,255,.75);
  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(176,18,42,.98), rgba(176,18,42,.72));
  color: #fff;
  border-color: rgba(176,18,42,.25);
}
.btn--secondary{
  background: rgba(242,183,5,.14);
  border-color: rgba(242,183,5,.30);
  color: #7a5100;
}

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

.phoneframe{
  border-radius: 26px;
  border: 1px solid rgba(31,36,36,.12);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.phoneframe__top{
  height: 16px;
  background: rgba(31,36,36,.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; color: var(--accent); }
.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,.80);
  border: 1px solid rgba(31,36,36,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.card h3{ margin: 0 0 8px; color: var(--accent); }
.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(176,18,42,.08);
  border: 1px solid rgba(176,18,42,.18);
  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(31,36,36,.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;
}

.prose{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(31,36,36,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.prose h1{ margin-top:0; color: var(--accent); }
.prose h2{ margin-top: 18px; font-size: 18px; color: var(--accent); }
.prose p, .prose li{ color: var(--muted); }
.prose a{ color: #7a5100; }

.footer{
  margin-top: 18px;
  border-top: 1px solid rgba(31,36,36,.10);
  background: rgba(251,246,228,.68);
}
.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: 900; }
.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; }
  .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; }
}
