/* ====================================================
   LUMIÈRE EVENTS — style.css
   Color Palette:
     --cream:       #FAF7F4
     --blush:       #F2E8E3
     --rose:        #C0826A
     --rose-light:  #E8B4A0
     --olive:       #4A5240
     --olive-light: #6B7260
     --gold:        #C9A96E
     --charcoal:    #2C2C2C
     --text-muted:  #7A7A7A
==================================================== */

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

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

body {
  font-family: 'Jost', sans-serif;
  background-color: #FAF7F4;
  color: #2C2C2C;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ---- Typography Tokens ---- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C0826A;
  margin-bottom: 8px;
}

.section-label.center {
  text-align: center;
}

.section-label-line {
  width: 32px;
  height: 1.5px;
  background: #C0826A;
  margin-bottom: 18px;
}

.text-rose {
  color: #C0826A;
  font-style: italic;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #747760;
  color: #FAF7F4;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: #3A4030;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 82, 64, 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #a8824b;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-ghost:hover {
  color: #C0826A;
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #2C2C2C;
  border-radius: 50%;
  font-size: 0.7rem;
  padding-left: 2px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.btn-ghost:hover .play-circle {
  border-color: #C0826A;
  background: #C0826A;
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #4A5240;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid #4A5240;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #4A5240;
  color: #FAF7F4;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #e0d4c8;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid rgba(224,212,200,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-outline-light:hover {
  background: rgba(224,212,200,0.1);
  border-color: #e0d4c8;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent state: all text/icons white for visibility over hero image */
.navbar:not(.scrolled) .logo-main { color: black; }
.navbar:not(.scrolled) .logo-sub  { color: black; }
.navbar:not(.scrolled) .nav-link  { color: black; }
.navbar:not(.scrolled) .nav-link:hover { color: #cc9d98; }
.navbar:not(.scrolled) .nav-link::after { background: black; }
/* .navbar:not(.scrolled) .nav-link.active { color: black; } */
.navbar:not(.scrolled) .hamburger span { background: #fff; }

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192, 130, 106, 0.14);
  box-shadow: 0 4px 24px rgba(44, 44, 44, 0.07);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  min-width: 110px;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #2C2C2C;
  transition: color 0.4s ease;
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: #7A7A7A;
  margin-top: 1px;
  transition: color 0.4s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #5A5A5A;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C0826A;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2C2C2C;
}

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

.btn-enquire {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAF7F4;
  background: #C0826A;
  padding: 10px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s;
  white-space: nowrap;
}

/* On transparent nav, enquire button gets an outlined style */
.navbar:not(.scrolled) .btn-enquire {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.btn-enquire:hover {
  background: #A86A52;
  border-color: #A86A52;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #2C2C2C;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 32px 24px;
  background: rgba(250,247,244,0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(192, 130, 106, 0.12);
  gap: 16px;
}

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

.mobile-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: #2C2C2C;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: #C0826A;
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(to top, #f5f1ef 0%, transparent 18%),
    url('images/ChatGPT Image May 31, 2026, 12_42_36 PM.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay over the whole image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  
}

.hero-content {
  position: relative; /* sits above the overlay */
  z-index: 1;
  max-width: 700px;
  padding: 0 4% 0 8% ;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8824b;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.hero-title-italic {
  color: #cc9d98;
  /* font-style: italic; */
  font-weight: 600;
}

.hero-divider {
  width: 40px;
  height: 1.5px;
  background: #C0826A;
  margin-bottom: 20px;
}

.hero-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #6A6A6A;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  flex: 0 0 50%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.9s ease 0.2s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FAF7F4 0%, transparent 18%),
  linear-gradient(to top, #FAF7F4 0%, transparent 28%);
}

  

/* ========================
   ABOUT
======================== */
.about {
  position: relative;
  /* Wedding image fills the ENTIRE section as background */
  /* background-image: url('images/about_wedding.png'); */

  background:
    linear-gradient(to bottom, #f5f1ef 5%, transparent 18%),
    url('images/7d3c60c7-2204-46ef-ba41-92573415ada9.png');

  background-size: cover;
  background-position: center 20%;
  padding: 42px 0 160px;
  overflow: hidden;
  height:700px;
}

/* ---- Gradient overlay: pure cream on left → transparent on right ---- */
/* This cleanly separates the text area from the image area */
/* .about-overlay {
  position: absolute;
  inset: 0;
  background: */
    /* Left-to-right: cream covering ~40%, fading out by ~70% */
    /* linear-gradient(
      to right,
      #FAF7F4 0%,
      #FAF7F4 20%,
      rgba(250, 247, 244, 0.94) 30%,
      rgba(250, 247, 244, 0.72) 40%,
      rgba(250, 247, 244, 0.30) 53%,
      rgba(250, 247, 244, 0.00) 66%
    ),
    linear-gradient(
      to bottom,
      #f5f1ef 0%,
      #f5f1ef 28%,
      rgba(250, 247, 244, 0.94) 38%,
      rgba(250, 247, 244, 0.72) 50%,
      rgba(250, 247, 244, 0.30) 63%,
      rgba(250, 247, 244, 0.00) 76%
    );
  z-index: 1;
  pointer-events: none;
} */

/* ---- Two-column row: text left | stats right ---- */
.about-content-row {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* ---- Left text column ---- */
.about-left {
  animation: fadeInUp 0.7s ease both;
}

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

.about-label-group {
  margin-bottom: 18px;
}

/* Ornament: short rose line + tiny ◆ diamond beneath label */
.about-ornament {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

.ornament-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #C0826A;
}

.ornament-diamond {
  font-size: 0.42rem;
  color: #C0826A;
  line-height: 1;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.about-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: #5A5A5A;
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 30px;
}

/* ---- Right: 4 stats in a horizontal row ---- */
.about-stats-col {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 38px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 10px 10px;
  border-left: 1px solid rgba(192, 130, 106, 0.22);
  transition: background 0.3s ease;
}

.stat-item:first-child {
  border-left: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  color: #C0826A;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2C2C2C;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: #7A7A7A;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ---- Bottom wave: curves UPWARD at center ---- */
/* Uses border-radius on a pseudo-block to create a concave arch */
.about-bottom-wave {
  position: absolute;
  bottom: -2px;
  left: -8%;
  width: 116%;
  height: 180px;
  z-index: 3;
  pointer-events: none;
}

.about-bottom-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================
   SERVICES
======================== */
/* ========================
   SERVICES
======================== */
.services {
  background: #F6F1ED;
  padding: 80px 0 90px;
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

.services-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 64px;
}

/* Remove card styles — flat open columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.service-card {
  background: transparent;
  padding: 0 28px 32px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(192, 130, 106, 0.25);
  box-shadow: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: none;
}

.service-card:first-child {
  border-left: none;
}

/* Remove the bottom hover bar */
.service-card::before {
  display: none;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(192, 130, 106, 0.25);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  color: #C0826A;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.1;
}

.service-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.82rem;
  color: #8A8A8A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A5240;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link::after {
  content: '›';
  font-size: 1rem;
  line-height: 1;
}

.service-card:hover .service-link {
  color: #C0826A;
  letter-spacing: 0.1em;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
}

/* ========================
   PORTFOLIO
======================== */
.portfolio {
  background: #FAF7F4;
  padding: 100px 0;
  overflow: visible;          /* ADD THIS */
  position: relative;
  z-index: 0;
}

.portfolio-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

.portfolio-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 48px;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.portfolio-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF7F4;
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================
   TESTIMONIALS
======================== */
/* ========================
   TESTIMONIALS
======================== */
.testimonials {
  background: #F2E8E3;
  display: grid;
  grid-template-columns: 0.7fr 0.01fr 0.2fr auto;
  align-items: center;        /* changed from stretch */
  min-height: 260px;
  padding: 0;
  gap: 0;
  position: relative;
  overflow: visible;          /* allow image to bleed out */
  margin-top: 10px;      /* make room for the breakout image above */
}

.testimonial-image {
  width: 260px;               /* make it bigger */
  height: 210px;       /* taller so it bleeds up */
  overflow: visible;
  position: relative;
  background: #f2e8e3;
}

.testimonial-image img {
  width: 100%;
  height: 157%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: -97px;              /* bleed 100px UP into the portfolio section */
  right: 0;
  left: 42px;
  /* box-shadow: 0 8px 40px rgba(44, 44, 44, 0.15); */
}
.testimonial-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px 36px 8vw;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  color: #a8824b;
  line-height: 0.65;
  align-self: flex-start;
  margin-top: 10px;
  flex-shrink: 0;
  opacity: 0.85;
}
.quote-main {
  font-size: 0.92rem;
  color: #2C2C2C;
  line-height: 1.65;
  margin-bottom: 4px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #C0826A;
  line-height: 1.5;
}
.testimonial-divider {
  width: 1px;
  background: rgba(192,130,106,0.25);
  margin: 32px 0;
   align-self: center;   /* ← add this */
  min-height: 80px; 
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
  gap: 14px;
}
/* .testimonial-image {
  width: 220px;
  overflow: hidden;
  position: relative;
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  right: 34px;
  z-index: 10;
  position: absolute;
} */
.testimonial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,247,244,0.35) 0%, transparent 40%);
  pointer-events: none;
}




.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: #C0826A;
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.6;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: #3A3A3A;
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: normal;
}

.quote-text em {
  color: #C0826A;
  font-style: italic;
}

.quote-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7A7A;
  margin-bottom: 24px;
}

.quote-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4B0A0;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #C0826A;
  transform: scale(1.25);
}

.testimonial-right {
  width: 200px;
  height: 320px;
  opacity: 0.5;
}

.floral-accent {
  width: 100%;
  height: 100%;
}

.floral-accent svg {
  width: 100%;
  height: 100%;
}


/* ========================
   CONTACT CTA
======================== */
.contact-cta {
  background: #4A5240;
  padding: 90px 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,130,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #FAF7F4;
  margin-bottom: 16px;
}

.contact-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(250,247,244,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.contact-cta .btn-primary {
  background: #C0826A;
}

.contact-cta .btn-primary:hover {
  background: #A86A52;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #3C3E30;
  color: #c8bdb4;
  padding: 72px 0 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(192,130,106,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #C0826A;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #e8ddd6;
}

.footer-logo-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: #8a8080;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: #8a8080;
  line-height: 1.7;
  font-style: italic;
  max-width: 280px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  color: #a09590;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-contact-item:hover {
  color: #C0826A;
}

.footer-icon {
  font-size: 1rem;
  color: #C0826A;
  min-width: 20px;
}

.footer-social {
  padding-top: 4px;
}

.footer-social-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a0a090;
  margin-bottom: 18px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09590;
  transition: all 0.3s ease;
}

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

.social-icon:hover {
  border-color: #C0826A;
  color: #C0826A;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(192,130,106,0.2);
}

.footer-bottom {
  text-align: center;
  padding: 20px 32px;
  font-size: 0.72rem;
  color: rgba(200,189,180,0.45);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ========================
   SCROLL ANIMATIONS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================
   RESPONSIVE — TABLET (≤1024px)
======================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats-col {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: 10px 6px 8px;
  }
}

/* ========================
   RESPONSIVE — TABLET (≤900px)
======================== */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 24px;
    height: 68px;
  }

  /* HERO — stack vertically */
  .hero {
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
  }

  .hero-content {
    flex: none;
    padding: 100px 6vw 40px;
    order: 1;
    min-height: auto;
    max-width: 100%;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    min-height: 50vh;
    height: 50vh;
    order: 2;
  }

  .hero-img-overlay {
    background: linear-gradient(to bottom, #FAF7F4 0%, transparent 20%);
  }

  /* ABOUT */
  .about {
    height: auto;
    padding: 56px 0 120px;
  }

  .about-content-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .about-stats-col {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: 10px 6px 8px;
  }

  .about-image-row {
    height: 340px;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  /* PORTFOLIO */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TESTIMONIALS */
  .testimonials {
    grid-template-columns: 1fr;
    padding: 72px 6vw;
    gap: 0;
  }

  .testimonial-divider {
    display: none;
  }

  .testimonial-meta {
    padding: 20px 0;
  }

  .testimonial-image {
    display: none;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
  }
}

/* ========================
   RESPONSIVE — MOBILE (≤640px)
======================== */
@media (max-width: 640px) {
  /* NAV */
  .nav-links { display: none; }
  .btn-enquire { display: none; }
  .hamburger { display: flex; }

  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-menu {
    padding: 16px 20px 20px;
    gap: 14px;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 5vw 40px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ABOUT */
  .about {
    height: auto;
    padding: 56px 0 100px;
    background-position: center center;
  }

  .about-content-row {
    padding: 0 5vw 32px;
  }

  .about-heading {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .about-body {
    max-width: 100%;
  }

  /* Stats 2x2 on mobile */
  .about-stats-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 16px 8px;
    border-left: none;
    border-bottom: 1px solid rgba(192, 130, 106, 0.15);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(192, 130, 106, 0.15);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* SERVICES */
  .services {
    padding: 64px 0 80px;
  }

  .services-heading {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 40px;
    padding: 0 5vw;
  }

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

  .service-card {
    border-left: none;
    border-bottom: 1px solid rgba(192, 130, 106, 0.2);
    padding: 28px 5vw;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
  }

  /* PORTFOLIO */
  .portfolio {
    padding: 64px 0;
  }

  .portfolio-heading {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 56px 5vw;
  }

  .testimonial-left {
    padding: 0;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .quote-text {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* CONTACT CTA */
  .contact-cta {
    padding: 72px 5vw;
  }

  .contact-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .contact-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn-group .btn-primary {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 36px;
    padding: 0 5vw 48px;
  }

  .footer-bottom {
    padding: 16px 20px;
    font-size: 0.68rem;
  }

  /* ABOUT IMAGE ROW */
  .about-image-row {
    height: 260px;
  }
}

/* ========================
   RESPONSIVE — SMALL MOBILE (≤480px)
======================== */
@media (max-width: 480px) {
  .hero-content {
    padding: 96px 5vw 36px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost {
    font-size: 0.72rem;
    padding: 12px 20px;
  }

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

  .portfolio-item {
    aspect-ratio: 4/3;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }
}

