:root {
  --black: #121016;
  --violet-deep: #2b1a45;
  --violet-deep-2: #3a2359;
  --violet: #7c3fd6;
  --violet-light: #b48bec;
  --mist: #f3f0f8;
  --paper: #fdfcff;
  --line: #e1dbec;
  --text: #18141f;
  --text-muted: #57506a;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; text-wrap: balance; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 0.5rem;
}
.eyebrow-light { color: var(--violet-light); }

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--violet-deep);
}
.brand-mark { height: 34px; width: auto; display: block; }
.brand-mark-badge {
  display: inline-flex;
  background: var(--paper);
  border-radius: 8px;
  padding: 3px;
  line-height: 0;
}
.brand-accent { color: var(--violet); }
.topnav { display: flex; align-items: center; gap: 1.6rem; }
.topnav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.topnav a:hover { color: var(--violet-deep); }
.nav-cta {
  background: var(--black);
  color: var(--paper) !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--violet-deep); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  padding: 5.5rem 0 5rem;
}
.mow-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    var(--mist) 0px,
    var(--mist) 90px,
    #e9e2f2 90px,
    #e9e2f2 180px
  );
  opacity: 0.9;
}
.hero-inner { position: relative; }
.hero-title {
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.95;
  color: var(--black);
}
.hero-sub {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--violet); color: var(--paper); }
.btn-primary:hover { background: var(--violet-deep); }
.btn-ghost { border-color: var(--black); color: var(--black); background: transparent; }
.btn-ghost:hover { background: var(--black); color: var(--paper); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--mist); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--violet-deep);
  margin-bottom: 2.2rem;
  max-width: 30rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
}
.service-icon { width: 40px; height: 40px; color: var(--violet); margin-bottom: 0.9rem; }
.service-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--violet-deep); }
.service-card p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--text-muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: repeating-linear-gradient(115deg, var(--black) 0px, var(--black) 22px, var(--violet-deep) 22px, var(--violet-deep) 44px);
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
}
.gallery-placeholder span {
  color: var(--mist);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* Service area */
.area-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.area-text { color: var(--text-muted); line-height: 1.65; margin-top: 1rem; max-width: 32rem; }
.area-badge {
  flex-shrink: 0;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--black);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 6px solid var(--violet);
}
.area-badge-city { font-family: var(--font-display); font-size: 1.35rem; }
.area-badge-state { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--violet-light); margin-top: 0.3rem; }

/* Quote section */
.section-dark { background: var(--black); }
.title-light { color: var(--paper); }
.quote-sub { color: #c3bcd2; margin: -1.2rem 0 2rem; max-width: 32rem; }
.quote-wrap { position: relative; }

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
  max-width: 42rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: #d4cee0; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.8rem;
  border-radius: 7px;
  border: 1px solid #3d3550;
  background: #211a2e;
  color: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
}
.field textarea { resize: vertical; }
.btn-submit { grid-column: 1 / -1; justify-self: start; border: none; }
.form-msg { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; min-height: 1.3em; }
.form-msg.success { color: var(--violet-light); }
.form-msg.error { color: #e39a9a; }

/* Footer */
.footer { background: var(--violet-deep); color: var(--mist); padding: 2.2rem 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand-footer { color: var(--mist); }
.brand-footer .brand-accent { color: var(--violet-light); }
.footer-contacts { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.9rem; }
.footer-contacts a { color: var(--mist); text-decoration: none; font-weight: 600; }
.footer-contacts a:hover { color: var(--violet-light); }
.footer-ig { color: var(--violet-light); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-ig:hover { color: var(--paper); }

@media (max-width: 640px) {
  .quote-form { grid-template-columns: 1fr; }
  .topnav { gap: 1rem; }
  .topnav a:not(.nav-cta) { display: none; }
}
