/* ============================================================
   PHIL THE CUP — Main Stylesheet
   ============================================================ */

/* ── TOKENS ── */
:root {
  --black:      #0a0a08;
  --black-deep: #060604;
  --mid:        #111111;
  --cream:      #ffffff;
  --gold:       #ffffff;
  --muted:      #888888;
  --gap:        3px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --transition-base: 0.25s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

/* ── BRAND NAME TREATMENT ── */
/* "THE" in Phil THE Cup is smaller and raised */
.the {
  font-size: 0.6em;
  vertical-align: 0.22em;
  letter-spacing: 0.06em;
}

/* ── CONDENSED DISPLAY TYPE ── */
/* The logo uses heavily condensed lettering — roughly 65% of Bebas Neue's
   natural width. scaleX(0.78) is applied to all display headings and the
   nav/footer brand name to match. transform-origin: left keeps alignment. */

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 1.6rem;
  transform: scaleX(0.78);
  transform-origin: left top;
}

.section-heading em {
  font-style: normal;
  color: var(--gold);
}

.section-heading.no-margin {
  margin-bottom: 0;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
}

.section-body p + p {
  margin-top: 1rem;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

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

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 8, 0.97) 0%, transparent 100%);
  transition: background var(--transition-base), padding var(--transition-base);
}

#nav.scrolled {
  background: rgba(10, 10, 8, 0.97);
  padding-top: 1rem;
  padding-bottom: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo svg {
  fill: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  opacity: 0.72;
  transition: opacity var(--transition-base);
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
  outline: none;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.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); }

/* ── HERO ── */
.hero {
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 60%;
  background-position: right 15%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}

.hero.loaded .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.95) 0%,
    rgba(10, 10, 8, 0.2) 35%,
    rgba(10, 10, 8, 0.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 3rem 5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 13.5vw, 14.1rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
  transform: scaleX(0.78);
  transform-origin: left center;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-title em {
  font-style: normal;
  font-size: 0.6em;
  vertical-align: 0.22em;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.hero-sub {
  margin-top: 1.8rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-ctas {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.6s;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 24s linear infinite;
}

.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  padding: 0 2rem;
}

.marquee-inner .dot {
  padding: 0;
  opacity: 0.4;
  font-size: 0.55rem;
}

/* ── COFFEE FEATURE ── */
.coffee-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.coffee-img {
  overflow: hidden;
}

.coffee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
  transition: transform var(--transition-slow), filter var(--transition-base);
}

.coffee-img:hover img {
  transform: scale(1.04);
  filter: brightness(1.0);
}

.coffee-text {
  background: var(--mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

/* ── BAKES ── */
.bakes-section {}

.bakes-header {
  padding: 5rem 3rem 3rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
}

.bakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap);
  background: var(--black);
}

.bake-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.bake-cell.tall {
  grid-row: span 1;
  aspect-ratio: 1;
}

.bake-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform var(--transition-slow), filter var(--transition-base);
}

.bake-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1.0);
}

.bake-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.85) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.bake-cell:hover .bake-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT ── */
.about-section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.4vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  transform: scaleX(0.78);
  transform-origin: left top;
}

.about-heading em {
  font-style: normal;
  color: var(--gold);
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
}

