/* ======================================== */
/* GLOBAL VARIABLES & RESET */
/* ======================================== */
:root {
  --color-primary: #464138;
  --color-accent: #C7BB9F;
  --color-accent-mid: #89816F;
  --color-dark: #1E1E1E;
  --color-body: #222222;
  --color-white: #ffffff;
  --color-off-white: #f7f5f1;
  --color-muted: #6b655c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Helvetica, sans-serif;
  --header-h: 120px;
  --topbar-h: 40px;
  --container: 1300px;
  --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--color-accent-mid);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1280px) {
  .container {
    width: 1240px;
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1340px) {
  .container {
    width: 1300px;
  }
}

/* ======================================== */
/* TYPOGRAPHY BASE */
/* ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-dark);
}

p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: var(--color-body);
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 16px 32px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: var(--color-accent-mid);
  border-color: var(--color-accent-mid);
  color: var(--color-white);
}

.btn-hero {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--color-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  margin-top: 8px;
  border-radius: 8px;
}

.btn-hero:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

.btn-book {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--color-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  padding: 16px 32px;
  align-self: flex-start;
  border-radius: 8px;
}

.btn-book:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

/* ======================================== */
/* FADE-IN ANIMATIONS */
/* ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
  transition-delay: 0.15s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================== */
/* HEADER SECTION */
/* ======================================== */
.top-bar {
  width: 100%;
  height: var(--topbar-h);
  background: var(--color-primary);
  color: var(--color-accent);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-accent);
}

.top-bar-item:hover {
  color: var(--color-white);
}

.top-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  transition: background 0.25s ease, color 0.25s ease;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

.main-header {
  width: 100%;
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-dark);
  transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 96px;
  width: auto;
  max-height: 96px;
  transition: height 0.3s ease, max-height 0.3s ease;
}

.main-header.scrolled .logo {
  height: 72px;
  max-height: 72px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 12px 14px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-premium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Our Services opens a submenu — skip the underline so hover stays clean */
.has-dropdown > .nav-link::after {
  display: none;
}

.has-dropdown > .nav-link:hover,
.has-dropdown:hover > .nav-link {
  color: var(--color-white);
}

.dropdown-caret {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  color: inherit;
  margin-left: 4px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-dark);
  border-top: 2px solid var(--color-accent);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1001;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 12px 20px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--color-white);
  background: rgba(199, 187, 159, 0.1);
}

/* ======================================== */
/* PAGE TITLE BAR (SUB-PAGES) */
/* ======================================== */
.page-title-bar {
  width: 100%;
  position: relative;
  padding: 40px 0 36px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(30, 30, 30, 0.35) 0%, transparent 55%),
    linear-gradient(90deg, #3a352e 0%, var(--color-primary) 40%, #524a40 100%);
  overflow: hidden;
}

.page-title-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 187, 159, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 187, 159, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  pointer-events: none;
}

.page-title-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(199, 187, 159, 0.25) 0%,
    var(--color-accent) 22%,
    #f0e8d4 50%,
    var(--color-accent) 78%,
    rgba(199, 187, 159, 0.25) 100%
  );
  pointer-events: none;
}

.page-title-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.page-title-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}

.page-title-rule {
  width: 56px;
  height: 2px;
  background: var(--color-accent);
  margin: 18px auto 16px;
}

.page-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: rgba(247, 245, 241, 0.88);
  margin: 0;
}

/* ======================================== */
/* ABOUT PAGE SECTIONS */
/* ======================================== */
.section-about-welcome {
  width: 100%;
  padding: 90px 0;
  background: var(--color-white);
}

.section-about-blowout {
  width: 100%;
  padding: 90px 0;
  background: var(--color-off-white);
}

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

.about-grid-reverse .about-media {
  order: 0;
}

.about-grid-reverse .about-copy {
  order: 1;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0;
}

