/* ===========================
   ADORE BEAUTY AT BAY VALLEY
   Main Stylesheet
   =========================== */

@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=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --blush: #E8D5C8;
  --blush-dark: #C9A99A;
  --gold: #B8965A;
  --gold-light: #D4AF72;
  --charcoal: #2C2C2C;
  --medium: #6B6560;
  --light-text: #9A9490;
  --border: #E5DDD8;
  --nav-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

p {
  font-size: 0.95rem;
  color: var(--medium);
  line-height: 1.85;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== NAVIGATION ===== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.97);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.nav-logo .logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  padding: 0.65rem 1.5rem !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.2em;
}

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

.nav-cta:hover {
  background: var(--gold) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

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

.mobile-close {
  position: absolute;
  top: 30px;
  right: 5%;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

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

.btn-gold:hover {
  background: var(--charcoal);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2420 0%, #3D2E28 40%, #4A3830 70%, #3A2E2A 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8965A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-tag span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.hero h1 {
  color: var(--cream);
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

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

.hero-sub {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.65);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,247,242,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== INTRO STRIP ===== */

.intro-strip {
  background: var(--charcoal);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.intro-strip-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.intro-strip-item span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.8);
}

.intro-strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */

section {
  padding: 6rem 5%;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

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

.section-header p {
  max-width: 560px;
  margin-top: 1rem;
}

.section-header.centered p {
  margin: 1rem auto 0;
}

/* ===== ABOUT SPLIT ===== */

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap .main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #E8D5C8 0%, #C9A99A 50%, #B8965A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
}

.about-image-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.about-image-placeholder p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--charcoal);
  padding: 2rem 2.5rem;
  text-align: center;
}

.about-accent-box .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-accent-box .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  margin-top: 0.25rem;
  display: block;
}

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

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

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.highlight-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.highlight-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.highlight-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

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

.services-bg {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.service-card {
  background: var(--warm-white);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 0;
}

.service-card .service-items {
  margin-top: 1rem;
  list-style: none;
}

.service-card .service-items li {
  font-size: 0.8rem;
  color: var(--medium);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .service-items li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===== BRIDAL FEATURE ===== */

.bridal-section {
  background: linear-gradient(135deg, #2C2420 0%, #3D2E28 60%, #4A3830 100%);
  position: relative;
  overflow: hidden;
}

.bridal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8965A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bridal-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.bridal-text .eyebrow {
  color: var(--gold-light);
}

.bridal-text h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.bridal-text p {
  color: rgba(250,247,242,0.7);
  margin-bottom: 1.5rem;
}

.bridal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.bridal-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bridal-feature .bf-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bridal-feature span {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.75);
  line-height: 1.5;
}

.bridal-image-stack {
  position: relative;
  height: 550px;
}

.bridal-img-main {
  position: absolute;
  width: 75%;
  height: 85%;
  right: 0;
  top: 0;
  background: linear-gradient(135deg, #E8D5C8 0%, #C9A99A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridal-img-accent {
  position: absolute;
  width: 50%;
  height: 45%;
  left: 0;
  bottom: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

/* ===== TEAM ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: transparent;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo .team-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

.team-photo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  margin: auto;
}

.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.team-card .role {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.gallery-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 300px;
}

.gallery-item {
  background: var(--blush);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { background: linear-gradient(135deg, #E8D5C8, #C9A99A); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #C9A99A, #B8965A); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #3D2E28, #2C2420); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #B8965A, #D4AF72); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #E8D5C8, #B8965A); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== QUOTE ===== */

.quote-section {
  text-align: center;
  background: var(--warm-white);
  padding: 5rem 5%;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.quote-section cite {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== HOURS/INFO ===== */

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

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.info-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.hours-list li .day {
  color: var(--charcoal);
  font-weight: 400;
}

.hours-list li .time {
  color: var(--medium);
}

.hours-list li.closed .time {
  color: var(--blush-dark);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--medium);
}

.contact-list li .ci {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.map-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 1.5rem;
}

/* ===== BOOKING CTA ===== */

.booking-cta {
  background: var(--charcoal);
  text-align: center;
  padding: 5rem 5%;
}

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

.booking-cta p {
  color: rgba(250,247,242,0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.booking-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

footer {
  background: #1A1410;
  padding: 4rem 5% 2rem;
  color: rgba(250,247,242,0.6);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.55);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.35);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.5);
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.page-hero {
  background: linear-gradient(135deg, #2C2420 0%, #3D2E28 60%, #4A3830 100%);
  padding: 9rem 5% 5rem;
  text-align: center;
  position: relative;
}

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

.page-hero p {
  color: rgba(250,247,242,0.65);
  max-width: 500px;
  margin: 1rem auto 0;
}

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

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

.contact-form-wrap {
  background: var(--warm-white);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medium);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

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

.form-group textarea {
  height: 140px;
  resize: vertical;
}

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

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

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

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

.values-list {
  list-style: none;
  margin-top: 2rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.values-list li:first-child {
  border-top: 1px solid var(--border);
}

.val-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.val-content strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.val-content p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== FULL TEAM PAGE ===== */

.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.team-full-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-full-photo {
  width: 90px;
  height: 110px;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-full-photo .team-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.team-full-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.team-full-info .role {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.team-full-info p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== SERVICES FULL PAGE ===== */

.services-categories {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4rem;
}

.service-category h3 {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-category h3 .cat-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-item {
  background: var(--warm-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: background 0.2s ease;
}

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

.service-item .si-name {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.service-item .si-desc {
  font-size: 0.78rem;
  color: var(--medium);
  margin-top: 0.2rem;
}

.service-item .si-note {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 1rem;
  flex-shrink: 0;
}

/* ===== IMAGE OVERRIDES ===== */

.team-photo img {
  position: absolute;
  inset: 0;
  width: 85%;
  height: 85%;
  object-fit: contain;
  margin: auto;
}

.team-full-photo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

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

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

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  :root { --nav-height: 70px; }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-split,
  .bridal-inner,
  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-accent-box {
    right: 0;
    bottom: -1.5rem;
  }

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

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

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 220px;
  }

  .gallery-strip .gallery-item:nth-child(4),
  .gallery-strip .gallery-item:nth-child(5) {
    display: none;
  }

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

  .bridal-image-stack {
    height: 350px;
  }

  .bridal-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section { padding: 4rem 5%; }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: 180px;
  }

  .gallery-strip .gallery-item:nth-child(3) {
    display: none;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .intro-strip {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .intro-strip-divider {
    width: 30px;
    height: 1px;
  }
}
