/* =========================================================
   NOTA EVENT CENTAR — shared styles
   Elegant minimalist · WHITE / GREY · champagne gold accent
   ========================================================= */

:root {
  --bg:          #ffffff;
  --bg-soft:     #f4f5f7;
  --bg-card:     #ffffff;
  --line:        rgba(28, 33, 41, 0.14);
  --line-soft:   rgba(28, 33, 41, 0.08);
  --gold:        #b0894c;   /* accent (readable on white) */
  --gold-bright: #c2a05a;
  --gold-deep:   #92702f;
  --cream:       #22272e;   /* PRIMARY TEXT (ink) */
  --ink-soft:    #3a4048;
  --muted:       #6b7178;
  --muted-dim:   #9aa0a8;
  --danger:      #cc4b40;
  --radius:      16px;
  --radius-sm:   10px;
  --maxw:        1120px;
  --shadow:      0 18px 46px -24px rgba(28, 33, 41, 0.28);
  --shadow-sm:   0 10px 26px -18px rgba(28, 33, 41, 0.30);
  --font-serif:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero:   "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* soft warm wash */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(176,137,76,0.05), transparent 60%),
    radial-gradient(90% 60% at 100% 110%, rgba(120,132,148,0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.lead { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-transform: uppercase;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(146,112,47,0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(146,112,47,0.75); }
.btn-ghost {
  background: #fff; color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---------- Logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--gold);
}
.brand-text { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.25rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; color: var(--cream); }
.brand-text small { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-dim); margin-top: 5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 16px 28px 12px; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a { font-size: 13px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; transition: color 0.3s; }
.nav a:hover { color: var(--gold-deep); }

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }

.divider-note { display: flex; align-items: center; gap: 14px; color: var(--gold); opacity: 0.7; margin: 0 auto; width: max-content; }
.divider-note::before, .divider-note::after { content: ""; width: 60px; height: 1px; background: var(--line); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { color: var(--gold); margin-bottom: 20px; }
.card h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; margin-bottom: 10px; color: var(--cream); }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); padding: 60px 0 40px; background: var(--bg-soft); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.site-footer .socials { display: flex; gap: 22px; }
.site-footer a { color: var(--muted); font-size: 14px; transition: color 0.3s; }
.site-footer a:hover { color: var(--gold-deep); }
.copyright { color: var(--muted-dim); font-size: 13px; }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.center { text-align: center; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep);
  background: rgba(176,137,76,0.06);
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  section { padding: 68px 0; }
  .wrap { padding: 0 20px; }
  .site-header .wrap { padding-left: 20px; padding-right: 20px; }
}
