/* ═══════════════════════════════════════════════════
   MILLAR & CUTTER — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --green-deep:  #0D1F18;
  --green-mid:   #1B3A2D;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9B7A2E;
  --cream:       #F5F0E8;
  --cream-dim:   #C8BFA8;
  --burgundy:    #6B1A1A;
  --rule:        rgba(201, 168, 76, 0.15);
  --serif:       'Playfair Display', Georgia, serif;
  --body:        'Cormorant Garamond', Georgia, serif;
  --ui:          'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.8;
  overflow-x: hidden;
}

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
}

p { color: var(--cream-dim); line-height: 1.85; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: var(--green-deep);
  border: 1px solid var(--gold);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: rgba(37,211,102,0.1);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.28);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.btn-whatsapp:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.5); }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  background: var(--green-mid);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.55;
}
.img-placeholder svg { opacity: 0.5; }
.img-placeholder span {
  font-family: var(--ui);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.img-portrait { aspect-ratio: 3 / 4; }

/* ── GOLD CORNER FRAME ── */
.img-frame { position: relative; display: block; width: 100%; }
.img-frame::before {
  content: '';
  position: absolute;
  top: -9px; right: -9px;
  width: 26px; height: 26px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -9px; left: -9px;
  width: 26px; height: 26px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

/* ── ORNAMENTAL DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 2.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.divider span { font-size: 0.65rem; color: var(--gold); }

/* ── SECTION BASE ── */
section { padding: 7rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.section-heading .gold { color: var(--gold); }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13,31,24,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(13,31,24,0.97);
  border-color: var(--rule);
  padding: 1.1rem 3rem;
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-book {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dark) !important;
  padding: 0.52rem 1.3rem !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-book:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.38s ease;
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay .nav-book-overlay {
  font-family: var(--ui) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dark);
  padding: 0.85rem 2.5rem;
  margin-top: 0.5rem;
  font-style: normal !important;
}

/* ── HERO (INDEX) ── */
section.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  position: relative;
  background: radial-gradient(ellipse at center, var(--green-mid) 0%, var(--green-deep) 65%);
  border-bottom: 1px solid var(--rule);
}
.hero-logo {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.3s;
}
.hero-logo-placeholder {
  width: 110px;
  height: 110px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-mid);
  font-family: var(--ui);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.45;
}
.hero-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.45s;
}
.hero-brand .gold { color: var(--gold); }
.hero-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}
.hero-divider {
  max-width: 260px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 0.9s ease forwards 0.75s;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.6s;
}
.scroll-label {
  font-family: var(--ui);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.35;
}
.scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── ABOUT ── */
.about {
  background: var(--green-mid);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text p { font-size: 1.15rem; margin-bottom: 1.4rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--green-mid);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(201,168,76,0.13);
}
.team-card-body { padding: 2rem 2rem 2.2rem; }
.team-card-role {
  font-family: var(--ui);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.team-card-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.9rem;
  line-height: 1;
}
.team-card-bio {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

/* ── SERVICES ── */
.services {
  background: var(--green-mid);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.services-col {
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  background: rgba(13,31,24,0.45);
}
.services-col-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.services-col-specialty {
  font-family: var(--ui);
  font-size: 0.54rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.services-list { list-style: none; border-top: 1px solid var(--rule); }
.services-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.services-item-name { font-size: 1rem; color: var(--cream-dim); }
.services-item-price {
  font-family: var(--ui);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.services-col-cta {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--green-mid);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--gold-dark);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  pointer-events: none;
  font-weight: 700;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.08rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}
.testimonial-author {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FIND US ── */
.find-us {
  background: var(--green-mid);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.find-us-label {
  font-family: var(--ui);
  font-size: 0.54rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  margin-top: 2rem;
}
.find-us-label:first-child { margin-top: 0; }
.find-us-value { font-size: 1.05rem; color: var(--cream-dim); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.4rem; }
.hours-table td {
  padding: 0.5rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  color: var(--cream-dim);
}
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-table tr:last-child td { border-bottom: none; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(13,31,24,0.5);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.map-placeholder p {
  font-family: var(--ui);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  border-top: 1px solid var(--rule);
  padding: 4rem 3rem 2.5rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-dim);
  opacity: 0.55;
  margin-bottom: 2rem;
}
.footer-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.footer-social a {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--ui);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.28;
}

/* ── PAGE HERO (person & contact pages) ── */
.page-hero {
  height: 55vh;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 4rem;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(27,58,45,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.page-hero-tag {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.page-hero-role {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-dim);
  opacity: 0.65;
}

/* ── PERSON PAGE LAYOUT ── */
.person-wrapper {
  background: var(--green-deep);
}
.person-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 3rem;
}
.person-sidebar { position: sticky; top: 6rem; }

.person-content > section {
  padding: 0 0 4rem;
  border-bottom: 1px solid var(--rule);
}
.person-content > section:last-child { border-bottom: none; }
.person-content > section + section { padding-top: 4rem; }

.person-section-label {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.person-section-heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.person-bio p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 1.1rem;
}

/* ── CALENDLY WRAPPER ── */
.calendly-wrap {
  min-height: 630px;
  border: 1px solid var(--rule);
  background: var(--green-mid);
  position: relative;
  margin-top: 1rem;
}
.calendly-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.calendly-placeholder p {
  font-family: var(--ui);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.35;
}

/* ── CONTACT SECTION (Lucy / Pamela) ── */
.contact-box {
  background: var(--green-mid);
  border: 1px solid var(--rule);
  padding: 2.8rem;
  margin-top: 1rem;
}
.contact-box-msg {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 48ch;
  line-height: 1.85;
}
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT PAGE ── */
.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1.3rem 1.5rem; }
  nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 5rem 1.5rem; }
  section.hero { padding: 7rem 1.5rem 5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .find-us-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .person-layout { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 3rem; }
  .person-sidebar { position: static; }

  .page-hero { padding: 0 1.5rem 3rem; }

  .contact-actions { flex-direction: column; }
  footer { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 480px) {
  .hero-brand { font-size: 2.6rem; }
}
