/* ===================================================
   M&M STYLES — LUXURY EVENT PLANNING WEBSITE
   CSS Stylesheet — FULLY RESPONSIVE (Mobile-First Fixes)
   Breakpoints: 480px / 600px / 768px / 900px / 1024px
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --black:          #0a0a0a;
  --deep:           #111111;
  --charcoal:       #1e1e1e;
  --ivory:          #faf8f3;
  --ivory-2:        #f2ede3;
  --white:          #ffffff;
  --gold:           #c9a84c;
  --gold-light:     #e4c97b;
  --gold-dark:      #9d7a30;
  --rose-gold:      #c9897b;
  --emerald:        #2d6a4f;
  --emerald-light:  #40916c;
  --text-dark:      #1a1a1a;
  --text-mid:       #4a4a4a;
  --text-light:     #8a8a8a;
  --border:         rgba(201,168,76,0.2);
  --border-strong:  rgba(201,168,76,0.5);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', Arial, sans-serif;

  --radius:    2px;
  --radius-md: 6px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--ff-sans);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button        { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp  { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer   { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes float     { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes scrollLine{ 0% { height:0; opacity:1; } 100% { height:60px; opacity:0; } }
@keyframes pulse     { 0%,100% { opacity:0.6; } 50% { opacity:1; } }

.in-view { animation: fadeInUp 0.6s ease forwards; }

/* ===== SECTION COMMONS ===== */
section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--text-dark);
}
.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  font-weight: 300;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  background: rgba(201,168,76,0.06);
}

