/* Nyman Ventures — static site styles */
:root {
  --purple: #5c375c;
  --purple-dark: #3f253f;
  --purple-tint: #f5f0f5;
  --gold: #c6ac43;
  --gold-dark: #a68d2e;
  --ink: #2a1f2a;
  --muted: #6a5d6a;
  --line: #e6dde6;
  --bg: #ffffff;
  --max: 1160px;
  --prose: 740px;
  --radius: 4px;
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
a { color: var(--purple); text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--purple);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1.2em; }

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

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

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px;
}
.brand img { width: 190px; height: auto; }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  color: var(--purple); padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--purple); }
.site-nav .nav-phone {
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  border-radius: var(--radius); border: 0; letter-spacing: .06em;
}
.site-nav .nav-phone:hover { background: var(--purple); color: #fff; }

/* Buttons */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; padding: 16px 28px; border-radius: var(--radius);
  background: var(--gold); color: var(--ink); transition: background .15s, color .15s;
}
.btn:hover { background: var(--purple); color: #fff; }
.btn--light:hover { background: #fff; color: var(--purple); }

/* Hero */
.hero { background: var(--purple); color: #fff; padding: 72px 0 0; text-align: center; }
.hero h1 { color: #fff; max-width: 820px; margin: 0 auto 48px; }
.hero-media { max-width: 980px; margin: 0 auto; position: relative; top: 0; }
.hero-media img { width: 100%; border-radius: var(--radius) var(--radius) 0 0; }

/* Sections */
.section { padding: 88px 0; }
.section--tint { background: var(--purple-tint); }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .8em;
}

/* Quote */
.quote { text-align: center; }
.quote blockquote { margin: 0 auto; max-width: 820px; }
.quote blockquote p {
  font-family: var(--font-head); font-weight: 700; color: var(--purple);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.35; margin-bottom: .7em;
}
.quote blockquote p::before {
  content: "\201C"; display: block; color: var(--gold);
  font-size: 4rem; line-height: .8; margin-bottom: .1em;
}
.quote cite {
  font-style: normal; font-size: .85rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}

/* CTA band */
.cta { background: var(--purple-dark); color: #fff; text-align: center; padding: 72px 0; }
.cta h2, .cta h3 { color: #fff; }
.cta p { color: #e9dfe9; }
.cta p a { color: #fff; font-weight: 500; }
.cta p a:hover { color: var(--gold); }

/* Page header */
.page-head { background: var(--purple); color: #fff; padding: 64px 0 56px; }
.page-head h1 { color: #fff; margin: 0; }
.page-head p { color: #e9dfe9; margin: .8em 0 0; max-width: 720px; }
.page-head a { color: #fff; }
.page-head a:hover { color: var(--gold); }

/* Commercial property */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 0 0 40px; }
.fact { border: 1px solid var(--line); border-top: 4px solid var(--gold); padding: 20px 22px; border-radius: var(--radius); }
.fact h2 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5em; }
.fact p { margin: 0; }
.map { border: 0; width: 100%; height: 380px; border-radius: var(--radius); display: block; }
.gallery { columns: 3 280px; column-gap: 16px; margin-top: 48px; }
.gallery a { display: block; margin: 0 0 16px; break-inside: avoid; }
.gallery img { width: 100%; border-radius: var(--radius); transition: opacity .15s; }
.gallery a:hover img { opacity: .88; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.contact-card h2 { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .6em; }
.contact-card p { margin: 0; }
.contact-card a { font-weight: 500; }
.contact-grid img { border-radius: var(--radius); width: 100%; }

/* 404 */
.notfound { text-align: center; padding: 120px 0; }
.notfound .code { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 5rem; line-height: 1; margin-bottom: .2em; }
.notfound ul { list-style: none; padding: 0; margin: 32px 0 0; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--purple-dark); color: #e9dfe9; padding: 64px 0 28px; font-size: .9rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin: 0 0 .5em; }
.footer-title { font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 1em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5em; }
.site-footer address { font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 48px; padding-top: 24px; font-size: .8rem; color: #bfb0bf; }

/* Responsive */
@media (max-width: 860px) {
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: -1; }
  .section { padding: 64px 0; }
  .hero { padding-top: 56px; }
}
@media (max-width: 560px) {
  body { font-size: .95rem; }
  .site-header .container { justify-content: center; }
  .brand img { width: 170px; }
  .site-nav ul { gap: 18px; justify-content: center; }
  .map { height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
