/* ==============================================
   HEARTFELT GREETINGS — styles.css
   Warm · Elegant · Personal · Professional
   ============================================== */

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

/* --- CSS Variables --- */
:root {
  --primary:       #1A1A1A;
  --accent:        #B5614A;
  --accent-light:  #E8C5BB;
  --surface:       #FAF8F5;
  --muted:         #6E6663;
  --white:         #FFFFFF;
  --card-shadow:   0 2px 16px rgba(0, 0, 0, 0.06);
  --transition:    0.22s ease;
  --radius-btn:    4px;
  --radius-card:   8px;
  --radius-img:    0px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--surface);
  color: var(--primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-img);
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 24px; }
h5 { font-size: 18px; }

p { font-size: 16px; color: var(--muted); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* --- 8pt Spacing Utilities --- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary:hover {
  background-color: #9e5040;
  border-color: #9e5040;
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.link-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.link-arrow:hover { gap: 10px; color: var(--accent); }

/* ==============================================
   NAVBAR
   ============================================== */
.site-nav {
  background-color: var(--surface);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  padding: 0;
  z-index: 1000;
}

@media (min-width: 992px) {
  .site-nav { position: sticky; top: 0; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-wordmark:hover { color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--primary);
  font-weight: 500;
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
}

@media (max-width: 991px) {
  .nav-inner {
    padding: 0 24px;
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,26,26,0.06);
    font-size: 16px;
  }
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background-color: var(--primary);
  color: var(--surface);
  padding: 64px 0 32px;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--surface);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.55);
  line-height: 1.7;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.4);
  margin-bottom: 24px;
}

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

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--surface); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 248, 245, 0.15);
  border-radius: 50%;
  color: rgba(250, 248, 245, 0.65);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-light);
  color: var(--surface);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  margin: 48px 0 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(250, 248, 245, 0.35);
}

/* ==============================================
   PAGE HEADER (inner pages)
   ============================================== */
.page-header {
  padding: 96px 0 64px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  max-width: 520px;
}

/* ==============================================
   HOME — HERO
   ============================================== */
.hero {
  min-height: 100vh;
  background-color: var(--surface);
  display: flex;
  align-items: center;
  padding: 128px 0 96px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 700px;
}

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

.hero-subtext {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  background-color: var(--accent-light);
  opacity: 0.18;
  border-radius: 0 0 0 200px;
  pointer-events: none;
}

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

.hero-animate {
  animation: fadeSlideUp 0.6s ease both;
}

.hero-animate:nth-child(1) { animation-delay: 0s; }
.hero-animate:nth-child(2) { animation-delay: 0.12s; }
.hero-animate:nth-child(3) { animation-delay: 0.22s; }
.hero-animate:nth-child(4) { animation-delay: 0.32s; }

/* ==============================================
   FEATURED WORK SECTION (Home)
   ============================================== */
.section {
  padding: 96px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header h2 { margin: 0; }

/* Portfolio / work cards */
.work-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.work-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
}

.work-card:hover .work-card-img img { transform: scale(1.04); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  gap: 8px;
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-overlay-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.work-card-body {
  padding: 24px;
}

.work-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
}

/* ==============================================
   MMB CASE STUDY (Home)
   ============================================== */
.mmb-section {
  background-color: var(--accent-light);
  padding: 96px 0;
}

.mmb-text-col h2 {
  margin-bottom: 16px;
}

.mmb-text-col p {
  margin-bottom: 24px;
  font-size: 16px;
}

.mmb-what-we-did {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.mmb-what-we-did li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mmb-what-we-did li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.mmb-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mmb-img-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ==============================================
   SERVICES SNAPSHOT (Home)
   ============================================== */
.services-snap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.snap-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.snap-card:hover { transform: translateY(-4px); }

.snap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  margin-bottom: 16px;
}

.snap-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.snap-card p { font-size: 13px; }

@media (max-width: 991px) {
  .services-snap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .services-snap-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   CTA BANNER (Home)
   ============================================== */
.cta-banner {
  background-color: var(--primary);
  padding: 96px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--surface);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(250, 248, 245, 0.55);
  margin-bottom: 40px;
  font-size: 17px;
}

/* ==============================================
   PORTFOLIO PAGE
   ============================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 48px 0 0;
  margin-bottom: 48px;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  border: 1.5px solid rgba(26, 26, 26, 0.15);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-pill.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

@media (max-width: 991px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.82);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay .category-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.portfolio-overlay .project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

/* Video section */
.video-section {
  padding: 96px 0;
  background-color: var(--surface);
  border-top: 1px solid rgba(26,26,26,0.08);
}

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

