:root{
  --bg:#0e0e11;
  --bg-soft:#17171c;
  --panel:#121217;
  --panel-2:#1b1b22;
  --text:#f4f1eb;
  --muted:#9e988f;
  --line:rgba(255,255,255,0.08);
  --accent:#d1a85b;
  --accent-2:#f3d8a2;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --max:1240px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
  overflow-x:hidden;
}

img{
  display:block;
  width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(14,14,17,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:.3s ease;
}

.site-header.scrolled{
  border-bottom-color:var(--line);
}

.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  font-weight:700;
  letter-spacing:.08em;
}

.brand-line{
  width:36px;
  height:2px;
  background:var(--accent);
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  color:var(--text);
  font-size:28px;
  cursor:pointer;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:14px;
  align-items:center;
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:.2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--accent-2);
  border-color:var(--accent);
}

.hero{
  padding:56px 0 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}

.hero-copy{
  position:relative;
  padding:44px;
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-copy::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:var(--accent);
}

.kicker{
  display:inline-block;
  margin-bottom:18px;
  color:var(--accent-2);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-copy h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem, 5vw, 5.4rem);
  line-height:.95;
  margin-bottom:18px;
}

.hero-copy p{
  max-width:58ch;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:.2s ease;
}

.btn-primary{
  background:var(--accent);
  color:#111;
  border:1px solid var(--accent);
}

.btn-primary:hover{
  filter:brightness(1.05);
  transform:translateY(-2px);
}

.btn-secondary{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}

.btn-secondary:hover{
  border-color:var(--accent);
  color:var(--accent-2);
}

.hero-media{
  min-height:620px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-media img{
  height:100%;
  object-fit:cover;
}

.section{
  padding:84px 0;
}

.section-title{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:end;
  margin-bottom:26px;
}

.section-title h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.2rem, 4vw, 3.8rem);
  line-height:1;
}

.section-title p{
  max-width:52ch;
  color:var(--muted);
}

.layout{
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:30px;
}

.article{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:36px;
}

.article h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  margin:28px 0 12px;
  line-height:1.05;
}

.article p{
  color:#d6d0c7;
  margin-bottom:18px;
}

.sidebar{
  display:grid;
  gap:20px;
}

.side-card{
  background:var(--panel-2);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.side-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:1.8rem;
  margin-bottom:12px;
}

.side-card p,
.side-card li{
  color:var(--muted);
}

.side-card ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.side-card li{
  padding-left:18px;
  position:relative;
}

.side-card li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--accent);
}

.cover{
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.cover img{
  height:430px;
  object-fit:cover;
}

.page-hero{
  padding:46px 0 28px;
}

.page-head{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:38px;
  position:relative;
}

.page-head::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:var(--accent);
}

.page-head h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.8rem, 4vw, 4.8rem);
  line-height:.98;
  margin-bottom:10px;
}

.page-head p{
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
}

.contact-card,
.form-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:32px;
}

.contact-card h2,
.form-card h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2.5rem;
  line-height:1;
  margin-bottom:14px;
}

.contact-card p,
.form-card p{
  color:var(--muted);
  margin-bottom:14px;
}

form{
  display:grid;
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

label{
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.03em;
}

input,
textarea{
  width:100%;
  background:#101015;
  border:1px solid var(--line);
  color:var(--text);
  padding:16px 18px;
  outline:none;
  font:inherit;
}

textarea{
  min-height:180px;
  resize:vertical;
}

input:focus,
textarea:focus{
  border-color:var(--accent);
}

.footer{
  padding:22px 0 44px;
}

.footer-inner{
  border-top:1px solid var(--line);
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:var(--muted);
}

.reveal{
  opacity:1;
  transform:none;
}

.reveal.js-ready{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:980px){
  .hero-grid,
  .layout,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-media{
    min-height:380px;
  }

  .cover img{
    height:280px;
  }
}

@media (max-width:760px){
  .menu-toggle{
    display:block;
  }

  .nav{
    position:relative;
  }

  .nav-links{
    position:absolute;
    top:86px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    background:rgba(14,14,17,.98);
    border-bottom:1px solid var(--line);
  }

  .nav-links.show{
    display:flex;
  }

  .hero-copy,
  .page-head,
  .article,
  .contact-card,
  .form-card{
    padding:28px;
  }
}