.about-copy p {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.8;
  color: var(--color-body);
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.about-copy.fade-in-up {
  transition-delay: 0.15s;
}

.about-grid-reverse .about-copy.fade-in-up {
  transition-delay: 0.3s;
}

.about-grid-reverse .about-media.fade-in-up {
  transition-delay: 0.15s;
}

/* ======================================== */
/* OUR TEAM PAGE */
/* ======================================== */
.section-team {
  width: 100%;
  padding: 80px 0 90px;
  background: var(--color-off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(199, 187, 159, 0.35);
  border-radius: 8px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px rgba(30, 30, 30, 0.08);
  transform: translateY(-4px);
}

.team-card-featured {
  border-color: var(--color-accent);
  background:
    linear-gradient(180deg, rgba(199, 187, 159, 0.12) 0%, transparent 40%),
    var(--color-white);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
}

.team-monogram {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-accent);
  background: var(--color-dark);
  border: 1px solid rgba(199, 187, 159, 0.45);
}

.team-card-featured .team-monogram {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.team-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0 0 6px;
}

.team-role {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--color-accent-mid);
  margin: 0;
}

.team-card-rule {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 18px auto 18px;
}

.team-bio {
  flex: 1;
  text-align: left;
}

.team-bio p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 0.9em;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

.team-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(199, 187, 159, 0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-contact a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--color-primary);
  word-break: break-word;
}

.team-contact a:hover {
  color: var(--color-accent-mid);
}

/* ======================================== */
/* OUR WORK PAGE */
/* ======================================== */
.section-work-gallery {
  width: 100%;
  padding: 80px 0 70px;
  background: var(--color-white);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark);
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.08);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s ease;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-premium);
}

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.work-item-zoom {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  background: rgba(30, 30, 30, 0.55);
  color: var(--color-accent);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 42px;
  text-align: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(30, 30, 30, 0.14);
}

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

.work-item:hover .work-item-overlay {
  background: rgba(30, 30, 30, 0.28);
}

.work-item:hover .work-item-zoom {
  opacity: 1;
  transform: scale(1);
}

.section-instagram-cta {
  width: 100%;
  padding: 70px 0;
  background:
    linear-gradient(160deg, rgba(30, 30, 30, 0.2) 0%, transparent 50%),
    linear-gradient(90deg, #3a352e 0%, var(--color-primary) 45%, #524a40 100%);
  text-align: center;
}

.instagram-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.instagram-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.instagram-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.instagram-copy {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: rgba(247, 245, 241, 0.88);
  margin: 0 0 28px;
}

.btn-instagram {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--color-dark);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  padding: 16px 32px;
}

.btn-instagram:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 15, 15, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 80px 60px;
}

.lightbox-stage {
  max-width: min(920px, 100%);
  max-height: 100%;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199, 187, 159, 0.45);
  background: rgba(30, 30, 30, 0.55);
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lightbox-nav:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: rgba(247, 245, 241, 0.7);
  margin: 0;
}

/* ======================================== */
/* SALON SERVICES PAGE */
/* ======================================== */
.section-services {
  width: 100%;
  padding: 80px 0 90px;
  background: var(--color-off-white);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.services-main,
.services-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-group {
  background: var(--color-white);
  border: 1px solid rgba(199, 187, 159, 0.35);
  border-radius: 8px;
  padding: 32px 30px 28px;
}

.service-group-lashes {
  text-align: center;
}

.lashes-graphic {
  width: 160px;
  max-width: 55%;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}

.service-group-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.service-group-lashes .service-group-title {
  text-align: center;
}

.service-group-rule {
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  margin: 14px 0 22px;
}

.service-group-lashes .service-group-rule {
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list > li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(199, 187, 159, 0.22);
}

.service-list > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-list > li:first-child {
  padding-top: 0;
}

.service-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.45;
  color: var(--color-body);
  text-align: left;
}

.service-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--color-primary);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.service-item-stacked {
  display: block !important;
  text-align: left;
}

.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 8px 0 0;
  text-align: left;
}

.service-note {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-muted);
  margin: 4px 0 14px;
  text-align: left;
}