.about-body p + p {
  margin-top: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-box {
  background: var(--mid);
  padding: 2.2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── FIND US ── */
.findus-section {
  background: var(--mid);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.findus-section::before {
  content: 'FIND US';
  position: absolute;
  top: -3rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: 16rem;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.findus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.location-list {
  margin-top: 2rem;
}

.location-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.location-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.location-day {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.location-details strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.location-details span {
  font-size: 0.75rem;
  color: var(--muted);
}

.location-time {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.instagram-nudge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.25rem;
  transition: border-color var(--transition-base);
}

.instagram-nudge:hover {
  border-color: var(--gold);
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder svg {
  width: 28px;
  fill: var(--muted);
  opacity: 0.4;
}

/* When a real map iframe is dropped in */
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── EVENTS ── */
.events-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

.events-img {
  position: relative;
  overflow: hidden;
}

.events-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7);
  transition: transform var(--transition-slow);
}

.events-img:hover img {
  transform: scale(1.04);
}

.events-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}

.events-content {
  background: var(--black);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.event-types {
  margin: 1.8rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.event-type::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-section {
  padding: 6rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.7vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 0.8rem;
  transform: scaleX(0.78);
  transform-origin: center top;
}

.contact-heading em {
  font-style: normal;
  color: var(--gold);
}

.contact-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--mid);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.optional {
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0;
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6556' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--mid);
  color: var(--cream);
}

.field-error {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  margin-top: 0.5rem;
  transition: background var(--transition-base), color var(--transition-base);
  position: relative;
}

.form-submit:hover:not(:disabled) {
  background: var(--cream);
  border-color: var(--cream);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

.form-submit.sending .btn-text {
  display: none;
}

.form-submit.sending .btn-loading {
  display: inline;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2rem;
}

.form-feedback.success {
  color: #6dbf8a;
}

.form-feedback.error {
  color: #c0392b;
}

.call-direct {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.call-direct a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.call-direct a:hover {
  color: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--black-deep);
  padding: 4rem 3rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-name {
  display: block;
  margin-bottom: 0.9rem;
}

.footer-brand-name svg {
  fill: var(--gold);
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-col li a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-col li a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { transform: none !important; }
  .marquee-inner { animation: none; }
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .about-section { gap: 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  /* Nav */
  #nav { padding: 1.2rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 205;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1rem;
    opacity: 1;
  }

  /* Hero */
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .scroll-hint { display: none; }

  /* Coffee feature */
  .coffee-feature { grid-template-columns: 1fr; }
  .coffee-img { min-height: 280px; }
  .coffee-text { padding: 3.5rem 1.5rem; }

  /* Bakes */
  .bakes-header { padding: 3.5rem 1.5rem 2rem; flex-direction: column; gap: 0.5rem; }
  .bakes-grid { grid-template-columns: repeat(2, 1fr); }
  .bake-cell.tall { grid-row: span 1; aspect-ratio: 1; }

  /* About */
  .about-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }

  /* Find us */
  .findus-section { padding: 4rem 1.5rem; }
  .findus-inner { grid-template-columns: 1fr; gap: 3rem; }
  .findus-section::before { font-size: 6rem; }

  /* Events */
  .events-section { grid-template-columns: 1fr; }
  .events-img { min-height: 260px; }
  .events-img-overlay { background: linear-gradient(to top, var(--black) 0%, transparent 60%); }
  .events-content { padding: 3.5rem 1.5rem; }

  /* Contact */
  .contact-section { padding: 4rem 1.5rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 0 2.5rem; }
  .footer-brand { grid-column: auto; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── WORDMARK & NEW BRAND ASSETS ── */

/* Nav wordmark */
.nav-wordmark {
  height: 18px;
  width: auto;
  display: block;
  /* SVGs are white — invert not needed on dark nav */
}

/* Hero wordmark replaces the large text title */
.hero-title {
  /* override: now a container for SVG images not text */
  font-size: unset;
  white-space: unset;
  transform: none;
}

.hero-wordmark {
  display: block;
  width: min(140px, 18vw);
  height: auto;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-sub-wordmark {
  display: block;
  width: min(140px, 18vw);
  height: auto;
  margin-top: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.65s;
}

/* Footer wordmark */
.footer-wordmark {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.9rem;
}

/* Override footer-brand-name — no longer needs flex/font styles */
.footer-brand-name {
  font-family: unset;
  font-size: unset;
  letter-spacing: unset;
  display: block;
  transform: none;
}

/* Rubber hose section removed */

@media (max-width: 768px) {
  .hero-wordmark {
    width: 28vw;
  }

  .hero-sub-wordmark {
    width: 28vw;
  }

}
