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

/* ─── Clash Display from Fontshare ──────────────────────────────────── */
@font-face {
  font-family: 'Clash Display';
  src: url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap') format('woff2');
}

/* ─── CSS Variables (Brand Colors) ──────────────────────────────────── */
:root {
  /* Brand palette */
  --gold: #be9f56;
  --gold-light: #d4bc85;
  --gold-dark: #9a7d3a;
  --graphite: #40444e;
  --graphite-dark: #2a2d35;
  --mint: #bfd2cf;
  --mint-light: #ddecea;
  --mint-dark: #98b5b1;

  /* Surface colors */
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f5f2ee;
  --warm-grey: #ede9e4;

  /* Text */
  --text-dark: var(--graphite);
  --text-mid: #6b6f78;
  --text-light: #9ea3ad;

  /* UI */
  --shadow: 0 4px 24px rgba(64, 68, 78, .10);
  --shadow-lg: 0 12px 48px rgba(64, 68, 78, .14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--off-white);
  color: var(--graphite);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

/* ─── Typography ─────────────────────────────────────────── */
h1 {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

p {
  font-size: .94rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(190, 159, 86, .35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(190, 159, 86, .45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .65);
}

.about-image-wrap img,
.team-intro-img img {
  filter: brightness(1.04) contrast(1.02) saturate(1.08);
  transition: filter var(--transition);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* background: url('hero_salon.jpg') center/cover no-repeat; */
  background: url('hero_new.png') center/cover no-repeat;
  filter: brightness(0.95) saturate(1.1);
}

/* ─── Technologies ───────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.tech-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.tech-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #fdfdfd;
}

.tech-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.6s var(--ease);
}

.tech-card:hover .tech-img-wrap img {
  transform: scale(1.05);
}

.tech-info {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tech-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--graphite);
}

.tech-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.tech-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.btn-text {
  background: none;
  border: none;
  color: var(--mint-dark);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition), transform var(--transition);
}

.btn-text:hover {
  color: var(--graphite);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Modal ────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--mint-light);
}

.modal-body {
  padding: 3rem;
}

.modal-header-info {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.modal-header-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--graphite);
  margin-bottom: 0.5rem;
}

.modal-sections {
  display: grid;
  gap: 2rem;
}

.modal-section h4 {
  color: var(--mint-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.modal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey);
}

.modal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
}

@media (max-width: 600px) {
  .modal-body {
    padding: 2rem;
  }

  .modal-header-info h2 {
    font-size: 1.6rem;
  }
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--graphite-dark);
  transform: translateY(-2px);
}

.btn-mint {
  background: var(--mint);
  color: var(--graphite);
}

.btn-mint:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(64, 68, 78, .08);
  padding: .8rem 2.5rem;
}

.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  /* white on transparent hero */
  transition: filter var(--transition), height var(--transition);
}

#navbar.scrolled .nav-logo img {
  filter: none;
  /* brand colors on white bg */
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -.25rem;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: width var(--transition);
}

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

#navbar.scrolled .nav-links a {
  color: var(--text-mid);
}

#navbar.scrolled .nav-links a::after {
  background: var(--gold);
}

.nav-links a:hover {
  color: var(--white);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  margin-left: 1rem;
}

