/*
  The Barber Stylist — 1968 Hangar Barbershop
  -------------------------------------------
  Direction: cream stucco + roasted wood + biplane yellow + barber red.
  Signature: yellow biplane SVG recurring in hero, story, and finale.
  Type: Saira Stencil One (display, aviation/carved-sign), Mulish (body),
        Special Elite (typewriter for price board + EST stamps).
*/

:root {
  --bg: #f4ead5;            /* warm cream stucco */
  --paper: #fbf6ea;         /* lighter cream paper */
  --wood: #2c1c10;          /* deep roasted wood */
  --wood-2: #5b3a22;        /* lighter wood / borders */
  --wood-3: #7a5839;        /* mid wood */
  --yellow: #f5c623;        /* biplane / sign yellow */
  --yellow-2: #d99c10;      /* yellow shadow */
  --red: #c8261d;           /* barber pole red */
  --red-2: #8e1611;         /* red shadow */
  --blue: #1f4b8a;          /* barber pole blue (tertiary) */
  --stone: #cab789;         /* fake-stone border */
  --ink: #2c1c10;           /* body text */
  --ink-soft: #4a3424;      /* muted text */
  --line: #c9b18b;          /* hairline border */

  --serif: 'Special Elite', 'Courier New', ui-monospace, monospace;
  --display: 'Saira Stencil One', 'Big Shoulders Display', 'Impact', sans-serif;
  --body: 'Mulish', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }

/* ---------- shared ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.btn--primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: inset 0 -3px 0 var(--red-2);
}
.btn--primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  box-shadow: none;
}
.btn--ghost:hover { background: currentColor; color: var(--paper); }
.btn--big {
  padding: 22px 38px;
  font-size: 22px;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--wood);
  box-shadow: inset 0 -4px 0 var(--yellow-2);
  font-family: var(--display);
}
.btn--big:hover { background: #ffd84a; transform: translateY(-1px); }

.kicker {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(245, 198, 35, 0.16);
  border: 1.5px solid var(--yellow);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

/* ---------- topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wood);
  color: var(--paper);
  border-bottom: 3px solid var(--yellow);
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar__brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--wood);
  border-radius: 50%;
  flex: 0 0 36px;
}
.topbar__brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.topbar__brand-name {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.topbar__brand-sub {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  text-transform: uppercase;
}
.topbar__est {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--wood);
  background: var(--yellow);
  padding: 6px 10px 5px;
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: inset 0 -2px 0 var(--yellow-2);
}
.topbar__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  text-decoration: none;
  color: var(--paper);
  flex: 0 0 auto;
  white-space: nowrap;
}
.topbar__phone-label {
  font-family: var(--serif);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.topbar__phone-num {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.topbar__phone:hover .topbar__phone-num { color: var(--yellow); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  overflow: hidden;
  min-height: clamp(540px, 92vh, 780px);
  display: flex;
  align-items: flex-end;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.85);
}
.hero__photo-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,6,0.62) 0%, rgba(20,12,6,0.35) 35%, rgba(20,12,6,0.45) 60%, rgba(20,12,6,0.82) 90%, rgba(20,12,6,0.95) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(245,198,35,0.06), transparent 50%);
}
.hero__plane {
  position: absolute;
  top: 14%;
  right: -40px;
  width: clamp(180px, 32vw, 320px);
  color: var(--yellow);
  transform: rotate(-7deg);
  opacity: 0.92;
  z-index: -1;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateX(-30px) translateY(0) rotate(-7deg); }
  to   { transform: translateX(30px) translateY(-12px) rotate(-9deg); }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 44px;
}

.hero__kicker {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--yellow);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 3px 0 rgba(0,0,0,0.35);
}
.hero__title-row { display: block; }
.hero__title-row--top {
  font-size: clamp(48px, 11vw, 120px);
}
.hero__title-row--bot {
  font-size: clamp(72px, 18vw, 200px);
  color: var(--yellow);
  text-shadow: 0 4px 0 var(--red-2), 0 4px 0 rgba(0,0,0,0.35);
}
.hero__sub {
  font-family: var(--body);
  font-size: clamp(15px, 1.7vw, 18px);
  max-width: 56ch;
  margin: 18px 0 24px;
  color: #f3e7c4;
  font-weight: 500;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__cta .btn--ghost { color: var(--paper); }

/* ---------- marquee strip ---------- */

