:root{
  --bg:#0b0b0b;
  --panel:#101010;
  --panel-2:#0f0f0f;
  --text:#f4f4f4;
  --muted:rgba(244,244,244,.78);
  --stroke:rgba(255,255,255,.12);
  --gold:#caa24a;

  --container:1120px;
  --radius:18px;
  --header-h:120px;
  --strip-h:60px;
  --footer-h:88px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* Header */
.site-header{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:112px;
  width:auto;
}

.nav{
  display:flex;
  gap:63px;
  font-weight:600;
  letter-spacing:.2px;
}

.nav a{ opacity:.92; }
.nav a:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:6px;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  margin:0;
  background:transparent;
  border:0;
  border-radius:10px;
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.nav-toggle{
  gap:0;
}
.nav-toggle:focus-visible{
  outline:2px solid rgba(202,162,74,.55);
  outline-offset:2px;
}
.nav-toggle__bar{
  display:block;
  width:26px;
  height:2px;
  background:rgba(244,244,244,.92);
  border-radius:999px;
  margin:0;
}
.nav-toggle__bar + .nav-toggle__bar{
  margin-top:6px;
}

.mobile-nav{
  position:absolute;
  top:calc(var(--header-h));
  left:0;
  right:0;
  background:rgba(11,11,11,.92);
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
  padding:14px 24px 18px;
  display:grid;
  gap:10px;
  z-index:50;
}
.mobile-nav[hidden]{
  display:none;
}
.mobile-nav a{
  padding:14px 12px;
  border-radius:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.mobile-nav a:hover{
  background:rgba(255,255,255,.06);
}

/* Pattern strip */
.pattern-strip{
  height:var(--strip-h);
  width:100%;
  background-image:url("./assets/pattern.svg");
  background-repeat:repeat-x;
  background-position:left center;
  background-size:auto var(--strip-h);
}

/* Page layout */
.page{
  min-height:calc(100vh - var(--header-h) - var(--strip-h) - var(--footer-h));
  display:flex;
  align-items:stretch;
}

.coming-soon{
  min-height:calc(100vh - var(--header-h) - var(--strip-h) - var(--footer-h));
  display:flex;
}

.coming-soon-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:clamp(40px, 8vh, 96px);
  padding-bottom:clamp(40px, 8vh, 96px);
}

.coming-soon-inner > div{
  max-width:720px;
}

.contact-page{
  min-height:calc(100vh - var(--header-h) - var(--strip-h) - var(--footer-h));
  display:flex;
}

.contact-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:clamp(40px, 8vh, 96px);
  padding-bottom:clamp(40px, 8vh, 96px);
}

.contact-card{
  width:100%;
  max-width:760px;
}

.contact-title{
  margin:0 0 18px;
  font-size:clamp(38px, 6vw, 56px);
  line-height:1.05;
  letter-spacing:-1px;
}

.contact-copy{
  margin:0 0 30px;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
  max-width:56ch;
}

.contact-form{
  display:grid;
  gap:18px;
}

.contact-form .btn{
  margin-top:18px;
}

.form-field{
  display:grid;
  gap:8px;
}

.form-field label{
  font-size:15px;
  font-weight:600;
}

.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid var(--stroke);
  background:var(--panel-2);
  color:var(--text);
  border-radius:10px;
  padding:14px 16px;
  font:inherit;
}

.form-field textarea{
  resize:vertical;
  min-height:140px;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:2px solid rgba(202,162,74,.45);
  outline-offset:1px;
}

.form-feedback,
.form-error-copy{
  margin:0;
  font-size:15px;
  line-height:1.45;
}

.form-error-copy{
  color:var(--muted);
}

.is-hidden{
  display:none;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  width:100%;
}

.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:48px;
  align-items:start;
}

/* Left panel */
.panel-left{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:64px 56px 72px 48px;
  background:none;
}

/* Right panel */
.panel-right{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
  padding:0;
  overflow:hidden;
}

.page-about .panel-right{
  align-items:flex-start;
  padding-top:40px; /* controls vertical placement */
}

