/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Public Sans', system-ui, sans-serif;
  background: #ffffff;
  color: #14110f;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  text-transform: uppercase;
  margin: 12px 0 0 0;
}

p {
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: #1f6c93;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #14110f;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 18px clamp(20px, 4vw, 44px);
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-main {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.logo-sub {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5px;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(10px, 1.5vw, 24px);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(11.5px, 1.05vw, 14.5px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.nav-link {
  color: #fff;
  padding-bottom: 3px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.nav-link:hover {
  background-size: 100% 1px;
}

.phone-link {
  flex: none;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  padding-bottom: 3px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.phone-link:hover {
  background-size: 100% 1px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 18px clamp(20px, 4vw, 44px) 24px;
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 99;
  animation: panelIn 0.3s ease both;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #9ed8f5;
}

.mobile-menu-cta {
  margin-top: 16px;
  padding: 16px;
  text-align: center;
  background: #fff;
  color: #14110f;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: background 0.3s ease;
}

.mobile-menu-cta:hover {
  background: #9ed8f5;
}

/* Responsive */
@media (max-width: 1150px) {
  .desktop-nav,
  .desktop-phone {
    display: none;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 860px) {
  .mobile-phone {
    display: inline-flex;
  }

  .phone-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    align-items: center;
    justify-content: center;
    border-radius: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 7, 6, 0.62) 0%,
    rgba(8, 7, 6, 0.22) 34%,
    rgba(8, 7, 6, 0.34) 68%,
    rgba(8, 7, 6, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  padding: clamp(150px, 19vw, 200px) clamp(24px, 5vw, 48px) clamp(150px, 14vw, 130px);
  text-align: center;
  color: #fff;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.42em;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 4.2vw, 52px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.7);
  animation: titleFloat 5.5s 2.4s ease-in-out infinite;
}

.word-animate {
  display: inline-block;
  animation: wordIn 0.85s ease both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
  animation: fadeInUp 1s 1.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 18px clamp(20px, 4vw, 44px) 22px;
  animation: fadeInUp 1.2s 0.8s ease both;
}

.strip-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-items: center;
  gap: 10px 28px;
  align-items: center;
  color: #fff;
}

.rating-box,
.location-box {
  display: flex;
  align-items: center;
  gap: 4px 9px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
  justify-content: center;
}

.stars {
  color: #e8b64a;
  font-size: 17px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.location-box a {
  color: #fff;
}

.hours-flip {
  display: grid;
  justify-items: center;
  align-items: center;
  overflow: hidden;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hours-text {
  grid-area: 1/1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hours-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: clamp(17px, 2.4vw, 25px) clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 0%;
  transition: background-size 0.42s cubic-bezier(0.4, 0, 0.2, 1), color 0.32s ease, border-color 0.32s ease;
  cursor: pointer;
}

.btn:hover {
  background-size: 100% 100%;
  color: #14110f;
  border-color: #fff;
}

.btn span:nth-child(2) {
  position: relative;
  z-index: 2;
  font-size: 22px;
}

.btn::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 55%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255, 255, 255, 0.28) 38%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.28) 62%,
    transparent 90%
  );
  filter: blur(1px);
  animation: sheen 3.2s 2.6s ease-in-out infinite;
  pointer-events: none;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #121110;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background: #1f6c93;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 72px);
}

.section-container {
  max-width: 1360px;
  margin: 0 auto;
}

.section-number {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #1f6c93;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.section-desc {
  margin: 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 17, 15, 0.55);
}

/* Services Section */
.services {
  --services-gutter: clamp(24px, 5vw, 72px);
  background: #ffffff;
}

.services .section-container {
  max-width: none;
}

/* Pull the list out past the section gutter so rows and dividers bleed edge to edge */
.services-list {
  border-top: 1px solid rgba(20, 17, 15, 0.14);
  margin-left: calc(-1 * var(--services-gutter));
  margin-right: calc(-1 * var(--services-gutter));
}

.service-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(14px, 3vw, 40px);
  border-bottom: 1px solid rgba(20, 17, 15, 0.14);
  padding: clamp(6px, 1.4vw, 18px) var(--services-gutter);
  background: #ffffff;
  transition: background 0.45s ease, color 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1);
  cursor: pointer;
}

.service-item:hover {
  background: #14110f;
  color: #faf9f7;
}

.service-item.dimmed {
  background: #ffffff;
  color: rgba(20, 17, 15, 0.42);
}

.service-image {
  flex: none;
  width: clamp(84px, 9vw, 120px);
  height: clamp(58px, 6.5vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.14);
  background: #f0f0f0;
}

.service-item:hover .service-image {
  border: 1px solid rgba(250, 249, 247, 0.28);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.06);
}

.service-info {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(18px, 2.4vw, 26px) 0;
}

.service-name {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.1vw, 26px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-rule {
  flex: 1;
  min-width: 12px;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(20, 17, 15, 0.28) 0 2px, transparent 2px 6px);
}

.service-item:hover .service-rule {
  background: repeating-linear-gradient(to right, rgba(250, 249, 247, 0.4) 0 2px, transparent 2px 6px);
}