.strip {
  background: var(--red);
  color: var(--paper);
  border-top: 4px solid var(--wood);
  border-bottom: 4px solid var(--wood);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--display);
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.18em;
}
.strip__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 48s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip span { padding-right: 20px; }

/* ---------- story ---------- */

.story {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--bg);
  position: relative;
}
.story__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.story__head { max-width: 38ch; margin: 0 auto 44px; text-align: center; }
.story__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.05;
  margin: 0;
  color: var(--wood);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 880px) {
  .story__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
}

.story__body p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink);
}
.story__body p:last-child { margin-bottom: 0; }
.story__body strong { color: var(--red); font-weight: 800; }

.story__quote {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--wood);
  border-radius: 3px;
  padding: 32px 28px 24px;
  margin: 0;
  box-shadow: 6px 6px 0 var(--yellow);
}
.story__quote-plane {
  position: absolute;
  top: -38px;
  right: 18px;
  width: 110px;
  color: var(--yellow);
  transform: rotate(8deg);
}
.story__quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.5;
  color: var(--wood);
}
.story__quote blockquote p { margin: 0; }
.story__quote figcaption {
  margin-top: 14px;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ---------- price board ---------- */

.board {
  background: var(--wood);
  color: var(--paper);
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.board::before, .board::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background:
    repeating-linear-gradient(90deg, var(--yellow) 0 18px, var(--wood) 18px 36px);
}
.board::before { top: 0; }
.board::after  { bottom: 0; }
.board__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.board__head { text-align: center; max-width: 40ch; margin: 0 auto 36px; }
.board__head .kicker { color: var(--yellow); }
.board__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.board__sub {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 0;
  text-transform: uppercase;
}

.board__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--wood);
  border: 3px solid var(--wood-2);
  padding: 28px 32px 26px;
  box-shadow: 10px 10px 0 var(--yellow), 10px 10px 0 4px var(--wood);
  position: relative;
}
.board__card-banner {
  text-align: center;
  border-bottom: 2px solid var(--wood-2);
  padding-bottom: 14px;
  margin-bottom: 18px;
  line-height: 0.95;
}
.board__card-banner-the {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-2);
  margin-bottom: 4px;
}
.board__card-banner-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 54px);
  letter-spacing: 0.02em;
  color: var(--yellow-2);
  text-transform: uppercase;
}
.board__card-banner-name em {
  font-style: italic;
  color: var(--red);
  font-family: 'Georgia', serif;
  font-weight: 700;
  text-transform: none;
}

.board__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.board__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 18px);
  border-bottom: 1px dashed var(--line);
}
.board__list li:last-child { border-bottom: none; }
.board__row-name { flex: 0 0 auto; }
.board__row-dots {
  flex: 1 1 auto;
  border-bottom: 2px dotted var(--wood-3);
  transform: translateY(-3px);
}
.board__row-price {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--red);
}
.board__footnote {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 12.5px;
  color: var(--wood-3);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ---------- gallery ---------- */

.gallery {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--bg);
}
.gallery__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery__head { text-align: center; max-width: 38ch; margin: 0 auto 40px; }
.gallery__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
  margin: 0;
  color: var(--wood);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(260px, auto);
    gap: 22px;
  }
  .gallery__item--lg {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}
@media (min-width: 1100px) {
  .gallery__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: minmax(280px, auto);
  }
  .gallery__item--lg {
    grid-column: 1;
    grid-row: 1;
  }
}

.gallery__item {
  margin: 0;
  position: relative;
  border: 2px solid var(--wood-2);
  background: var(--paper);
  padding: 10px 10px 0;
  box-shadow: 5px 5px 0 var(--wood);
  display: flex;
  flex-direction: column;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  flex: 1;
}
.gallery__item figcaption {
  padding: 10px 4px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood-2);
  text-align: center;
}

/* ---------- visit ---------- */

