/* =========================================================
   PLIXTRA STUDIO — FULL CSS (Recreated + Everything Needed)
   ========================================================= */

/* ---------- 1) Theme Tokens ---------- */
:root{
  --bg:#0b0b0c;
  --bg2:#060607;
  --ink:#f3efe6;
  --muted:#cfc7b8;
  --paper:#efe7da;
  --paper2:#f6f0e6;

  --gold:#b79a5a;
  --gold2:#d2b477;

  --line:rgba(183,154,90,.35);
  --shadow: 0 24px 70px rgba(0,0,0,.55);

  --radius-lg:18px;
  --radius-xl:22px;

  --container:1080px;
}

/* ---------- 2) Modern CSS Reset / Base ---------- */
*,
*::before,
*::after{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  height:100%;
}

html{
  /* prevent weird iOS/Mac text resizing + keep layout stable */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior:smooth;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 700px at 50% 0%, #1a1a1d 0%, var(--bg) 55%, var(--bg2) 100%);
  letter-spacing:.2px;

  /* better Mac rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* avoid horizontal scroll from any accidental overflow */
  overflow-x:hidden;
}

img, svg, video, canvas{
  display:block;
  max-width:100%;
  height:auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

button, input, select, textarea{
  font: inherit;
}

/* ---------- 3) Layout Helpers ---------- */
.container{
  width:min(var(--container), 92vw);
  margin:0 auto;
}

.section{
  padding:64px 0;
  border-bottom:1px solid var(--line);
}

.section-title{
  font-family:"Georgia","Times New Roman",serif;
  font-size:34px;
  margin:0 0 10px;
  letter-spacing:.2px;
}

.section-sub{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 28px;
}

/* ---------- 4) Topbar / Nav ---------- */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10,10,11,.55);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:18px;
}

.brand{
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing:3px;
  font-size:18px;
  color:var(--gold2);
  text-transform:uppercase;
  white-space:nowrap;
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.navlinks a{
  opacity:.9;
  white-space:nowrap;
}
.navlinks a:hover{ opacity:1; }

/* ---------- 5) Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(183,154,90,.55);
  background: linear-gradient(180deg, rgba(183,154,90,.22), rgba(183,154,90,.10));
  color:var(--ink);
  cursor:pointer;
  transition: border-color .2s ease, filter .2s ease, transform .12s ease;
}

.btn:hover{
  border-color:rgba(210,180,119,.9);
  transform: translateY(-1px);
}

.btn:active{ transform: translateY(0); }

.btn-solid{
  background: linear-gradient(180deg, rgba(210,180,119,.95), rgba(183,154,90,.88));
  color:#1a1410;
  border:none;
}

.btn-solid:hover{
  filter:brightness(1.02);
}

/* ---------- 6) Hero ---------- */
.hero{
  position:relative;
  border-bottom:1px solid var(--line);

  /* subtle particles / depth vibe */
  background:
    radial-gradient(600px 260px at 20% 30%, rgba(183,154,90,.08), rgba(0,0,0,0) 60%),
    radial-gradient(700px 300px at 70% 20%, rgba(210,180,119,.08), rgba(0,0,0,0) 60%);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
  padding:48px 0 56px;
}

.kicker{
  color:var(--gold2);
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:12px;
  opacity:.95;
}

.h1{
  font-family:"Georgia","Times New Roman",serif;
  font-weight:600;
  font-size:56px;
  line-height:1.05;
  margin:14px 0 14px;
}

.sub{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:52ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

/* Media card on right */
.hero-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);

  /* IMPORTANT: prevents weird shrinking/overflow on some mac layouts */
  min-width:0;
}

.hero-media img{
  width:100%;
  height:420px;             /* matches screenshot look */
  object-fit:cover;
  filter:saturate(.85) contrast(1.05);
}

/* Bottom fade */
.fade{
  position:absolute;
  inset:auto 0 0 0;
  height:140px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(11,11,12,.9));
}

/* ---------- 7) Cards / Grids ---------- */
.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:var(--radius-lg);
  padding:18px;
}

.card h3{
  margin:6px 0 8px;
  font-size:16px;
  letter-spacing:.4px;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

/* ---------- 8) Light “Paper” Section ---------- */
.paper{
  background: linear-gradient(180deg, var(--paper2), var(--paper));
  color:#1b1712;
}

.paper .section-title{ color:#1b1712; }
.paper .section-sub{ color:#463c32; }

.paper .card{
  background:rgba(255,255,255,.55);
  border-color:rgba(0,0,0,.08);
}

.paper a{ color:#1b1712; }

/* ---------- 9) Packages / Pricing ---------- */
.packages{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.price{
  font-family:"Georgia","Times New Roman",serif;
  font-size:42px;
  margin:8px 0 12px;
  color:#1b1712;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(183,154,90,.12);
  border:1px solid rgba(183,154,90,.35);
  color: var(--gold);
  font-size:12px;
}

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:#3b3127;
  line-height:1.7;
}
.list li{ margin:6px 0; }

/* ---------- 10) Split Section ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:center;
}

.media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
}

.media img{
  width:100%;
  height:360px;
  object-fit:cover;
}

/* ---------- 11) Quote ---------- */
.quote{
  text-align:center;
  padding:56px 0;
  border-top:1px solid var(--line);
}

.quote p{
  font-family:"Georgia","Times New Roman",serif;
  font-size:26px;
  max-width:58ch;
  margin:0 auto 14px;
}

.quote span{ color:var(--muted); }

/* ---------- 12) Footer ---------- */
.footer{
  padding:34px 0;
  color:rgba(243,239,230,.75);
  font-size:13px;
}

.footer .row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.smalllinks{
  display:flex;
  gap:14px;
  opacity:.9;
  flex-wrap:wrap;
}

/* ---------- 13) Forms ---------- */
.form{
  display:grid;
  gap:12px;
}

.label{
  font-size:13px;
  color:#3b3127;
  margin-top:8px;
}

.input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.72);
  color:#1b1712;
  outline:none;
}

.input:focus, textarea:focus, select:focus{
  border-color: rgba(183,154,90,.55);
  box-shadow: 0 0 0 4px rgba(183,154,90,.14);
}

textarea{
  min-height:120px;
  resize:vertical;
}

/* ---------- 14) Responsive ---------- */
@media (max-width: 940px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-media img{ height:320px; }
  .grid3, .packages, .split{ grid-template-columns:1fr; }
  .h1{ font-size:44px; }
  .nav{ padding:14px 0; }
}

@media (max-width: 520px){
  .container{ width:min(var(--container), 92vw); }
  .h1{ font-size:38px; }
  .sub{ font-size:16px; }
  .btn{ width:100%; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
}
