:root {
  --accent: #cc3366;
  --accent-dark: #a8294f;
  --accent-tint: #f6e6ec;
  --dark: #1c1517;
  --dark-soft: #2a2023;
  --light: #fbf7f4;
  --light-alt: #f4ece7;
  --white: #ffffff;
  --border: #e5d9d2;
  --border-dark: #3a2d31;
  --text: #1c1517;
  --text-muted: #6b5b56;
  --text-inv: #f5ece8;
  --text-inv-muted: #b8a59f;
  --radius: 8px;
  --radius-sm: 4px;
  --nav-h: 68px;
  --banner-h: 42px;
}

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

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

body {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: -0.018em;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
}

h2.section-title {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  margin-top: 6px;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

p {
  max-width: 65ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  line-height: 1.4;
}

.eyebrow.center {
  display: block;
  text-align: center;
}

.section-title {
  text-align: center;
}

.section-lead {
  text-align: center;
  margin: 12px auto 0;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 150ms ease;
  min-height: 44px;
  text-align: center;
  line-height: 1.2;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}

.brand-mark {
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand-sub {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  align-self: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 200ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--light);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-band {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 440px;
  background: var(--accent-tint);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 27px,
    rgba(204, 51, 102, 0.055) 27px,
    rgba(204, 51, 102, 0.055) 28px
  );
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(28, 21, 23, 0.09);
}

.hero-content .eyebrow {
  margin-bottom: 16px;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 28px;
  max-width: 48ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(28, 21, 23, 0.12);
}

/* ---------- Trust ---------- */

.trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 28px;
}

.trust-line {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: none;
}

.trust-line .dot {
  color: var(--accent);
  margin: 0 10px;
}

/* ---------- Services ---------- */

.services {
  background: var(--light);
  padding: 90px 0;
}

.services .container {
  max-width: 760px;
}

.service-menu {
  list-style: none;
  margin-top: 36px;
}

.service-menu li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.service-menu li:first-child {
  border-top: 1px solid var(--border);
}

.service-menu h3 {
  flex-shrink: 0;
  font-size: 1.18rem;
}

.leader {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-5px);
  min-width: 20px;
}

.service-menu p {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: right;
  max-width: none;
}

/* ---------- Team ---------- */

.team {
  background: var(--white);
  padding: 90px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.5;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
}

/* ---------- About ---------- */

.about {
  background: var(--light-alt);
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(28, 21, 23, 0.1);
}

.about-content .eyebrow {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.0625rem;
  max-width: 52ch;
}

/* ---------- CTA Band ---------- */

.cta-band {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 27px,
    rgba(204, 51, 102, 0.06) 27px,
    rgba(204, 51, 102, 0.06) 28px
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.cta-text .eyebrow {
  color: var(--accent);
  margin-bottom: 14px;
}

.cta-text h2 {
  color: var(--text-inv);
  margin-bottom: 16px;
}

.cta-text p {
  color: var(--text-inv-muted);
  font-size: 1.0625rem;
  margin-bottom: 28px;
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-address {
  font-size: 0.85rem;
  color: var(--text-inv-muted);
  letter-spacing: 0.02em;
  max-width: none;
}

.contact-form {
  background: var(--dark-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.contact-form h3 {
  color: var(--text-inv);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
  margin-bottom: 16px;
}

.field-label input,
.field-label textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 14px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  resize: vertical;
}

.field-label input:focus,
.field-label textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field-label textarea {
  min-height: 70px;
}

.form-notice {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(204, 51, 102, 0.15);
  border: 1px solid rgba(204, 51, 102, 0.4);
  border-radius: var(--radius-sm);
  color: var(--text-inv);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand .brand-mark {
  font-size: 1.2rem;
  color: var(--text-inv);
}

.footer-brand .brand-sub {
  font-size: 0.72rem;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--text-inv-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-nav,
.footer-contact,
.footer-creds {
  display: flex;
  flex-direction: column;
}

.footer-nav h4,
.footer-contact h4,
.footer-creds h4 {
  color: var(--text-inv);
  margin-bottom: 14px;
}

.footer-nav a,
.footer-contact a {
  color: var(--text-inv-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact p,
.footer-creds p {
  color: var(--text-inv-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 4px;
  max-width: none;
}

.footer-hours {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 28px;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-inv-muted);
  max-width: none;
}

/* ---------- Section anchor offset ---------- */

section[id] {
  scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 12px);
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 36px 28px;
  }

  .hero-band {
    height: 340px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 28px 20px;
    gap: 0;
    box-shadow: 0 12px 30px rgba(28, 21, 23, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-content {
    padding: 32px 22px;
  }

  .hero-band {
    height: 260px;
    top: 24px;
  }

  .hero-cta .btn {
    flex: 1;
    min-width: 0;
  }

  .trust-line {
    font-size: 0.72rem;
    line-height: 1.8;
  }

  .trust-line .dot {
    margin: 0 6px;
  }

  .services,
  .team,
  .about,
  .cta-band {
    padding: 60px 0;
  }

  .service-menu li {
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
  }

  .leader {
    display: none;
  }

  .service-menu p {
    text-align: left;
    font-size: 0.9rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 440px) {
  .container,
  .nav-inner,
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reveal (applied by JS) ---------- */

.reveal-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-init {
    opacity: 1;
    transform: none;
  }
}