/* Hero image — equal padding top/bottom via parent's padding */
.hero-media{
  width:100%;
  max-width:480px;
  height:auto;
  object-fit:contain;
}

/* Typography */
.h1{
  font-size:72px;
  line-height:1.0;
  letter-spacing:-1.5px;
  margin:0 0 32px;
  font-weight:800;
}

.h2{
  font-size:27px;
  line-height:1.05;
  letter-spacing:-.9px;
  margin:0 0 18px;
  font-weight:800;
}

.lede{
  font-size:22px;
  line-height:1.55;
  color:var(--muted);
  margin:0 0 40px;
  max-width:38ch;
}

.body{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  margin:0 0 18px;
  max-width:58ch;
}

.panel-left .body:nth-of-type(2){
  font-size:27px;
  line-height:1.05;
  font-weight:800;
  color:var(--text);
}

/* Button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:20px 0;
  border-radius:10px;
  font-weight:700;
  font-size:18px;
  background:var(--gold);
  color:#121212;
  border:0;
  cursor:pointer;
  width:320px;
  max-width:100%;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  letter-spacing:.1px;
}
.btn:hover{ filter:brightness(1.06) }
.btn:active{ transform:translateY(1px) }

.page-about .panel-left .btn{
  margin-top:32px;
}

/* About portrait */
.portrait{
  width:min(540px,100%);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(0,0,0,.45);
}

.about-portrait{
  width:100%;
  max-width:520px;
  border-radius:16px;
  display:block;
}

.about-portrait-wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  padding-top:1.125rem;
}

.about-portrait-mobile{
  display:none;
  margin:28px 0 18px;
}

@media (min-width:1200px){
  .about-portrait{
    max-width:580px;
  }
}

/* Footer */
.site-footer{
  height:var(--footer-h);
  display:flex;
  align-items:center;
  border-top:1px solid rgba(255,255,255,0.08);
  background:#0b0b0b;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:14px;
  opacity:.85;
  width:100%;
}

.footer-right a{
  text-decoration:none;
  color:#caa24c;
}

.footer-right a:hover{ opacity:1; }

.nav-link--shop{
  color:var(--accent);
  font-weight:600;
}

.page-gracias .page{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:calc(100vh - var(--header-h) - var(--strip-h) - var(--footer-h));
}

.page-gracias .container{
  text-align:center;
}

.page-gracias .btn{
  margin-top:3rem;
  margin-left:auto;
  margin-right:auto;
}

/* Mobile */
@media (max-width:900px){
  .site-header{
    height:78px;
    position:relative;
  }
  .brand img{
    height:56px;
  }
  .nav{
    display:none;
  }
  .nav-toggle{
    display:inline-flex;
  }
  .mobile-nav{
    top:78px;
  }
  .split{
    display:grid;
    grid-template-columns:1fr;
  }
  body:not(.page-about) .split .panel-right{
    order:-1;
  }
  body:not(.page-about) .split .panel-left{
    order:0;
  }
  body:not(.page-about) .split .panel-right{
    padding:32px 28px 0;
  }
  body:not(.page-about) .split .panel-left{
    padding:32px 28px 40px;
  }
  .about-grid{
    grid-template-columns:1fr;
  }
  .page-about .panel-left{
    padding:34px 28px;
  }
  .page-about .panel-right{ padding-bottom:12px; }
  .panel-left{ padding:40px 28px; }
  .panel-right{ min-height:360px; padding:20px 28px; }
  .about-portrait-wrapper{
    justify-content:center;
    margin-top:12px;
  }
  .h1{ font-size:44px; }
  .h2{ font-size:28.5px; }
  .panel-left .body:nth-of-type(2){ font-size:28.5px; }
  .lede{ font-size:20px; }
  .btn{ width:100%; }
  .coming-soon-inner{
    align-items:flex-start;
    padding-top:40px;
    padding-bottom:56px;
  }
  .contact-inner{
    align-items:flex-start;
    padding-top:40px;
    padding-bottom:56px;
  }
}

@media (min-width:901px){
  .page-about .panel-right{ display:flex; }
}