.service-price {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.1vw, 26px);
  white-space: nowrap;
  color: #1f6c93;
}

.service-item:hover .service-price {
  color: #9ed8f5;
}

.services-note {
  margin: 26px 0 0;
  font-size: 13.5px;
  color: rgba(20, 17, 15, 0.45);
}

/* Story Section */
.story {
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.story-content p {
  margin: 0 0 22px;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.75;
  color: rgba(20, 17, 15, 0.78);
}

.story-highlight {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #14110f;
}

.story-quote {
  margin: 26px 0;
  padding-left: 22px;
  border-left: 2px solid #1f6c93;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.story-quote span {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: 0.04em;
  color: #14110f;
}

.story-tagline {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1f6c93;
}

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1f6c93;
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 17, 15, 0.55);
}

.story-image {
  position: sticky;
  top: 40px;
  margin: 0 0 0 auto;
  width: 86%;
  max-width: 420px;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  background: #0a0a0a;
  aspect-ratio: 1 / 1;
}

.story-image figcaption {
  margin-top: 12px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 17, 15, 0.55);
}

/* Barbers Section */
.barbers {
  position: relative;
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 72px) clamp(60px, 7vw, 110px);
  background: #000;
  color: #ffffff;
  overflow: hidden;
}

.barbers-title {
  font-family: 'Yellowtail', 'Caveat', cursive;
  font-size: clamp(62px, 10vw, 140px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(158, 216, 245, 0.55), 0 0 60px rgba(158, 216, 245, 0.38), 0 0 130px rgba(158, 216, 245, 0.22);
  margin-bottom: clamp(28px, 3.4vw, 46px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(158, 216, 245, 0.45);
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 262px), 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.barber-card {
  display: flex;
  flex-direction: column;
}

.barber-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85), 0 0 46px rgba(158, 216, 245, 0.16);
}

.barber-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: contrast(1.06) saturate(0.94);
}

.barber-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.04) 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.barber-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 10;
}

.barber-nickname {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ed8f5;
  margin-bottom: 5px;
}

.barber-name {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.barber-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.barber-tagline {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ed8f5;
}

.barber-details p {
  margin: 0;
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.8);
}

.barber-cta {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #9ed8f5;
  color: #9ed8f5;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.barber-cta:hover {
  background: #9ed8f5;
  color: #100e0d;
}

/* Gallery Section */
.gallery {
  padding: clamp(64px, 8vw, 120px) 0 clamp(56px, 7vw, 100px);
  background: #121110;
  color: #ffffff;
  border-top: 1px solid rgba(20, 17, 15, 0.08);
  overflow: hidden;
}

.gallery .section-container {
  padding: 0 clamp(24px, 5vw, 72px);
}

.gallery h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.02;
  color: #ffffff;
}

.gallery > .section-container > p {
  margin: 0 0 clamp(34px, 4.5vw, 54px);
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(250, 249, 247, 0.62);
}

.gallery-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  max-width: 1360px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: clamp(26px, 3.4vw, 38px) clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(250, 249, 247, 0.16);
  border-bottom: 1px solid rgba(250, 249, 247, 0.16);
}