.services-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08);
}

.services-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.dropdown-menu a.dropdown-active {
  color: var(--color-white);
  background: rgba(199, 187, 159, 0.12);
}

/* ======================================== */
/* FACIAL SERVICES PAGE */
/* ======================================== */
.facial-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.facial-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(199, 187, 159, 0.22);
  text-align: left;
}

.facial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.facial-item:first-of-type {
  padding-top: 0;
}

.facial-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.facial-item-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0;
  text-align: left;
}

.facial-item-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.facial-item-desc {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 8px;
}

.facial-item-extra {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-accent-mid);
  margin: 0 0 6px;
}

.facial-item-rec {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0;
}

.section-facial .services-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ======================================== */
/* WEDDINGS & SPECIAL EVENTS PAGE */
/* ======================================== */
.section-weddings {
  width: 100%;
  padding: 70px 0 40px;
  background: var(--color-off-white);
}

.weddings-intro {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 36px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.weddings-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.weddings-services-grid .fade-in-up:nth-child(1) {
  transition-delay: 0s;
}

.weddings-services-grid .fade-in-up:nth-child(2) {
  transition-delay: 0.15s;
}

.weddings-services-grid .fade-in-up:nth-child(3) {
  transition-delay: 0.3s;
}

.weddings-cta {
  background: var(--color-white);
  border: 1px solid rgba(199, 187, 159, 0.35);
  border-radius: 8px;
  padding: 28px 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.weddings-reserve {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 14px;
}

.weddings-reserve a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--color-primary);
}

.weddings-reserve a:hover {
  color: var(--color-accent-mid);
}

.weddings-note {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 10px;
}

.weddings-travel {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--color-body);
  margin: 0;
}

.weddings-travel strong {
  font-weight: 600;
  color: var(--color-primary);
}

.section-weddings-gallery {
  width: 100%;
  padding: 20px 0 90px;
  background: var(--color-off-white);
}

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

.weddings-gallery .wedding-item.fade-in-up:nth-child(3n + 1) {
  transition-delay: 0s;
}

.weddings-gallery .wedding-item.fade-in-up:nth-child(3n + 2) {
  transition-delay: 0.15s;
}

.weddings-gallery .wedding-item.fade-in-up:nth-child(3n + 3) {
  transition-delay: 0.3s;
}

.wedding-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark);
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.08);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.wedding-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-premium);
}

.wedding-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(30, 30, 30, 0.14);
}

.wedding-item:hover img {
  transform: scale(1.05);
}

/* ======================================== */
/* CONTACT PAGE */
/* ======================================== */
.section-contact-map {
  width: 100%;
  background: var(--color-dark);
  line-height: 0;
}

.contact-map-embed {
  width: 100%;
  height: 460px;
  border: none;
  overflow: hidden;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.section-contact {
  width: 100%;
  padding: 80px 0 90px;
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid rgba(199, 187, 159, 0.35);
  border-radius: 8px;
  padding: 40px 36px 36px;
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.05);
}

.contact-grid .fade-in-up:nth-child(1) {
  transition-delay: 0s;
}

.contact-grid .fade-in-up:nth-child(2) {
  transition-delay: 0.15s;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.contact-card-rule {
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  margin: 14px 0 26px;
}

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-hours-list li {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: var(--color-body);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(199, 187, 159, 0.28);
}

.contact-hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hours-list li span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.75;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-copy {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 16px;
}

.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 18px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-phone:hover {
  color: var(--color-accent-mid);
}

.contact-book-note {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0 0 22px;
}

.contact-address {
  font-style: normal;
  margin: 0;
}

.contact-address a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-address a:hover {
  color: var(--color-accent-mid);
}

/* ======================================== */
/* HERO SECTION */
/* ======================================== */
.hero {
  width: 100%;
  height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2a2a2a;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  will-change: transform;
}

/*
  Focal-point crop: pin to where the model actually sits in the
  panoramic frame (not the extreme canvas edge), so faces stay
  visible as the viewport narrows.
*/
.hero-slide-left .hero-slide-img {
  object-position: 18% center;
  transform-origin: 18% center;
}

.hero-slide-right .hero-slide-img {
  object-position: 82% center;
  transform-origin: 82% center;
}

.hero-slide-left.active .hero-slide-img {
  animation: kenBurnsFocal 8s ease-out forwards;
}

.hero-slide-right.active .hero-slide-img {
  animation: kenBurnsFocal 8s ease-out forwards;
}

.hero-slide-left.zoomed .hero-slide-img,
.hero-slide-right.zoomed .hero-slide-img {
  transform: scale(1.06);
  animation: none;
}

@keyframes kenBurnsFocal {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 18px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-accent);
  margin-bottom: 28px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.separator-bar {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-mid), var(--color-primary));
}

