/* ============================================================
   Grounds & Glory — Coffee Shop Website
   Stylesheet: style.css
   Designer: [Your Freelance Name]
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand colours */
  --espresso:    #2C1810;
  --caramel:     #C4763A;
  --caramel-lt:  #D4925A;
  --cream:       #FAF7F2;
  --latte:       #E8D5B7;
  --latte-dk:    #C9B99A;
  --text:        #1C1C1C;
  --text-muted:  #6B5E53;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Borders & radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  /* Transitions */
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typography helpers ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: min(90%, 1120px);
  margin-inline: auto;
}

.section {
  padding-block: var(--space-xl);
}

.section--dark {
  background-color: var(--espresso);
  color: var(--cream);
}

.section--tinted {
  background-color: var(--latte);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}
.btn-primary:hover {
  background-color: #b56730;
  border-color: #b56730;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,118,58,0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--caramel);
  border-color: var(--caramel);
}
.btn-outline:hover {
  background-color: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cream {
  background-color: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.btn-cream:hover {
  background-color: var(--latte);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background-color: rgba(250,247,242,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(44,24,16,0.09);
  padding: 0.9rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav__logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--caramel);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover, .nav__link.active { color: var(--caramel); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
}

/* Hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  /* Rich layered background — no external image needed */
  background-color: var(--espresso);
}

/* Decorative radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(196,118,58,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(196,118,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 1rem 5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--caramel);
  opacity: 0.7;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
  margin-inline: auto;
}

.hero__title em {
  font-style: italic;
  color: var(--caramel);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--latte);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--latte-dk);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--caramel), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── Stats strip ──────────────────────────────────────────── */
.stats {
  background: var(--caramel);
  padding: 2.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 1rem;
}

.stats__item {
  border-right: 1px solid rgba(255,255,255,0.25);
  padding-inline: 1rem;
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stats__desc {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

/* ── Feature grid (home) ──────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--latte);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,24,16,0.1);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.6rem;
}

.feature-card__text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
}

/* ── Hours strip (home) ───────────────────────────────────── */
.hours-strip {
  background: var(--latte);
  padding: 3rem 0;
}

.hours-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hours-strip__heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--espresso);
}

.hours-strip__table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.4rem 2rem;
}

.hours-strip__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--espresso);
}

.hours-strip__day { font-weight: 500; }
.hours-strip__time { color: var(--text-muted); }

/* ── About page ───────────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--espresso);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(196,118,58,0.18) 0%, transparent 70%);
}

.page-hero__label {
  color: var(--caramel);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

/* About split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.photo-placeholder__icon { font-size: 3.5rem; }
.photo-placeholder__text { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Decorative image badge */
.about-photo__badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--caramel);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,118,58,0.35);
}

.about-photo__badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.about-photo__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-content .section-title { margin-bottom: 0.75rem; }

/* Values list */
.values-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
}

.value-item__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--caramel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ── Services page ────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--latte);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.menu-card:hover { box-shadow: 0 16px 48px rgba(44,24,16,0.1); transform: translateY(-4px); }
.menu-card:hover::before { transform: scaleX(1); }

.menu-card__emoji { font-size: 2.2rem; margin-bottom: 1rem; }

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.menu-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.menu-card__items {
  border-top: 1px solid var(--latte);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-card__item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.menu-card__item-name { color: var(--text); font-weight: 500; }
.menu-card__item-price { color: var(--caramel); font-weight: 600; }

/* Extras / Add-ons section */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.extra-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--latte);
  border-radius: 100px;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--espresso);
  transition: all var(--transition);
}

.extra-pill:hover {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}

.extra-pill__icon { font-size: 1.1rem; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.contact-info__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--latte);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 0.2rem;
  font-weight: 500;
}

.contact-hours {
  background: var(--espresso);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
}

.contact-hours__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.87rem;
}

.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__day { color: var(--latte); font-weight: 500; }
.contact-hours__time { color: var(--latte-dk); }

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--latte);
  box-shadow: 0 8px 40px rgba(44,24,16,0.07);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.form-subheading {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--latte);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(196,118,58,0.15);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Map placeholder */
.map-placeholder {
  background: var(--latte);
  border-radius: var(--radius-md);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border: 1px solid var(--latte-dk);
}

.map-placeholder__icon { font-size: 2.5rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.footer__about {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer__col-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.6);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.4);
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(250,247,242,0.6);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--caramel);
  border-radius: 3px;
  margin: 1.25rem 0;
}

.divider--center { margin-inline: auto; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-split,
  .contact-layout { grid-template-columns: 1fr; }

  .about-split--reverse { direction: ltr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about-col { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__link { font-size: 1.5rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; z-index: 101; }

  .stats__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 1.5rem; }
  .stats__item:last-child { border-bottom: none; padding-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }

  .hero__actions { flex-direction: column; align-items: center; }
}