.visit {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--paper);
  border-top: 3px solid var(--wood);
}
.visit__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.visit__head { text-align: center; max-width: 32ch; margin: 0 auto 44px; }
.visit__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.05;
  margin: 0;
  color: var(--wood);
  text-transform: uppercase;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 880px) {
  .visit__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 56px;
  }
}

.visit__hours-card {
  background: var(--wood);
  color: var(--paper);
  padding: 28px 22px 22px;
  border-radius: 4px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  box-shadow: 10px 10px 0 var(--yellow);
}
.visit__hours-card::before {
  content: "OPEN";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  padding: 6px 18px 5px;
  border-radius: 2px;
  box-shadow: inset 0 -3px 0 var(--red-2);
}
.visit__hours-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 44px);
  margin: 18px 0 14px;
  letter-spacing: 0.05em;
  color: var(--yellow);
  line-height: 1;
}
.visit__hours-list {
  list-style: none;
  margin: 0;
  padding: 0 6px;
  border-top: 2px solid var(--wood-2);
  border-bottom: 2px solid var(--wood-2);
  padding-top: 12px;
  padding-bottom: 12px;
}
.visit__hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 15px;
  padding: 5px 0;
}
.visit__hours-list li span:first-child {
  color: var(--paper);
  letter-spacing: 0.06em;
}
.visit__hours-list li span:last-child {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.visit__hours-foot {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--paper);
}

.visit__place-name {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--wood);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.visit__est {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  background: var(--yellow);
  color: var(--wood);
  padding: 4px 8px 3px;
  border-radius: 2px;
  box-shadow: inset 0 -2px 0 var(--yellow-2);
}
.visit__addr {
  font-style: normal;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
}
.visit__addr-note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.visit__pay {
  background: var(--wood);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 14.5px;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}
.visit__pay strong { color: var(--yellow); }
.visit__pay-tag {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 3px 8px 2px;
  margin-right: 10px;
  border-radius: 2px;
}

.visit__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.visit__cta .btn--ghost { color: var(--wood); }

/* ---------- finale ---------- */

.finale {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(245,198,35,0.10), transparent 60%),
    var(--wood);
  color: var(--paper);
  padding: clamp(80px, 12vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finale__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.finale__plane {
  width: clamp(120px, 18vw, 200px);
  color: var(--yellow);
  margin: 0 auto 18px;
  display: block;
  transform: rotate(-4deg);
}
.finale__kicker {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--yellow);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.finale__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1;
  margin: 0 0 18px;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 0 var(--red-2);
}
.finale__sub {
  font-family: var(--body);
  font-size: clamp(15px, 1.6vw, 18px);
  color: #f3e7c4;
  max-width: 50ch;
  margin: 0 auto 30px;
  font-weight: 500;
}

/* ---------- footer ---------- */

.foot {
  background: #1d130a;
  color: var(--paper);
  padding: 40px 0 28px;
  border-top: 4px solid var(--yellow);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 760px) {
  .foot__inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    align-items: start;
  }
}
.foot__col p { margin: 0 0 4px; font-size: 14px; line-height: 1.55; color: #ddc99a; }
.foot__brand {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin: 0 0 4px !important;
}
.foot__sub {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ddc99a;
}
.foot__col a { color: var(--paper); text-decoration: none; border-bottom: 1px dotted var(--yellow); }
.foot__col a:hover { color: var(--yellow); }
.foot__copy {
  max-width: var(--maxw);
  margin: 30px auto 0;
  padding: 18px var(--gutter) 0;
  border-top: 1px solid #3a2a1a;
  text-align: center;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #99825a;
  text-transform: uppercase;
}

/* ---------- responsive: topbar squeeze ---------- */

@media (max-width: 640px) {
  .topbar__brand-sub { display: none; }
  .topbar__brand-name { font-size: 16px; }
  .topbar__est { font-size: 11px; padding: 5px 8px 4px; }
  .topbar__phone-num { font-size: 14.5px; }
  .topbar__phone-label { font-size: 10px; }
  .topbar__inner { gap: 10px; }
}
@media (max-width: 420px) {
  .topbar__est { display: none; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
  .hero__plane { animation: none; }
  html { scroll-behavior: auto; }
}