.counter {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.counter-value {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #9ed8f5;
}

.counter-label {
  font-size: clamp(12px, 1.1vw, 13.5px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.6);
}

.gallery-carousel {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 72px);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.gallery-row {
  display: flex;
  width: max-content;
  gap: clamp(12px, 1.4vw, 18px);
  animation: marqueeL 56s linear infinite;
}

.gallery-row:nth-child(odd) {
  animation: marqueeR 64s linear infinite;
}

.gallery-item {
  position: relative;
  flex: none;
  width: clamp(200px, 24vw, 320px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #1d1a18;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

/* Reviews Section */
.reviews {
  padding: clamp(48px, 6vw, 86px) 0 clamp(56px, 7vw, 100px);
  background: #000;
  color: #faf9f7;
  overflow: hidden;
}

.reviews .section-container {
  padding: 0 clamp(24px, 5vw, 48px);
}

.reviews-image {
  max-width: 1765px;
  margin: 0 auto clamp(24px, 3vw, 38px);
}

.reviews-image img {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-cta {
  max-width: 1360px;
  margin: clamp(24px, 3vw, 38px) auto 0;
}

.reviews-cta a {
  color: #faf9f7;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 5px;
  background-image: linear-gradient(#9ed8f5, #9ed8f5);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 0.32s ease;
}

.reviews-cta a:hover {
  background-size: 0% 1px;
  color: #9ed8f5;
}

/* Awards */
.awards {
  position: relative;
  max-width: 1360px;
  margin: clamp(48px, 7vw, 92px) auto 0;
  padding-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid rgba(250, 249, 247, 0.16);
  text-align: center;
}

/* Confetti burst, drawn over the plaques but never blocking clicks */
.awards-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.awards-title {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.awards-desc {
  max-width: 54ch;
  margin: 12px auto 0;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(250, 249, 247, 0.7);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 52px);
  justify-items: center;
  max-width: 820px;
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.award {
  margin: 0;
  width: 100%;
  max-width: 360px;
}

.award img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s cubic-bezier(0.34, 1.15, 0.64, 1);
}

.award:hover img {
  transform: translateY(-6px);
}

.award figcaption {
  margin-top: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.62);
}

@media (max-width: 560px) {
  .awards-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .award img {
    transition: none;
  }
  .award:hover img {
    transform: none;
  }
}

/* FAQ Section */
.faq {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 48px;
}

.faq-sidebar h2 {
  margin: 12px 0 18px;
  line-height: 0.94;
}

.faq-sidebar p {
  margin: 0 0 26px;
  max-width: 320px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
  color: rgba(20, 17, 15, 0.6);
}

.faq-sidebar .phone-link {
  color: #1f6c93;
  text-shadow: none;
  font-size: 15px;
  letter-spacing: 0.12em;
  background-image: linear-gradient(#1f6c93, #1f6c93);
  background-position: 0 100%;
  background-size: 100% 1px;
}

.faq-sidebar .phone-link:hover {
  color: #14110f;
  background-size: 0% 1px;
}

.faq-item {
  border-top: 1px solid rgba(20, 17, 15, 0.14);
}

.faq-question {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 26px);
  padding: clamp(20px, 2.4vw, 26px) 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.faq-question:hover {
  opacity: 0.62;
}

.faq-num {
  flex: none;
  width: 28px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #1f6c93;
}

.faq-q {
  flex: 1;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-toggle {
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-toggle.open {
  transform: rotate(180deg);
}

.faq-toggle::before {
  content: '';
  position: absolute;
  top: 12.5px;
  left: 0;
  width: 26px;
  height: 1.5px;
  background: #1f6c93;
}

.faq-toggle::after {
  content: '';
  position: absolute;
  left: 12.5px;
  top: 0;
  width: 1.5px;
  height: 26px;
  background: #1f6c93;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.faq-toggle.open::after {
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
  opacity: 1;
}

.faq-a {
  margin: 0;
  padding: 0 0 26px 52px;
  max-width: 640px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  color: rgba(20, 17, 15, 0.7);
}

/* Visit Section */
.visit {
  background: #04121b;
  color: #faf9f7;
  overflow: hidden;
  position: relative;
}

.visit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 12% 10%, rgba(158, 216, 245, 0.22), transparent 68%),
              radial-gradient(ellipse 60% 70% at 92% 80%, rgba(74, 163, 207, 0.18), transparent 70%);
  pointer-events: none;
}

.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.visit-info h2 {
  margin: 12px 0 0;
  line-height: 0.98;
  color: #ffffff;
}

.visit-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(20px, 2.6vw, 30px);
}

.visit-address p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(250, 249, 247, 0.78);
}

.visit-address a {
  align-self: flex-start;
  color: #9ed8f5;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.visit-address a:hover {
  color: #fff;
}

.hours-box {
  padding: clamp(20px, 2.4vw, 28px);
  background: rgba(158, 216, 245, 0.07);
  border: 1px solid rgba(158, 216, 245, 0.28);
}

.hours-label {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ed8f5;
}

.hours-list {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid rgba(158, 216, 245, 0.16);
}

.hour-day {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.62);
}

.hour-time {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.map-container {
  position: relative;
  height: clamp(300px, 42vw, 520px);
  border-top: 1px solid rgba(158, 216, 245, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: clamp(72px, 9vw, 130px) clamp(24px, 5vw, 72px);
  background: #121110;
  color: #ffffff;
  text-align: center;
}

.cta-section p {
  margin: 0 auto 36px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(250, 249, 247, 0.65);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  justify-content: center;
}

/* Footer */
.footer {
  padding: 44px clamp(24px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: stretch;
  text-align: left;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 17, 15, 0.1);
}

.footer-brand {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #14110f;
}

.footer-address {
  font-size: 14px;
  color: rgba(20, 17, 15, 0.55);
  text-align: center;
}

.footer-hours {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f6c93;
  text-align: right;
}

.footer-bottom {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 17, 15, 0.45);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(46px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(38px) rotate(5deg) scale(0.88);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes titleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sheen {
  0%, 18% {
    transform: translateX(-140%) skewX(-14deg);
  }
  100% {
    transform: translateX(300%) skewX(-14deg);
  }
}

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

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

/* Responsive Design */
@media (max-width: 860px) {
  .gallery-carousel {
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Stack the hero on phones so the 16:9 photo is never cropped */
  .hero {
    min-height: auto;
    justify-content: flex-start;
    background: #0a0908;
    padding: 82px 0 0;
  }

  .hero-bg {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    padding: clamp(32px, 9vw, 48px) clamp(24px, 6vw, 32px) clamp(24px, 6vw, 32px);
  }

  .hero-strip {
    position: static;
    padding: 0 clamp(16px, 4vw, 24px) 28px;
  }

  .strip-content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rating-box,
  .location-box {
    font-size: 13px;
    flex-wrap: wrap;
  }

  .stars {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .hours-flip {
    font-size: 13px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-address {
    text-align: center;
  }

  .footer-hours {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