.nav-cta .btn {
  padding: .6rem 1.4rem;
  font-size: .74rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .hamburger span {
  background: var(--graphite);
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* background: url('hero_salon.jpg') center/cover no-repeat; */
  background: url('hero_new.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 43, 50, .72) 0%, rgba(40, 43, 50, .42) 55%, rgba(190, 159, 86, .15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 820px;
}

.hero-content .label {
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto 2.2rem;
}

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

.hero-badge {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.4rem 3rem;
  box-shadow: var(--shadow-lg);
}

.hero-badge-item {
  text-align: center;
}

.hero-badge-item .num {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.hero-badge-item .txt {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-hint {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-hint::after {
  content: '↓';
  display: block;
  font-size: 1.1rem;
  margin-top: .4rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ─── Section layout ─────────────────────────────────────── */
section {
  padding: 5rem 2rem;
}

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

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

.section-header .label {
  margin-bottom: .8rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

/* ─── About ──────────────────────────────────────────────── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  aspect-ratio: 4/5;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-badge .big {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
}

.about-badge .sm {
  font-size: .78rem;
  letter-spacing: .08em;
  opacity: .9;
}

.about-text .label {
  margin-bottom: .8rem;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--mint-light);
}

.value-icon {
  font-size: 1.3rem;
}

.value-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--graphite);
}

.value-desc {
  font-size: .78rem;
  color: var(--text-mid);
}

/* ─── Services ───────────────────────────────────────────── */
#services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: .88rem;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  background: var(--mint-light);
  color: var(--graphite);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  border-radius: 50px;
}

/* ─── Team ───────────────────────────────────────────────── */
#team {
  background: var(--mint-light);
}

.team-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.team-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-intro-img img {
  aspect-ratio: 4/3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .85rem;
}

.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.team-name {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--graphite);
}

.team-role {
  font-size: .72rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.team-spec {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.team-badge {
  display: inline-block;
  margin-top: .75rem;
  background: var(--cream);
  color: var(--graphite-dark);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: 50px;
}

.team-card.friday {
  border: 1.5px solid var(--gold-light);
}

.team-card.friday .team-badge {
  background: rgba(190, 159, 86, .15);
  color: var(--gold-dark);
}

/* ─── Booking CTA ────────────────────────────────────────── */
#booking {
  background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--graphite) 100%);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 159, 86, .15) 0%, transparent 70%);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-text .label {
  color: var(--gold-light);
  margin-bottom: .8rem;
}

.booking-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-text p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.8rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: var(--transition);
}

.booking-feat:hover {
  background: rgba(255, 255, 255, .1);
}

.booking-feat-icon {
  font-size: 1.5rem;
}

.booking-feat-text .ft {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

.booking-feat-text .fd {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* ─── Reviews ────────────────────────────────────────────── */
#reviews {
  background: var(--white);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1rem;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.rating-big {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-num {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--graphite);
}

.rating-info .stars {
  margin-bottom: .25rem;
}

.rating-sub {
  font-size: .8rem;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-weight: 700;
  font-size: .9rem;
}

.review-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--graphite);
}

.review-date {
  font-size: .75rem;
  color: var(--text-light);
}

.review-text {
  font-size: .88rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
}

/* ─── Contact ────────────────────────────────────────────── */
#contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: .8rem;
}

.contact-info>p {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 1.4rem;
}

.contact-item-title {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .2rem;
}

.contact-item-text {
  font-size: .9rem;
  color: var(--graphite);
}

.contact-item-text a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.8rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn.fb {
  background: #1877f2;
  color: var(--white);
}

.social-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: .88;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--graphite-dark);
  color: rgba(255, 255, 255, .5);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1) opacity(.85);
}

footer p {
  font-size: .8rem;
}

footer a {
  color: var(--gold-light);
}

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

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ─── Animations ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in-delay-1 {
  transition-delay: .12s;
}

.fade-in-delay-2 {
  transition-delay: .24s;
}

.fade-in-delay-3 {
  transition-delay: .36s;
}

/* ─── Mobile nav ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    padding: 2rem;
    background: var(--white);
    opacity: 1;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform var(--transition);
    box-shadow: none;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--graphite) !important;
    font-size: 1rem;
    text-transform: uppercase;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-cta .btn {
    background: var(--gold);
    color: var(--white);
  }

  .about-grid,
  .team-intro,
  .booking-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    right: 1rem;
  }

  .hero-badge {
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
  }

  .reviews-header {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 1.2rem;
  }

  .hero-badge {
    display: none;
  }

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

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

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

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