:root {
  --ink: #111111;
  --paper: #f7f3ea;
  --muted: #6d665c;
  --gold: #d9bd7a;
  --gold-dark: #9b762b;
  --panel: #ead7ad;
  --line: rgba(17, 17, 17, 0.14);
  --max: 1180px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
}

.site-nav a {
  font-weight: 700;
  text-decoration: none;
}

.phone-link {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 72px) 72px;
  color: white;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.88)),
    url("/assets/Saving-Time-and-Tunes-1.jpg") left top / cover no-repeat,
    #262626;
}

.hero-content {
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: 0.95;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.hero p {
  max-width: 620px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #111111;
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.section {
  padding: clamp(64px, 10vw, 124px) clamp(20px, 6vw, 72px);
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: white;
  background: #111111;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 2fr);
  gap: clamp(32px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid p:last-child {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-heading,
.services-grid,
.feature-band,
.contact-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card:last-child {
  border-right: 0;
}

.service-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 72px) clamp(64px, 10vw, 120px);
}

.feature-band div {
  min-height: 230px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
}

.feature-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.feature-band p,
.form-note {
  color: var(--muted);
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  padding: clamp(28px, 5vw, 54px);
  background: var(--panel);
  border-radius: 8px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px clamp(20px, 6vw, 72px);
  color: white;
  background: #111111;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    color: var(--ink);
    background: rgba(247, 243, 234, 0.96);
    box-shadow: 0 1px 18px rgba(0, 0, 0, 0.08);
  }

  .menu-button {
    display: inline-flex;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, calc(100vw - 36px));
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .phone-link {
    border-color: var(--line);
  }

  .section-grid,
  .services-grid,
  .feature-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .service-card span {
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 170px;
    line-height: 1.1;
  }

  .hero {
    padding-top: 120px;
  }
}
