/* Masaar Media — site stylesheet
   Brand: gold on near-black. Cormorant Garamond (display) + Montserrat (UI). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark:  #9A7A30;
  --black:      #080808;
  --panel:      #0E0E0E;
  --line:       rgba(201,168,76,0.18);
  --off-white:  #F0EDE8;
  --muted:      rgba(240,237,232,0.58);
  --muted-dim:  rgba(240,237,232,0.40);
  --maxw:       1120px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--black); padding: .6rem 1rem; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .6rem 1.5rem; padding: .9rem 1.5rem;
  max-width: var(--maxw); margin: 0 auto;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; white-space: nowrap;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand:hover { text-decoration: none; color: var(--gold-light); }
.brand-logo { height: 40px; width: auto; flex-shrink: 0; }
.brand-text { display: block; line-height: 1.05; }
.brand-ar { display: block; font-size: .58rem; letter-spacing: .18em; color: var(--gold-dark); font-weight: 300; }

/* Plain, always-visible navigation. No hamburger, no dropdown:
   every link — including Privacy Policy and Terms of Service —
   is rendered directly on every page at every screen width. */
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: .2rem 1.15rem; }

.site-nav a {
  color: var(--muted);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; padding: .35rem 0; white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); text-decoration: none; }
.site-nav a.legal { color: var(--gold-dark); }
.site-nav a.legal:hover { color: var(--gold-light); }

/* ── Type ───────────────────────────────────────────── */

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.2; }

.hero { padding: 5rem 0 4rem; border-bottom: 1px solid var(--line); }
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); letter-spacing: .02em; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lede { font-size: clamp(.95rem, 1.6vw, 1.12rem); color: var(--muted); max-width: 46rem; }
.eyebrow {
  font-size: .66rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

section.band { padding: 3.6rem 0; border-bottom: 1px solid var(--line); }
section.band > .wrap > h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .5rem; }
section.band > .wrap > p.sub { color: var(--muted); max-width: 46rem; margin-bottom: 2rem; }

.page-wrap { max-width: 52rem; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.page-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: .4rem; }
.page-meta { font-size: .74rem; letter-spacing: .1em; color: var(--muted-dim); text-transform: uppercase; }
.page-wrap h2 { font-size: 1.35rem; color: var(--gold); margin: 2.4rem 0 .8rem; }
.page-wrap p { margin-bottom: 1rem; color: var(--muted); }
.page-wrap ul { margin: 0 0 1.2rem 1.2rem; color: var(--muted); }
.page-wrap li { margin-bottom: .5rem; }
.page-wrap strong { color: var(--off-white); font-weight: 500; }

.divider { width: 64px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.6rem 0 2rem; }

/* ── Cards / grids ──────────────────────────────────── */

.grid { display: grid; gap: 1.25rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
}
.card h3 { font-size: 1.22rem; color: var(--gold); margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .92rem; }
.card ul { margin: .7rem 0 0 1.1rem; color: var(--muted); font-size: .88rem; }
.card li { margin-bottom: .35rem; }

.step-num {
  display: inline-block; font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; color: var(--gold-dark); margin-bottom: .3rem;
}

.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.tag {
  border: 1px solid var(--line); color: var(--muted);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem .9rem;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-weight: 500;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .95rem 1.8rem; text-decoration: none; margin-top: 1.5rem;
}
.btn:hover { opacity: .88; color: var(--black); text-decoration: none; }
.btn.ghost { background: none; border: 1px solid var(--gold); color: var(--gold); }
.btn.ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

dl.spec { margin-top: 1.2rem; }
dl.spec dt { color: var(--gold); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 1.1rem; }
dl.spec dd { color: var(--muted); margin: .3rem 0 0; }

table.simple { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .9rem; }
table.simple th, table.simple td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.simple th { color: var(--gold); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
table.simple td { color: var(--muted); }

/* ── Contact form ───────────────────────────────────── */

.form-row { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 30rem; margin-top: 1.4rem; }
.form-row input[type="email"] {
  flex: 1 1 16rem; min-width: 0; height: 48px; padding: 0 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  color: var(--off-white); font-family: inherit; font-size: .88rem;
}
.form-row input[type="email"]:focus { outline: none; border-color: var(--gold); }
.form-row button {
  height: 48px; padding: 0 1.5rem; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black);
  font-family: inherit; font-weight: 500; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.form-note { font-size: .78rem; color: var(--muted-dim); margin-top: .7rem; }
.form-status { font-size: .85rem; color: var(--gold); margin-top: .8rem; min-height: 1.2rem; }

/* ── Footer ─────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--line); padding: 2.8rem 0 3rem; background: var(--panel); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-grid h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.footer-grid a, .footer-grid p { display: block; color: var(--muted); font-size: .86rem; margin-bottom: .5rem; text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }

/* Legal links repeated as a dedicated, always-visible strip. */
.footer-legal {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.6rem;
}
.footer-legal a { color: var(--off-white); font-size: .78rem; letter-spacing: .1em; text-decoration: underline; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal .copy { color: var(--muted-dim); font-size: .76rem; margin-left: auto; }

@media (max-width: 720px) {
  .header-inner { padding: .8rem 1.2rem; }
  .site-nav { gap: .1rem .85rem; }
  .site-nav a { font-size: .66rem; letter-spacing: .1em; }
  .hero { padding: 3.2rem 0 2.6rem; }
  .footer-legal .copy { margin-left: 0; width: 100%; }
}
