@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lexend:wght@300;400;500;600&display=swap');

/* ============================
   VARIABLES
   ============================ */
:root {
  --teal:        #2B5F6E;
  --teal-dark:   #1A3D4A;
  --teal-medium: #3A7A8C;
  --teal-light:  #EAF2F5;
  --gold:        #C9A84C;
  --gold-light:  #E3CB8A;
  --gold-pale:   #F5EDD6;
  --cream:       #F7F3EC;
  --white:       #FFFFFF;
  --text-dark:   #1A3240;
  --text-mid:    #4A6E7A;
  --text-light:  #8AABB5;
  --border:      #D0E3E9;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lexend', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(43,95,110,0.08);
  --shadow-md: 0 6px 24px rgba(43,95,110,0.12);
  --shadow-lg: 0 12px 48px rgba(43,95,110,0.18);

  --transition: 0.3s ease;
  --max-width:  1180px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

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

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ============================
   LAYOUT
   ============================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--gold);
}

.btn-arrow { font-size: 1.1em; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================
   SUNBURST ELEMENT
   ============================ */
.sunburst-wrap {
  display: inline-block;
  line-height: 0;
}
.sunburst-wrap svg {
  display: block;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar--scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
}

.navbar__brand {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar--scrolled .navbar__brand { color: var(--teal-dark); }
.navbar__brand-amp { color: var(--gold); font-style: italic; font-size: 1.5em; }

.navbar__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__brand-logo .sunburst-nav {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.navbar__link:hover { color: var(--white); }
.navbar__link.active { color: var(--gold); }

.navbar--scrolled .navbar__link { color: var(--text-mid); }
.navbar--scrolled .navbar__link:hover { color: var(--teal); }
.navbar--scrolled .navbar__link.active { color: var(--gold); }

.navbar__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.navbar__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar--scrolled .navbar__toggle span { background: var(--teal); }

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

/* ============================
   HERO – ACCUEIL
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-medium) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
  position: relative;
}

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

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__tagline::before,
.hero__tagline::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 400;
}
.hero__title strong {
  font-style: normal;
  font-weight: 700;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

/* Photo block in hero */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__sunburst-wrap {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  opacity: 0.6;
  pointer-events: none;
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
}

.hero__photo-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.6;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
  border-radius: var(--radius);
}
.photo-placeholder--light {
  background: var(--teal-light);
  border-color: var(--border);
  color: var(--text-light);
}
.photo-placeholder__icon { font-size: 2.5rem; opacity: 0.5; }

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 200px;
  line-height: 1.4;
  z-index: 2;
}
.hero__badge strong { display: block; font-family: var(--font-sans); font-style: normal; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; opacity: 0.85; }

/* ============================
   PAGE HEADER (interior pages)
   ============================ */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header__sunburst {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0.15;
  pointer-events: none;
}

.page-header__sunburst-left {
  position: absolute;
  left: 2%;
  top: 20%;
  width: 140px;
  height: 140px;
  opacity: 0.08;
  pointer-events: none;
}

.page-header h1 { color: var(--white); position: relative; z-index: 1; }
.page-header .eyebrow { position: relative; z-index: 1; }

/* ============================
   SECTION: INTRO / ACCROCHE
   ============================ */
.intro {
  padding: 80px 0;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.intro__deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.intro__deco-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.section__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section__divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section__divider-line--short { max-width: 60px; flex: none; }

/* ============================
   SECTION: CHIFFRES / STATS
   ============================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.stat {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__number em { color: var(--gold); font-style: normal; }
.stat__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================
   SECTION: PRESTATIONS CARDS
   ============================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.4rem;
}

.service-card__title {
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.service-card__duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card__list {
  margin: 1rem 0;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-card__list li:last-child { border-bottom: none; }

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.service-card__deliverable {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--teal-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.25rem;
  font-weight: 500;
}

/* Full-width service detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 80px 0;
}

.service-detail + .service-detail {
  border-top: 1px solid var(--border);
}

.service-detail--reverse .service-detail__visual { order: -1; }

.service-detail__num {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: -1rem;
}

/* ============================
   SECTION: À PROPOS
   ============================ */
.about-photo {
  position: relative;
}

.about-photo__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-photo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-photo__sunburst {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  opacity: 0.7;
  z-index: 2;
}

.about-photo__quote {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--teal-dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 200px;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* Valeurs */
.valeur-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.valeur-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.valeur-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal-light), var(--gold-pale));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

/* ============================
   SECTION: PHOTO GALLERY
   ============================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery__item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery .photo-placeholder--light {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ============================
   SECTION: CTA BAND
   ============================ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band__sunburst-l {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.12;
}

.cta-band__sunburst-r {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.12;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================
   SECTION: TEMOIGNAGE
   ============================ */
.testimonial {
  background: var(--teal-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.testimonial__content {
  position: relative;
  z-index: 1;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 420px;
}

/* ============================
   SECTION: PROCESS STEPS
   ============================ */
.process-steps {
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step__num {
  counter-increment: steps;
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================
   CONTACT FORM
   ============================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__text strong { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.contact-info__text a:hover { color: var(--gold); }

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,95,110,0.1);
}

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

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

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

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

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

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand .amp { color: var(--gold); font-style: italic; }

.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__sunburst {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  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; }

/* ============================
   SECTION ACCENT DIVIDER
   ============================ */
.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  color: var(--gold);
}
.star-divider::before,
.star-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  .hero__container { gap: 3rem; }

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

  .service-detail { gap: 3rem; }

  .contact-wrap { gap: 3rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer__grid > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  .section { padding: 56px 0; }

  /* Navbar */
  .navbar__toggle { display: flex; }

  .navbar__menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--teal-dark);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, box-shadow 0.35s ease;
    box-shadow: none;
  }
  .navbar__menu.open {
    max-height: 400px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }

  .navbar__menu li {
    display: block;
    width: 100%;
  }

  .navbar__link {
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.85) !important;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .navbar__link:hover { background: rgba(255,255,255,0.05); }
  .navbar__link.active { color: var(--gold) !important; }

  .navbar__link--cta {
    background: var(--gold);
    color: var(--white) !important;
    margin: 0.75rem 1rem;
    width: calc(100% - 2rem);
    border-radius: var(--radius);
    text-align: center;
    border-bottom: none;
  }
  .navbar__link--cta:hover { background: var(--gold-light); }

  /* Hero */
  .hero { min-height: auto; padding: 40px 0 60px; }
  .hero__container {
    grid-template-columns: 1fr;
    padding: 5rem 1.25rem 2rem;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .hero__photo-frame { max-width: 320px; margin: 0 auto; }
  .hero__badge { left: auto; right: -10px; bottom: -10px; font-size: 0.875rem; }
  .hero__sunburst-wrap { width: 150px; height: 150px; top: -20px; right: -20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child:nth-child(odd) { grid-column: span 2; }

  /* Service detail */
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail--reverse .service-detail__visual { order: unset; }

  /* About photo */
  .about-photo__quote { left: 0; bottom: -20px; }
  .about-photo::after { display: none; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item:first-child { grid-row: auto; grid-column: span 2; aspect-ratio: 16/9; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Testimonial */
  .testimonial__inner { grid-template-columns: 1fr; }
  .testimonial__photo { max-width: 100%; }

  /* Intro inner */
  .intro__inner { grid-template-columns: 1fr; }
  .intro__deco { display: none; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid > :first-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Page header */
  .page-header { padding: 120px 0 60px; }
  .page-header__sunburst { display: none; }

  /* CTA band */
  .cta-band { padding: 60px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero__photo-frame { max-width: 280px; }
  .stats { grid-template-columns: 1fr; }
  .stats .stat:last-child:nth-child(odd) { grid-column: auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item:first-child { grid-column: auto; aspect-ratio: 1; }
}