/* ======================================== */
/* SECTION 1: WELCOME */
/* ======================================== */
.section-welcome {
  width: 100%;
  padding: 90px 0;
  background: var(--color-white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.welcome-image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
}

.welcome-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.welcome-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent-mid);
  margin-bottom: 10px;
}

.welcome-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.welcome-heading span {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--color-dark);
  display: block;
  margin-top: 4px;
}

.heading-rule {
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  margin: 22px 0 28px;
}

.heading-rule.centered {
  margin-left: auto;
  margin-right: auto;
}

.welcome-content.fade-in-up {
  transition-delay: 0.3s;
}

.welcome-content p {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.8;
  color: var(--color-body);
}

/* ======================================== */
/* SECTION 2: OUR PRODUCTS */
/* ======================================== */
.section-products {
  width: 100%;
  padding: 80px 0 90px;
  background: var(--color-off-white);
}

.section-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0;
}

.products-carousel {
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.products-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.product-slide {
  flex: 0 0 calc((min(100vw, 1300px) - 40px) / 3);
  width: calc((min(100vw, 1300px) - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  min-height: 120px;
}

.product-slide img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.9;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.product-slide:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ======================================== */
/* SECTION 3: CLIENT REVIEWS (PARALLAX) */
/* ======================================== */
.section-reviews {
  width: 100%;
  height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/parallax.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.section-reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-mid), var(--color-primary));
  z-index: 3;
  pointer-events: none;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.85);
  z-index: 1;
}

.reviews-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.reviews-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
  white-space: nowrap;
}

.reviews-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-top: 0;
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.reviews-track {
  width: 100%;
  position: relative;
}

.review-slide {
  display: none;
  width: 100%;
  padding: 0 10px;
}

.review-slide.active {
  display: block;
  animation: reviewFade 0.6s var(--ease-premium);
}

@keyframes reviewFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-slide p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.review-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 187, 159, 0.5);
  background: transparent;
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.review-nav:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 190px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 0.55;
  color: var(--color-accent);
  opacity: 0.4;
  margin-top: 4px;
  pointer-events: none;
  user-select: none;
}

/* ======================================== */
/* FAT FOOTER SECTION */
/* ======================================== */
.fat-footer {
  width: 100%;
  background: var(--color-dark);
  padding: 70px 0 60px;
  color: var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent-mid);
}

.schedule-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
}

.schedule-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22);
}

