/* ============================================================
   AGENCY ROOFING CO. — Production Stylesheet
   Built with agency. Driven by obligation.
   ============================================================ */

:root {
  --stone:     #EAE4DA;
  --stone-2:   #F4F0E8;
  --ink:       #1C1A18;
  --ink-soft:  #2A2724;
  --copper:    #974930;
  --mid:       #C97E78;
  --highlight: #F0C8C2;
  --white:     #FFFFFF;
  --muted:     #7a736a;
  --muted-light: #a8a094;

  --f-display: 'Anton', 'Oswald', 'Bebas Neue', sans-serif;
  --f-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-serif:   'Lora', Georgia, serif;

  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 140px);
  --maxw: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234, 228, 218, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(28, 26, 24, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(234, 228, 218, 0.97);
  border-bottom-color: rgba(28, 26, 24, 0.14);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; transition: opacity 0.25s var(--ease); }
.nav-logo:hover img { opacity: 0.82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink);
  color: var(--stone) !important;
  padding: 11px 20px !important;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--copper); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 var(--gutter) 32px;
  border-top: 1px solid rgba(28, 26, 24, 0.08);
}
.mobile-menu a {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(28, 26, 24, 0.06);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-cta {
  margin-top: 8px;
  background: var(--ink);
  color: var(--stone) !important;
  text-align: center;
  border-radius: 2px;
  padding: 18px 0 !important;
  border-bottom: 0 !important;
}
.mobile-call {
  color: var(--copper) !important;
  text-align: center;
  border-bottom: 0 !important;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* HERO */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--stone);
  padding: clamp(80px, 14vw, 160px) var(--gutter) clamp(60px, 10vw, 120px);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(151, 73, 48, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(201, 126, 120, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 48px);
  animation: fadeUp 0.9s var(--ease) both;
}
.eyebrow-line {
  height: 1px;
  flex: 0 0 40px;
  background: var(--copper);
}
.eyebrow-line:last-child { flex: 1 1 auto; max-width: 240px; }
.eyebrow-text {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 0.1s both;
}
.hero-line-1 { display: block; color: var(--stone); }
.hero-line-2 { display: block; color: var(--mid); font-style: normal; }

.hero-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--highlight);
  margin: 0 0 clamp(20px, 3vw, 28px);
  letter-spacing: 0.3px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(234, 228, 218, 0.78);
  max-width: 580px;
  margin: 0 0 clamp(36px, 5vw, 52px);
  animation: fadeUp 1s var(--ease) 0.3s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(48px, 7vw, 80px);
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(234, 228, 218, 0.12);
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--f-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}
.meta-value {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--stone);
}
.meta-divider { width: 1px; height: 32px; background: rgba(234, 228, 218, 0.15); }
@media (max-width: 640px) {
  .meta-divider { display: none; }
  .hero-meta { gap: 18px 32px; }
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--copper));
  animation: scrollPulse 2.4s var(--ease) infinite;
}
.scroll-text {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 880px) { .hero-scroll { display: none; } }

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  user-select: none;
  min-height: 52px;
}
.btn-primary {
  background: var(--copper);
  color: var(--stone);
  box-shadow: 0 8px 20px -10px rgba(151, 73, 48, 0.6);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--stone);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(28, 26, 24, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--stone);
  border-color: rgba(234, 228, 218, 0.35);
}
.btn-secondary:hover {
  background: rgba(234, 228, 218, 0.08);
  border-color: var(--mid);
  color: var(--highlight);
}
.btn-full { width: 100%; }

/* SECTIONS */
.section {
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-stone { background: var(--stone); color: var(--ink); }
.section-ink { background: var(--ink); color: var(--stone); }

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  padding-bottom: 8px;
  position: relative;
}
.section-eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--copper);
  transform: translateX(-50%);
}
.section-header-light .section-eyebrow { color: var(--mid); }
.section-header-light .section-eyebrow::after { background: var(--mid); }

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.section-title em { font-style: normal; color: var(--copper); }
.section-header-light .section-title em { color: var(--mid); }

