/* ============================================================
   SALON MARNI — Complete Stylesheet
   Newport's Best Hairdresser
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  --sage: #7a9470;
  --sage-light: #a3b89e;
  --sage-dark: #5a7056;
  --cream: #faf8f2;
  --cream-dark: #f0ede3;
  --charcoal: #1c1c1c;
  --charcoal-mid: #2e2e2e;
  --charcoal-light: #3d3d3d;
  --rose: #c4856a;
  --rose-light: #d4a090;
  --warm-white: #fffdf9;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --gold: #c9a96e;
  --gold-light: #e2c898;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --border-radius: 2px;
  --border-radius-sm: 1px;

  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-sm: 60px;
}

/* ============================================================
   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);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */

#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

#password-gate.hidden {
  display: none;
}

.gate-inner {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 56px 48px 48px;
  text-align: center;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.gate-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.gate-logo span {
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 0 0;
  line-height: 44px;
  font-size: 1.8rem;
  color: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

.gate-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.gate-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.gate-input-wrap {
  position: relative;
  margin-bottom: 20px;
}

.gate-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition-base);
  letter-spacing: 0.05em;
}

.gate-input:focus {
  border-color: var(--gold);
}

.gate-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.gate-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

.gate-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.gate-error {
  color: #e07070;
  font-size: 0.8rem;
  margin-top: 12px;
  min-height: 20px;
  font-weight: 400;
}

.gate-notice {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  margin-top: 28px;
  letter-spacing: 0.05em;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 9px 0;
  text-align: center;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-base);
}

.topbar a:hover {
  color: var(--gold);
}

.topbar-divider {
  opacity: 0.3;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--charcoal);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.12em;
}

.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-book-btn {
  background: var(--charcoal);
  color: var(--warm-white) !important;
  padding: 11px 24px;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  transition: background var(--transition-base) !important;
  border: none;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  background: var(--sage-dark) !important;
  color: var(--warm-white) !important;
}

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px 32px;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition-base);
}

.nav-mobile-menu a:hover {
  color: var(--charcoal);
}

.nav-mobile-menu .nav-book-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  background: var(--charcoal) !important;
  color: var(--warm-white) !important;
  padding: 14px 24px !important;
  border: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  background: var(--charcoal);
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122,148,112,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,133,106,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(201,169,110,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.025) 50%,
    transparent 60%
  );
  animation: shimmerSweep 6s ease-in-out infinite 2s;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Sparkle Particles */
.sparkle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: sparkleFade var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

.sparkle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.6) 0%, transparent 70%);
}

@keyframes sparkleFade {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  30% { opacity: 1; transform: scale(1) translateY(-8px); }
  60% { opacity: 0.6; transform: scale(0.8) translateY(-16px); }
  80% { opacity: 0; transform: scale(0.3) translateY(-24px); }
}

.sparkle-cross {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  animation: sparkleGlow var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}

.sparkle-cross::before,
.sparkle-cross::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  border-radius: 2px;
}