@media (max-width: 991px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.video-card iframe {
  display: block;
  width: 100%;
  border: none;
  /* Taller aspect for Shorts */
  aspect-ratio: 9 / 16;
}

.video-caption {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* MMB Gallery Section */
.mmb-gallery-section {
  padding: 96px 0;
  background-color: var(--accent-light);
}

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

@media (max-width: 991px) {
  .mmb-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.mmb-gallery-grid .portfolio-item img {
  aspect-ratio: 1;
}

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

@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-4px); }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  margin-bottom: 24px;
}

.service-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* Process Timeline */
.process-section {
  padding: 96px 0;
  background: var(--accent-light);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: rgba(181, 97, 74, 0.3);
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 767px) {
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .step-number { flex-shrink: 0; }
}

/* ==============================================
   ABOUT PAGE
   ============================================== */
.about-intro {
  padding: 96px 0;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: var(--accent-light);
  border-radius: var(--radius-card);
}

.about-portrait-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--accent-light);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro h2 { margin-bottom: 24px; }
.about-intro p { margin-bottom: 16px; font-size: 17px; }

.skills-section {
  padding: 96px 0;
  background-color: var(--white);
}

.skills-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

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

.skills-list li {
  font-size: 16px;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* MMB Pull quote */
.mmb-pull-quote {
  padding: 96px 0;
  background-color: var(--surface);
}

.pull-quote-box {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 40px 48px;
  max-width: 760px;
}

.pull-quote-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Values */
.values-section {
  padding: 96px 0;
  background-color: var(--accent-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
}

.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}

.value-item p { font-size: 15px; }

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-section {
  padding: 96px 0;
}

.contact-form-col {
  padding-right: 48px;
}

@media (max-width: 991px) {
  .contact-form-col { padding-right: 0; margin-bottom: 64px; }
}

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

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--primary);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

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

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

.form-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #c0392b;
}

.form-group.has-error .form-error { display: block; }

.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #a3d9a5;
  border-radius: var(--radius-btn);
  padding: 20px 24px;
  font-size: 15px;
  color: #2d6a2f;
  margin-top: 24px;
}

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

.contact-info-col {
  padding-top: 8px;
}

.contact-info-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 400;
}

.contact-item-value a {
  color: var(--accent);
  transition: opacity var(--transition);
}

.contact-item-value a:hover { opacity: 0.75; }

/* ==============================================
   LIGHTBOX
   ============================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: color var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  transition: background var(--transition), color var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

/* ==============================================
   UTILITY
   ============================================== */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }
.font-serif  { font-family: 'Cormorant Garamond', serif; }

.divider {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  margin: 0;
}

.container-narrow {
  max-width: 800px;
}

/* tag chip */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* ==============================================
   RESPONSIVE ADJUSTMENTS
   ============================================== */
@media (max-width: 575px) {
  .section { padding: 64px 0; }
  .page-header { padding: 64px 0 48px; }
  .hero { min-height: auto; padding: 96px 0 64px; }
  .cta-banner { padding: 64px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; text-align: center; }
  .mmb-img-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-col { padding-right: 0; }
  .pull-quote-box { padding: 32px 24px; }
  .values-section { padding: 64px 0; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ==============================================
   ENHANCEMENTS — added April 2025
   ============================================== */

/* --- Hero Image Collage --- */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-collage {
  position: relative;
  width: 340px;
  height: 380px;
}

.hero-collage-img {
  position: absolute;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(26,26,26,0.14);
  transition: transform 0.4s ease;
}

.hero-collage-img:nth-child(1) {
  width: 200px;
  height: 220px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.hero-collage-img:nth-child(2) {
  width: 180px;
  height: 200px;
  top: 30px;
  right: 0;
  transform: rotate(2.5deg);
  z-index: 3;
}

.hero-collage-img:nth-child(3) {
  width: 190px;
  height: 190px;
  bottom: 10px;
  left: 40px;
  transform: rotate(1.5deg);
  z-index: 1;
}

.hero-collage:hover .hero-collage-img:nth-child(1) { transform: rotate(-3deg) translateY(-4px); }
.hero-collage:hover .hero-collage-img:nth-child(2) { transform: rotate(2.5deg) translateY(-6px); }
.hero-collage:hover .hero-collage-img:nth-child(3) { transform: rotate(1.5deg) translateY(-3px); }

@media (max-width: 991px) {
  .hero-visual { display: none; }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 96px 0;
  background: var(--surface);
}

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

@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  position: relative;
  border-top: 3px solid var(--accent-light);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: #E8A838;
  stroke: none;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 48px;
  line-height: 0;
  vertical-align: -18px;
  color: var(--accent-light);
  font-family: 'Cormorant Garamond', serif;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8000;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* --- Filter pill count badges --- */
.filter-pill .pill-count {
  display: inline-block;
  background: rgba(26,26,26,0.07);
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: 4px;
  transition: background 0.22s, color 0.22s;
}

.filter-pill.active .pill-count {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* --- Form success / Formspree --- */
.form-submitting { opacity: 0.6; pointer-events: none; }