.section-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.section-header-light .section-lede { color: rgba(234, 228, 218, 0.7); }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 2px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 73, 48, 0.2);
  box-shadow: 0 18px 40px -22px rgba(28, 26, 24, 0.25);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--copper);
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.why-card {
  padding: clamp(32px, 3.5vw, 44px) clamp(28px, 3vw, 36px);
  border: 1px solid rgba(234, 228, 218, 0.12);
  border-radius: 2px;
  background: rgba(234, 228, 218, 0.03);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.why-card:hover {
  background: rgba(234, 228, 218, 0.06);
  border-color: rgba(201, 126, 120, 0.3);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  margin-bottom: 24px;
}
.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--stone);
}
.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(234, 228, 218, 0.7);
  margin: 0;
}

/* PROCESS */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 3.5vw, 40px) 0;
  border-bottom: 1px solid rgba(28, 26, 24, 0.1);
  align-items: start;
}
.process-item:last-child { border-bottom: 0; }
.process-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.process-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 8px 0 12px;
  color: var(--ink);
}
.process-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}
@media (max-width: 560px) {
  .process-item { grid-template-columns: 1fr; gap: 8px; }
  .process-num { font-size: 48px; }
}

/* CREDENTIALS */
.section-credentials {
  background: var(--ink);
  color: var(--stone);
  position: relative;
  overflow: hidden;
}
.section-credentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(151, 73, 48, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.credentials-block {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.credentials-block .section-eyebrow { color: var(--mid); }
.credentials-block .section-eyebrow::after { background: var(--mid); }

.credentials-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.credentials-title em { font-style: normal; color: var(--mid); }

.credentials-body {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(234, 228, 218, 0.82);
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 48px);
}
.credentials-body strong { color: var(--highlight); font-weight: 600; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(234, 228, 218, 0.08);
  border: 1px solid rgba(234, 228, 218, 0.08);
  text-align: left;
  margin-bottom: clamp(28px, 4vw, 36px);
}
.cred-item {
  background: var(--ink);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-label {
  font-family: var(--f-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}
.cred-value {
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--stone);
}

.credentials-note {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(234, 228, 218, 0.55);
  max-width: 620px;
  margin: 0 auto;
}

/* CONTACT */
.section-contact { background: var(--stone-2); color: var(--ink); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

.contact-left .section-eyebrow { margin-bottom: 16px; }
.contact-left .section-eyebrow::after { left: 0; transform: none; }
.contact-left .section-title { text-align: left; }
.contact-left .section-lede { text-align: left; max-width: none; }

.contact-direct {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(28, 26, 24, 0.1);
}
.contact-direct-item {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(28, 26, 24, 0.1);
  transition: padding-left 0.3s var(--ease);
}
a.contact-direct-item:hover { padding-left: 8px; }
a.contact-direct-item:hover .cdi-value { color: var(--copper); }
.cdi-label {
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.cdi-value {
  font-family: var(--f-body);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  transition: color 0.3s var(--ease);
}

.contact-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 2px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  box-shadow: 0 18px 40px -28px rgba(28, 26, 24, 0.2);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(28, 26, 24, 0.14);
  border-radius: 2px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-row select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23974930' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--f-body);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(151, 73, 48, 0.12);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--muted-light); }

.contact-form .btn { margin-top: 8px; }

.form-fallback {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.form-fallback a {
  color: var(--copper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-fallback a:hover { color: var(--ink); }

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: clamp(48px, 6vw, 72px) var(--gutter) clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(234, 228, 218, 0.06);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  text-align: center;
}

.footer-lockup img { max-width: 220px; height: auto; }
.footer-lockup { margin-bottom: 8px; }

.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--highlight);
  letter-spacing: 0.3px;
  margin: 0;
}

.footer-line {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0;
}

.footer-fineprint {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(234, 228, 218, 0.5);
  max-width: 580px;
  margin: 0;
}

@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; }
}