.sparkle-cross::before {
  width: 1.5px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.sparkle-cross::after {
  width: 100%;
  height: 1.5px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes sparkleGlow {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  25% { opacity: 0.9; transform: scale(1) rotate(45deg); }
  75% { opacity: 0.4; transform: scale(0.6) rotate(90deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 36px;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122,148,112,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn-dark:hover {
  background: var(--charcoal-mid);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid rgba(0,0,0,0.25);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.btn-outline-dark:hover {
  border-color: var(--charcoal);
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  font-weight: 400;
}

.hero-scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */

.section {
  padding: var(--section-pad) 32px;
}

.section-sm {
  padding: var(--section-pad-sm) 32px;
}

.section-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

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

.section-sage {
  background: var(--sage);
  color: var(--warm-white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-label-light {
  color: rgba(255,255,255,0.45);
}

.section-label-light::before {
  background: rgba(255,255,255,0.45);
}

.section-label-rose {
  color: var(--rose);
}

.section-label-rose::before {
  background: var(--rose);
}

h2.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

h2.section-heading em {
  font-style: italic;
  color: var(--sage);
}

h2.section-heading-light {
  color: var(--warm-white);
}

h2.section-heading-light em {
  color: var(--gold-light);
}

.section-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

.section-intro-light {
  color: rgba(255,255,255,0.65);
}

.section-header {
  margin-bottom: 56px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-label {
  justify-content: center;
}

.section-header-center .section-label::before {
  display: none;
}

.section-header-center .section-intro {
  margin: 0 auto;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.service-card {
  background: var(--warm-white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-base);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width var(--transition-slow);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  background: var(--cream);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: block;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-base), color var(--transition-base);
}

.service-link:hover {
  color: var(--sage);
  gap: 14px;
}

.service-link::after {
  content: '→';
  font-style: normal;
}

/* Services Page Detailed */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-item-visual {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.service-item-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-item-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-price-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 7px 14px;
  margin-bottom: 28px;
  opacity: 0.8;
}

.service-features {
  margin-bottom: 32px;
}

.service-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* Gradient visuals */
.grad-cut {
  background: linear-gradient(135deg, #2c2416 0%, #4a3826 40%, #6b4c32 70%, #8b6348 100%);
}

.grad-colour {
  background: linear-gradient(135deg, #1a1210 0%, #3d2318 40%, #6b3520 60%, #9a6240 80%, #c4956a 100%);
}

.grad-highlights {
  background: linear-gradient(135deg, #2a2018 0%, #5c4530 35%, #9a7845 55%, #c4a460 75%, #e8c890 100%);
}

.grad-extensions {
  background: linear-gradient(135deg, #1e1810 0%, #3d3020 40%, #6b5535 65%, #8b7250 85%, #a89070 100%);
}

.grad-keratin {
  background: linear-gradient(135deg, #1c1a18 0%, #3a3428 40%, #5c5240 60%, #8a7a60 80%, #b0a080 100%);
}

.grad-occasion {
  background: linear-gradient(135deg, #1a1218 0%, #3a2430 50%, #6a3850 70%, #9a6080 90%, #c49ab0 100%);
}

/* ============================================================
   ABOUT TEASER / ABOUT PAGE
   ============================================================ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #2c2218 0%, #5a3d28 35%, #8a6040 65%, #b8906a 100%);
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent 60%, rgba(0,0,0,0.3) 100%);
}

.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201,169,110,0.3);
  z-index: 1;
}

.about-text .section-label {
  margin-bottom: 14px;
}

.about-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  border-left: 2px solid var(--sage);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.5;
}

.about-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.team-photo {
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.team-photo-grad-1 {
  background: linear-gradient(160deg, #3d2e1e 0%, #7a5538 50%, #a87850 100%);
}

.team-photo-grad-2 {
  background: linear-gradient(160deg, #1e2a20 0%, #486048 50%, #7a9070 100%);
}

.team-photo-grad-3 {
  background: linear-gradient(160deg, #2a1e28 0%, #604860 50%, #9a8090 100%);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.value-card {
  background: var(--cream);
  padding: 48px 44px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  min-height: 280px;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(28,28,28,0.45);
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery gradients */
.gg-1 { background: linear-gradient(145deg, #1a1208 0%, #3d2c10 30%, #7a5828 55%, #b08840 75%, #d4b060 100%); }
.gg-2 { background: linear-gradient(145deg, #2a1808 0%, #6b3818 40%, #a86038 65%, #c88858 100%); }
.gg-3 { background: linear-gradient(145deg, #280e0a 0%, #5c2018 40%, #8c4838 70%, #c07860 100%); }
.gg-4 { background: linear-gradient(145deg, #1c1006 0%, #483018 40%, #8a6835 60%, #c4a860 80%, #e8d890 100%); }
.gg-5 { background: linear-gradient(145deg, #0e1208 0%, #283020 40%, #5a6848 65%, #8a9870 90%); }
.gg-6 { background: linear-gradient(145deg, #1a1214 0%, #402830 50%, #7a5060 75%, #b08888 100%); }
.gg-7 { background: linear-gradient(145deg, #20160a 0%, #4a3518 40%, #887050 65%, #b89a78 100%); }
.gg-8 { background: linear-gradient(145deg, #160e0a 0%, #382018 45%, #785040 70%, #a88070 100%); }
.gg-9 { background: linear-gradient(145deg, #0c0e10 0%, #1e2c30 40%, #406070 65%, #7aa0b0 100%); }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-big-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
}

.reviews-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--gold);
  font-size: 1.1rem;
}

.star-half {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.6;
}

.reviews-count {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.reviews-platform {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 32px;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.review-card .stars {
  margin-bottom: 18px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 24px;
}

.reviewer-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.reviewer-meta {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.review-verified {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-verified::before {
  content: '✓';
  font-style: normal;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--sage);
  padding: 90px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: var(--warm-white);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.cta-section .btn-secondary {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.cta-section .btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--warm-white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-left {
  background: var(--charcoal);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 60%, rgba(122,148,112,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 40px;
  position: relative;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
  position: relative;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}

.contact-detail-body {
  flex: 1;
}

.contact-detail-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--warm-white);
  transition: color var(--transition-base);
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  gap: 12px;
}

.contact-hours-row.today {
  color: var(--gold);
}

.contact-right {
  background: var(--cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-right .form-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ============================================================
   FORM STYLES
   ============================================================ */

.form-group {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition-base);
  appearance: none;
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

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

.form-submit {
  width: 100%;
  padding: 17px 24px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.form-submit:hover::after {
  transform: translateX(100%);
}

.form-submit:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: rgba(122,148,112,0.12);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  padding: 18px 22px;
  font-size: 0.88rem;
  font-weight: 400;
  margin-top: 16px;
}

.form-success.visible {
  display: block;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--charcoal);
  padding: 100px 32px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(122,148,112,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 80px 32px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}

.footer-brand-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-hours {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
}

.footer-hours strong {
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
}

.footer-col address a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-base);
}

.footer-col address a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 300;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-bottom-right a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-base);
}

.footer-bottom-right a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SPARKLE HOVER EFFECTS (general)
   ============================================================ */

.sparkle-hover {
  position: relative;
  overflow: visible;
}

.sparkle-hover::before {
  content: '✦';
  position: absolute;
  top: -8px;
  left: -12px;
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.3s ease;
  pointer-events: none;
}

.sparkle-hover::after {
  content: '✦';
  position: absolute;
  bottom: -8px;
  right: -12px;
  font-size: 0.45rem;
  color: var(--sage);
  opacity: 0;
  transition: opacity 0.2s ease 0.05s, transform 0.3s ease;
  pointer-events: none;
}

.sparkle-hover:hover::before,
.sparkle-hover:hover::after {
  opacity: 1;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: rgba(255,255,255,0.65);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-rose { color: var(--rose); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--border-radius);
}

.badge-sage {
  background: rgba(122,148,112,0.12);
  color: var(--sage-dark);
  border: 1px solid rgba(122,148,112,0.2);
}

.badge-gold {
  background: rgba(201,169,110,0.12);
  color: #8a6a20;
  border: 1px solid rgba(201,169,110,0.25);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
    --section-pad-sm: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split {
    gap: 48px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) {
    direction: ltr;
  }

  .service-item-visual {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --section-pad-sm: 40px;
  }

  .section {
    padding: var(--section-pad) 24px;
  }

  .section-sm {
    padding: var(--section-pad-sm) 24px;
  }

  .navbar-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar {
    position: sticky;
    top: 0;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    aspect-ratio: 16/9;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 56px 24px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .topbar-inner {
    padding: 0 20px;
    gap: 16px;
    font-size: 0.67rem;
  }

  .page-hero {
    padding: 70px 24px 60px;
  }

  .service-item-content {
    padding: 40px 24px;
  }

  .cta-section {
    padding: 70px 24px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gate-inner {
    padding: 40px 28px 36px;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