.schedule-content {
  position: relative;
  z-index: 1;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

.schedule-content .footer-heading {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: var(--color-accent);
}

.schedule-content p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.footer-phone-lg {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-phone-lg:hover {
  color: var(--color-accent);
}

.schedule-or {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent) !important;
  margin-bottom: 16px !important;
}

.map-embed {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border: 1px solid rgba(199, 187, 159, 0.25);
  border-radius: 8px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.footer-phone-standout {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 14px;
}

.footer-phone-standout:hover {
  color: var(--color-accent);
}

.footer-email {
  display: block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-accent);
  margin-bottom: 16px;
  word-break: break-word;
}

.footer-email:hover {
  color: var(--color-white);
}

.footer-address {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hours-heading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hours-list li {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.hours-list li span {
  font-weight: 500;
  color: var(--color-accent);
  display: inline-block;
  min-width: 86px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(199, 187, 159, 0.12);
}

.footer-social .social-icon svg {
  width: 18px;
  height: 18px;
}

.fat-footer .container {
  max-width: var(--container);
}

@media (min-width: 1280px) {
  .fat-footer .container {
    width: 1240px;
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1340px) {
  .fat-footer .container {
    width: 1300px;
  }
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR */
/* ======================================== */
.copyright-bar {
  width: 100%;
  background: #141414;
  padding: 18px 0;
  border-top: 1px solid rgba(199, 187, 159, 0.12);
}

.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright-inner p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.copyright-inner a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--color-accent);
}

.copyright-inner a:hover {
  color: var(--color-white);
}

/* ======================================== */
/* SCROLL-TO-TOP BUTTON */
/* ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary);
}

/* ======================================== */
/* MOBILE CALL BAR (hidden on desktop) */
/* ======================================== */
.mobile-call-bar {
  display: none;
}

/* ======================================== */
/* RESPONSIVE: TABLET */
/* ======================================== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .about-heading {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.15;
    color: var(--color-primary);
  }

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

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

  .instagram-heading {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .facial-layout {
    grid-template-columns: 1fr;
  }

  .weddings-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-map-embed {
    height: 380px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.15;
    color: var(--color-white);
  }

  .page-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.45;
    color: rgba(247, 245, 241, 0.88);
  }

  .hero-title {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--color-white);
  }

  .welcome-grid {
    gap: 40px;
  }

  .welcome-heading {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--color-primary);
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: var(--color-accent);
    padding: 12px 10px;
  }
}

/* ======================================== */
/* RESPONSIVE: MOBILE (≤768px) */
/* ======================================== */
@media (max-width: 768px) {
  .page-title-bar {
    padding: 32px 0 28px;
  }

  .page-title-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1.4;
    color: var(--color-accent);
  }

  .page-title {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.15;
    color: var(--color-white);
  }

  .page-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.45;
    color: rgba(247, 245, 241, 0.88);
    padding: 0 10px;
  }

  .section-about-welcome,
  .section-about-blowout {
    padding: 60px 0;
  }

  .about-grid,
  .about-grid-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid-reverse .about-media,
  .about-grid-reverse .about-copy {
    order: initial;
  }

  .about-grid-reverse .about-copy {
    order: -1;
  }

  .about-heading {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.15;
    color: var(--color-primary);
  }

  .section-team {
    padding: 56px 0 70px;
  }

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

  .team-card {
    padding: 30px 22px 24px;
  }

  .team-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--color-dark);
  }

  .section-work-gallery {
    padding: 56px 0 50px;
  }

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

  .section-instagram-cta {
    padding: 56px 0;
  }

  .instagram-heading {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .instagram-copy {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: rgba(247, 245, 241, 0.88);
  }

  .lightbox {
    padding: 70px 16px 60px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-accent);
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .section-services {
    padding: 56px 0 70px;
  }

  .service-group {
    padding: 26px 22px 22px;
  }

  .service-group-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--color-primary);
  }

  .service-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.45;
    color: var(--color-body);
  }

  .service-price {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--color-primary);
    white-space: normal;
  }

  .weddings-intro {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 28px;
  }

  .weddings-reserve,
  .weddings-reserve a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--color-primary);
  }

  .section-weddings {
    padding: 56px 0 24px;
  }

  .section-weddings-gallery {
    padding: 10px 0 70px;
  }

  .weddings-gallery {
    gap: 10px;
  }

  .contact-map-embed {
    height: 300px;
  }

  .section-contact {
    padding: 56px 0 70px;
  }

  .contact-card {
    padding: 30px 24px 26px;
  }

  .contact-card-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--color-primary);
  }

  .contact-hours-list li,
  .contact-hours-list li span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--color-body);
  }

  .contact-hours-list li span {
    font-weight: 600;
    color: var(--color-primary);
  }

  .contact-copy {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--color-body);
  }

  .contact-phone {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-primary);
  }

  .contact-book-note {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--color-muted);
  }

  .contact-address a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--color-primary);
  }

  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  .main-header {
    height: 74px;
  }

  .main-header.scrolled {
    height: 74px;
  }

  .main-header.scrolled .logo {
    height: 50px;
    max-height: 50px;
  }

  .logo {
    height: 50px;
    max-height: 50px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: block;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark);
    padding: 0 0 80px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    align-items: stretch;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.3;
    color: var(--color-accent);
    padding: 16px 28px;
    border-bottom: 1px solid rgba(199, 187, 159, 0.12);
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.25);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 240px;
    padding: 4px 0 8px;
  }

  .dropdown-menu a {
    padding: 12px 28px 12px 44px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.4;
    color: var(--color-accent);
  }

  /* Hero */
  .hero {
    height: 480px;
  }

  /*
    Panoramic heroes put models on the extreme left/right edges.
    On narrow screens, height-fit the image and pin to that edge
    so faces stay in frame. Soften/disable Ken Burns zoom which
    otherwise pushes them off-screen.
  */
  .hero-slide-img {
    width: auto;
    height: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    object-fit: cover;
  }

  .hero-slide-left .hero-slide-img {
    left: 0;
    right: auto;
    object-position: left center;
    transform-origin: left center;
  }

  .hero-slide-right .hero-slide-img {
    right: 0;
    left: auto;
    object-position: right center;
    transform-origin: right center;
  }

  .hero-slide-left.active .hero-slide-img,
  .hero-slide-right.active .hero-slide-img,
  .hero-slide-left.zoomed .hero-slide-img,
  .hero-slide-right.zoomed .hero-slide-img {
    animation: none;
    transform: none;
  }

  .hero-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: var(--color-accent);
    margin-bottom: 0;
  }

  /* Hide hero phone CTA on mobile (sticky bar handles it) */
  .btn-hero {
    display: none;
  }

  .section-welcome {
    padding: 60px 0;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .welcome-image::after {
    display: none;
  }

  .welcome-heading {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.15;
    color: var(--color-primary);
  }

  .welcome-heading span {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--color-dark);
  }

  .section-products {
    padding: 60px 0 70px;
  }

  .section-heading {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--color-primary);
  }

  .product-slide {
    flex: 0 0 calc((100vw - 40px) / 3);
    width: calc((100vw - 40px) / 3);
    padding: 16px 20px;
    min-height: 90px;
  }

  .product-slide img {
    max-height: 48px;
  }

  /* Parallax fallback on mobile (iOS issues with fixed) */
  .section-reviews {
    height: auto;
    min-height: 560px;
    background-attachment: scroll;
    padding: 70px 0;
  }

  .reviews-heading {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: var(--color-white);
    white-space: normal;
  }

  .reviews-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
  }

  .review-slide p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: var(--color-white);
  }

  .reviews-viewport {
    min-height: 200px;
  }

  .quote-mark {
    font-size: 140px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 0.55;
    color: var(--color-accent);
  }

  .review-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-accent);
  }

  .fat-footer {
    padding: 50px 0 40px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-phone-standout {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .schedule-content .footer-heading {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.25;
    color: var(--color-accent);
  }

  .footer-phone-lg {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .map-embed {
    height: 240px;
  }

  .copyright-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  /* Sticky mobile call bar */
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    z-index: 997;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  }

  .mobile-call-bar svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .mobile-call-bar:hover {
    color: var(--color-accent);
  }

  /* Clear sticky call bar */
  .scroll-top {
    bottom: 62px;
  }

  body {
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 420px;
  }

  .hero-title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--color-white);
  }

  .hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: var(--color-accent);
  }

  .product-slide {
    flex: 0 0 calc((100vw - 40px) / 2);
    width: calc((100vw - 40px) / 2);
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide {
    transition: none;
  }

  .hero-slide-img {
    transform: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