.sh-light h2 { color: var(--white); }
.sh-light p  { color: rgba(255,255,255,0.7); }
.st-light {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-dark {
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

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

.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 24px 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-mm {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-styles {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover        { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta::after  { display: none !important; }
.nav-cta:hover   { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--black);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45,106,79,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 50%  0%, rgba(201,137,123,0.06) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-headline em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(250,248,243,0.65);
  font-weight: 300;
  max-width: 550px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 1s both;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.3); }

.hero-scroll {
  position: absolute;
  right: 3rem; bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  background: var(--gold);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* ===== INTRO STRIP ===== */
.intro-strip { background: var(--ivory); padding: 100px 0; }

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

.intro-text .section-tag { margin-bottom: 16px; }
.intro-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.intro-text p { color: var(--text-mid); margin-bottom: 16px; font-weight: 300; line-height: 1.8; }
.intro-text .btn { margin-top: 8px; }

.intro-visual { position: relative; }
.visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
}

.visual-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 12rem;
  font-weight: 600;
  color: rgba(201,168,76,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.visual-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1;
}
.visual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.vc-icon { font-size: 2rem; }
.visual-card p { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.vc-1 { top: 10%; left: 0;   animation: float 4s ease-in-out infinite; }
.vc-2 { top: 10%; right: 0;  animation: float 4s ease-in-out 1s infinite; }
.vc-3 { bottom: 25%; left: 10%;  animation: float 4s ease-in-out 2s infinite; }
.vc-4 { bottom: 10%; right: 5%;  animation: float 4s ease-in-out 1.5s infinite; }

/* ===== SERVICES ===== */
.services { background: var(--deep); padding: 100px 0; }
.services .section-header h2 { color: var(--ivory); }
.services .section-header p  { color: rgba(250,248,243,0.6); }
.services .section-tag {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.in-view { opacity: 1; transform: translateY(0); }

.sc-featured {
  border-color: rgba(201,168,76,0.4) !important;
  background: rgba(201,168,76,0.05) !important;
}
.sc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.sc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(250,248,243,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.sc-list { margin-bottom: 24px; }
.sc-list li {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-list li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
.sc-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.sc-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about { background: var(--ivory-2); overflow: hidden; }

.about-accent {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-card.in-view { opacity: 1; transform: translateY(0); }

.tc-avatar {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tc-a1 { background: linear-gradient(135deg, #c9a84c 0%, #9d7a30 100%); }
.tc-a2 { background: linear-gradient(135deg, #c9897b 0%, #a06558 100%); }
.tc-a3 { background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%); }

.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.tc-initials {
  font-family: var(--ff-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.tc-body { padding: 28px; }
.tc-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.tc-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.tc-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}
.tc-exp {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-strong);
}

.about-philosophy {
  text-align: center;
  padding: 48px;
  background: var(--black);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.about-philosophy::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--ff-serif);
  font-size: 12rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.ap-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.ap-attr {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--ivory); }

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pf-btn {
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}
.pf-btn:hover  { border-color: var(--gold); color: var(--gold); }
.pf-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

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

.pg-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.pg-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pg-item.in-view { opacity: 1; transform: translateY(0); }
.pg-large { grid-column: span 2; }

/* Portfolio visual container */
.pg-visual {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.pg-large .pg-visual { height: 280px; }

/* Photo variant */
.pg-visual.pg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.pg-item:hover .pg-visual.pg-img img { transform: scale(1.06); }

/* Gradient fallbacks */
.pg-v1 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #c9a84c); }
.pg-v2 { background: linear-gradient(135deg, #4a1a1a, #8b3a3a, #c9897b); }
.pg-v3 { background: linear-gradient(135deg, #1a2d1a, #2d6a4f, #40916c); }
.pg-v4 { background: linear-gradient(135deg, #1a1a2d, #2d2d5a, #4a4a8a); }
.pg-v5 { background: linear-gradient(135deg, #2d1a2d, #8b3a8b, #c97bc9); }
.pg-v6 { background: linear-gradient(135deg, #1a2d1a, #9d7a30, #c9a84c); }

.pg-info { padding: 24px; background: var(--white); }
.pg-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.pg-info h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pg-info p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--ivory-2); }

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.testi-card.in-view { opacity: 1; transform: translateY(0); }
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }

.tc-big {
  grid-column: span 2;
  background: var(--black);
  border-color: rgba(201,168,76,0.2);
}
.tc-big .testi-text   { color: var(--ivory); }
.tc-big .testi-author { color: rgba(255,255,255,0.6); }
.tc-big .testi-author strong { color: var(--ivory); }

.testi-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tc-big .testi-text { font-size: 1.2rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.testi-author strong { display: block; color: var(--text-dark); margin-bottom: 2px; font-style: normal; }
.testi-author span   { font-size: 0.78rem; }

.ta-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

/* ===== BOOKING / PACKAGES ===== */
.booking { background: var(--charcoal); padding: 100px 0; }

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

.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.pkg-card.in-view { opacity: 1; transform: translateY(0); }
.pkg-card:hover   { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }

.pkg-featured {
  background: rgba(201,168,76,0.08) !important;
  border-color: var(--gold) !important;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}
.pkg-featured.in-view { transform: scale(1.03); }

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
}
.pkg-desc {
  font-size: 0.88rem;
  color: rgba(250,248,243,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}
.pkg-features { margin-bottom: 32px; }
.pkg-features li {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.75);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}
.pkg-features li:last-child { border-bottom: none; }

/* ===== CONTACT ===== */
.contact { background: var(--ivory); padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; display: inline-block; }
.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.75;
}

.ci-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--text-dark);
}
.ci-item:is(a):hover { border-color: var(--gold); transform: translateX(6px); }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.ci-item div { display: flex; flex-direction: column; gap: 2px; }
.ci-item strong { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); }
.ci-item span   { font-size: 0.9rem; color: var(--text-mid); }

.ci-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.05);
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Platform-specific social button colours */
.social-btn-fb  { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.06); }
.social-btn-fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-btn-ig  { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.06); }
.social-btn-ig:hover  { background: #E1306C; color: #fff; border-color: #E1306C; }
.social-btn-wa  { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.06); }
.social-btn-wa:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.social-btn-fb svg,
.social-btn-ig svg,
.social-btn-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; vertical-align: middle; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.fs-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; animation: pulse 2s ease infinite; }
.form-success h3 { font-family: var(--ff-serif); font-size: 2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 12px; }
.form-success p  { color: var(--text-mid); font-weight: 300; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 80px 0 30px; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; margin-bottom: 16px; }
.footer-logo .logo-mm     { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); }
.footer-logo .logo-styles { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--ivory); }

.fg-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; max-width: 260px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-grid h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer-grid ul li          { margin-bottom: 10px; }
.footer-grid ul li a        { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.25s; }
.footer-grid ul li a:hover  { color: var(--gold); }

.fg-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; font-weight: 300; }
.fg-contact p a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.fg-contact p a:hover { color: var(--gold); }
.fg-hours { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; font-weight: 300; }
.footer-seo-text { font-size: 0.01px !important; color: transparent !important; pointer-events: none; user-select: none; height: 0; overflow: hidden; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════ */

/* ── LARGE TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }

  .portfolio-grid  { grid-template-columns: 1fr 1fr; }
  .pg-large        { grid-column: span 2; }

  .packages-grid   { grid-template-columns: 1fr; gap: 20px; max-width: 520px; margin: 0 auto; }
  .pkg-featured    { transform: none; }
  .pkg-featured.in-view { transform: none; }
  .pkg-badge       { top: -12px; }

  .contact-grid    { gap: 48px; }
}

/* ── MEDIUM TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .intro-grid   { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .testi-grid   { grid-template-columns: 1fr; }
  .tc-big       { grid-column: span 1; }

  .hero-scroll  { display: none; }

  .contact-form-wrap { padding: 36px 28px; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
  /* Global spacing */
  section       { padding: 64px 0; }
  .container    { padding: 0 1.25rem; }
  .section-header { margin-bottom: 40px; }

  /* Burger menu ON */
  .burger { display: flex; }

  /* Full-screen slide-in nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 92vw);
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 2rem 2rem;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    z-index: 1050;
  }
  .nav-links.open { right: 0; }
  .nav-links a    { font-size: 1rem; color: rgba(255,255,255,0.9); }
  .nav-cta {
    margin-top: 8px;
    padding: 12px 24px !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  /* Hero */
  .hero          { padding: 100px 0 60px; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-eyebrow  { font-size: 0.72rem; }
  .hero-sub      { font-size: 0.95rem; max-width: 100%; }
  .hero-ctas     { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats    { gap: 20px; flex-wrap: wrap; }
  .stat-num      { font-size: 1.6rem; }

  /* Intro visual — simplified on mobile */
  .intro-grid    { grid-template-columns: 1fr; gap: 40px; }
  .visual-frame  { max-width: 100%; aspect-ratio: unset; height: 260px; }
  .vc-3, .vc-4  { display: none; }
  .visual-bg-text{ font-size: 7rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 28px 20px; }

  /* Team */
  .team-grid     { grid-template-columns: 1fr; }
  .tc-avatar     { height: 280px; }
  .tc-body       { padding: 22px; }

  /* About philosophy */
  .about-philosophy { padding: 36px 20px; }
  .about-philosophy::before { font-size: 7rem; left: 16px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .pg-large       { grid-column: span 1; }
  .pg-visual      { height: 220px; }
  .pg-large .pg-visual { height: 240px; }
  .portfolio-filter { gap: 8px; }
  .pf-btn         { padding: 8px 14px; font-size: 0.7rem; }
  .pg-info        { padding: 18px; }

  /* Testimonials */
  .testi-card     { padding: 24px 20px; }
  .tc-big         { grid-column: span 1; }

  /* Packages */
  .packages-grid  { grid-template-columns: 1fr; max-width: 100%; gap: 24px; }
  .pkg-card       { padding: 36px 24px; }
  .pkg-featured   { transform: none; }
  .pkg-featured.in-view { transform: none; }
  .pkg-badge      { font-size: 0.6rem; padding: 4px 14px; }

  /* Contact */
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap   { padding: 28px 18px; }
  .contact-form h3     { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 16px; }
  .form-row            { grid-template-columns: 1fr; }
  .ci-social           { flex-direction: column; gap: 10px; }
  .ci-social .social-btn,
  .ci-social a         { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; }
  .ci-item:is(a):hover { transform: none; } /* no translateX on touch */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer      { padding: 60px 0 24px; }
  .fg-brand p  { max-width: 100%; }
}

/* ── SMALL MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-ctas .btn { padding: 13px 20px; font-size: 0.8rem; }
  .hero-stats    { display: none; } /* too crowded on tiny phones */

  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .pf-btn { padding: 7px 12px; font-size: 0.68rem; }

  .pkg-card h3   { font-size: 1.5rem; }
  .pkg-card      { padding: 32px 18px; }

  .tc-avatar     { height: 240px; }

  .contact-form-wrap { padding: 24px 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.85rem; }

  .btn { padding: 12px 22px; font-size: 0.78rem; }

  .about-philosophy { padding: 28px 16px; }
  .testi-card       { padding: 20px 16px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-social a { width: 40px; height: 40px; }
}

/* ── VERY SMALL (≤ 400px) ── */
@media (max-width: 400px) {
  .container      { padding: 0 1rem; }
  .hero-headline  { font-size: clamp(1.9rem, 11vw, 2.4rem); }
  .nav-inner      { padding: 0 1rem; }
  .pf-btn         { padding: 6px 10px; font-size: 0.65rem; }
  .portfolio-filter { gap: 6px; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }