/* =========================================================
   Éclat — Styles
   ========================================================= */

/* ---------------------------------------------------------
   1. Custom Properties
   --------------------------------------------------------- */
:root {
  --cream:       #F5EAE4;
  --teal:        #50A09B;
  --teal-dark:   #2E6B67;
  --teal-mid:    #3D8A85;
  --gold:        #C9A97A;
  --gold-light:  #E8C9A0;
  --teal-pale:   #A3D6CE;
  --teal-ice:    #C8EAEC;
  --border:      #E0D0C8;
  --text-muted:  #B89880;
  --text-dark:   #3D2B1F;

  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Lato', sans-serif;

  --nav-height:  72px;
  --section-pad: 72px 40px;
  --radius:      8px;
  --radius-sm:   2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font: inherit;
}

/* ---------------------------------------------------------
   3. Accessibility
   --------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal-dark);
  color: var(--cream);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

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

/* ---------------------------------------------------------
   4. Keyframe Animations
   --------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes particleFade {
  0%   { opacity: 0;  transform: translateY(0)    scale(0); }
  50%  { opacity: 1;  transform: translateY(-30px) scale(1); }
  100% { opacity: 0;  transform: translateY(-60px) scale(0); }
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: .5; }
  50%       { transform: translate(-50%,-50%) scale(1.5); opacity: 0; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.06); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.04); }
  70%       { transform: scale(1); }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50%       { transform: rotate(1.5deg); }
}
@keyframes swayR {
  0%, 100% { transform: rotate(1.5deg); }
  50%       { transform: rotate(-1.5deg); }
}
@keyframes sway2 {
  0%, 100% { transform: rotate(-2.5deg); }
  50%       { transform: rotate(2.5deg); }
}
@keyframes hamburgerTop {
  0%   { transform: translateY(0) rotate(0); }
  50%  { transform: translateY(7px) rotate(0); }
  100% { transform: translateY(7px) rotate(45deg); }
}
@keyframes hamburgerMid {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes hamburgerBot {
  0%   { transform: translateY(0) rotate(0); }
  50%  { transform: translateY(-7px) rotate(0); }
  100% { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------------------------------------------------------
   5. Scroll Reveal
   --------------------------------------------------------- */
.sr {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.22,1,.36,1),
              transform 1.6s cubic-bezier(.22,1,.36,1);
}
.sr.sr-up    { transform: translateY(40px); }
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-spin  {
  transform: rotate(-180deg) scale(0);
  transition: opacity 1.8s cubic-bezier(.22,1,.36,1),
              transform 1.8s cubic-bezier(.22,1,.36,1);
}
.sr.visible               { opacity: 1; transform: none; }
.sr.visible.sr-spin       { transform: rotate(0deg) scale(1); }

.sr-d1 { transition-delay: .15s; }
.sr-d2 { transition-delay: .4s; }
.sr-d3 { transition-delay: .65s; }
.sr-d4 { transition-delay: .9s; }

/* ---------------------------------------------------------
   6. Hero Entrance Animations
   --------------------------------------------------------- */
.hero-1 { animation: fadeUp 1.6s cubic-bezier(.22,1,.36,1) .2s both; }
.hero-2 { animation: fadeUp 1.6s cubic-bezier(.22,1,.36,1) .5s both; }
.hero-3 { animation: fadeUp 1.6s cubic-bezier(.22,1,.36,1) .8s both; }
.hero-4 { animation: fadeUp 1.6s cubic-bezier(.22,1,.36,1) 1.1s both; }

.hero-line-anim {
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
  width: 0;
  animation: lineGrow 2s cubic-bezier(.22,1,.36,1) .6s both;
}

/* ---------------------------------------------------------
   7. Shared Decorative Helpers
   --------------------------------------------------------- */
.divider-line {
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
  width: 0;
}
.divider-line.visible {
  animation: lineGrow 2s cubic-bezier(.22,1,.36,1) forwards;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFade 4s ease-in-out infinite;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.2);
  animation: pulse 4s ease-out infinite;
  pointer-events: none;
}

/* Floating botanical elements */
.fl {
  position: absolute;
  pointer-events: all;
  opacity: 0.07;
  cursor: pointer;
  transition: opacity .5s ease, transform .45s cubic-bezier(.22,1,.36,1), filter .5s ease;
  z-index: 1;
}
.fl:hover {
  opacity: 0.92 !important;
  transform: scale(1.22) !important;
  z-index: 20;
}
.fl use {
  transition: stroke .35s ease;
}

/* Float animations */
.float-a { animation: float  6s ease-in-out infinite; }
.float-b { animation: floatB 7s ease-in-out infinite 1.5s; }
.float-c { animation: floatC 8s ease-in-out infinite 3s; }
.sway    { animation: sway   7s ease-in-out infinite; }
.sway-r  { animation: swayR  8s ease-in-out infinite 1s; }
.heartbeat { animation: heartbeat 3.5s ease-in-out infinite; }

/* Responsive visibility helpers */
.hide-mobile  { display: block; }
.hide-tablet  { display: block; }

/* ---------------------------------------------------------
   8. Shared Component Styles
   --------------------------------------------------------- */

/* Section layout */
section { position: relative; overflow: hidden; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.eclat-btn {
  display: inline-block;
  transition: transform .5s cubic-bezier(.22,1,.36,1),
              letter-spacing .6s,
              background .5s,
              color .5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 400;
  border-radius: var(--radius-sm);
  padding: 15px 38px;
  text-align: center;
}
.eclat-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .8s, height .8s;
}
.eclat-btn:hover::after { width: 300px; height: 300px; }
.eclat-btn:hover { transform: scale(1.06); letter-spacing: 3px; }

.btn-primary {
  background: var(--cream);
  color: var(--teal);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

/* Cards */
.eclat-card {
  transition: transform .7s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eclat-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transition: left .9s ease;
}
.eclat-card:hover::before { left: 100%; }
.eclat-card:hover { transform: translateY(-14px) scale(1.02); }

/* Gallery items */
.eclat-gallery-item {
  transition: transform .7s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.eclat-gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: rgba(255,255,255,.15);
  transform: skewX(-20deg);
}
.eclat-gallery-item:hover::after { animation: shimmer .8s ease forwards; }
.eclat-gallery-item:hover { transform: scale(1.06) rotate(1deg); }

/* Tag buttons */
.tag-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  transition: background .5s, color .5s, transform .5s, letter-spacing .5s;
  cursor: pointer;
}
.tag-btn:hover {
  background: var(--teal) !important;
  color: var(--cream) !important;
  border-color: var(--teal) !important;
  transform: scale(1.05);
  letter-spacing: 3px;
}
.tag-btn--teal  { color: var(--teal); border: .5px solid var(--teal); }
.tag-btn--gold  { color: var(--gold); border: .5px solid var(--gold); }

/* Testimonial cards */
.testimonial-card {
  transition: transform .7s cubic-bezier(.22,1,.36,1), background .5s;
  cursor: pointer;
}
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,.15) !important;
}

/* Service icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.eclat-card:hover .service-icon { transform: scale(1.2) rotate(10deg); }
.service-icon-dot    { width: 22px; height: 22px; border-radius: 50%; background: var(--cream); }
.service-icon-bar    { width: 22px; height: 4px; border-radius: 2px; background: var(--cream); }
.service-icon-square { width: 22px; height: 22px; border-radius: 3px; background: var(--cream); }

/* ---------------------------------------------------------
   9. Navigation
   --------------------------------------------------------- */
#navbar {
  background: var(--cream);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: .5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  transition: box-shadow .4s;
  min-height: var(--nav-height);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(46,107,103,.1);
}

.nav-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
  cursor: pointer;
  transition: color .5s, letter-spacing .5s;
}
.nav-link:hover { color: var(--teal); letter-spacing: 3px; }

.nav-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  transition: background .5s, color .5s;
}
.nav-btn:hover { background: var(--cream); color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  padding: 0;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--teal-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ---------------------------------------------------------
   10. Mobile Menu
   --------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 24px;
  color: var(--teal-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform .3s, color .3s;
  z-index: 3;
}
.mobile-menu-close:hover { transform: rotate(90deg); color: var(--teal); }

.mobile-menu-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--teal-dark);
  font-weight: 400;
  cursor: pointer;
  transition: color .4s, letter-spacing .4s;
  position: relative;
  z-index: 2;
}
.mobile-nav-link:hover { color: var(--teal); letter-spacing: 5px; }
.mobile-nav-btn {
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* ---------------------------------------------------------
   11. Hero
   --------------------------------------------------------- */
.section-hero {
  background: var(--teal);
  padding: 96px 40px 84px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 66px;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.1;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  max-width: 460px;
  margin: 16px auto 44px;
  line-height: 1.9;
  opacity: .92;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   12. Quote
   --------------------------------------------------------- */
.section-quote {
  background: var(--cream);
  padding: var(--section-pad);
  text-align: center;
  border-bottom: .5px solid var(--border);
}

.quote-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 27px;
  font-style: italic;
  color: var(--teal-dark);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   13. Services
   --------------------------------------------------------- */
.section-services {
  background: var(--cream);
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.service-card {
  border-radius: var(--radius);
  padding: 44px 28px;
  text-align: center;
}
.service-card--light {
  background: rgba(253,246,243,.95);
  border: .5px solid var(--border);
}
.service-card--teal {
  background: var(--teal);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 700;
}
.service-title--light { color: var(--cream); }

.service-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 24px;
  font-weight: 300;
}
.service-desc--light { color: var(--teal-ice); }

/* ---------------------------------------------------------
   14. Testimonials
   --------------------------------------------------------- */
.section-testimonials {
  background: var(--teal-dark);
  padding: var(--section-pad);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: .5px solid rgba(255,255,255,.15);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  margin: 0 0 18px;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
}

/* ---------------------------------------------------------
   15. Gallery
   --------------------------------------------------------- */
.section-gallery {
  background: var(--cream);
  padding: var(--section-pad);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item--tall    { height: 160px; }
.gallery-item--teal    { background: var(--teal); }
.gallery-item--teal-mid  { background: var(--teal-mid); }
.gallery-item--teal-dark { background: var(--teal-dark); }
.gallery-item--gold      { background: var(--gold); }
.gallery-item--gold-light { background: var(--gold-light); height: 120px; }
.gallery-item--teal-pale  { background: var(--teal-pale); height: 120px; }

.gallery-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cream);
  font-weight: 400;
}
.gallery-label--dark      { color: var(--text-dark); }
.gallery-label--teal-dark { color: var(--teal-dark); }

.gallery-cta {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   16. About
   --------------------------------------------------------- */
.section-about {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: .5px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text .section-eyebrow { margin-bottom: 8px; }
.about-text .section-heading { color: var(--teal-dark); text-align: left; }

.about-body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #5a4a42;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-card-deco {
  opacity: 0.1;
  pointer-events: none;
}

.about-quote {
  position: relative;
  z-index: 2;
}

.about-quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.about-quote-mark--right {
  margin-top: 8px;
  margin-bottom: 0;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin: 8px 0;
}

.about-quote-attr {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   17. Contact & Form
   --------------------------------------------------------- */
.section-contact {
  background: var(--teal);
  padding: 88px 40px 72px;
  text-align: center;
}

.contact-header {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--cream);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-subtext {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--teal-ice);
  margin: 16px auto 0;
  max-width: 400px;
  line-height: 1.9;
  font-weight: 300;
}

.contact-form-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(245,234,228,.97);
  border-radius: var(--radius);
  padding: 44px 48px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--teal-dark);
  font-weight: 400;
}

.form-required { color: var(--gold); }

.form-input {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  border: .5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .4s, box-shadow .4s;
  width: 100%;
  font-weight: 300;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: #c4b0a8; }
.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(80,160,155,.12);
}
.form-input.invalid {
  border-color: #d4726e;
  box-shadow: 0 0 0 3px rgba(212,114,110,.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A97A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-error {
  font-family: var(--font-sans);
  font-size: 10px;
  color: #d4726e;
  letter-spacing: .5px;
  min-height: 15px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.form-submit-btn {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 2px;
}
.form-submit-btn:hover { background: var(--teal); }

/* Form success state */
.form-success {
  background: rgba(245,234,228,.97);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.success-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ---------------------------------------------------------
   18. Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--gold);
  padding: 38px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer-logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1); /* white on gold background */
  mix-blend-mode: screen;
}


.footer-email {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 1px;
  font-weight: 400;
  opacity: .85;
  transition: opacity .3s, letter-spacing .5s;
}
.footer-email:hover { opacity: 1; letter-spacing: 1.5px; }

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 2px;
  font-weight: 400;
  opacity: .85;
  transition: letter-spacing .5s, opacity .3s;
}
.footer-link:hover { letter-spacing: 2.5px; opacity: 1; }

/* ---------------------------------------------------------
   19. Responsive — Tablet (≤ 900px)
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .hide-tablet { display: none !important; }

  .hero-heading { font-size: 52px; }
  .contact-heading { font-size: 38px; }
  .section-heading { font-size: 36px; }
  .quote-text { font-size: 22px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text .section-heading { text-align: center; }
  .about-text .divider-line    { margin: 14px auto 28px; }
  .about-body  { text-align: center; }
  .about-stats { justify-content: center; }

  .contact-form { padding: 36px 32px; }
}

/* ---------------------------------------------------------
   20. Responsive — Mobile (≤ 640px)
   --------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --section-pad: 56px 20px; }

  .hide-mobile { display: none !important; }

  /* Nav */
  #navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .section-hero { padding: 72px 20px 64px; }
  .hero-heading  { font-size: 38px; }
  .hero-tagline  { font-size: 18px; margin-bottom: 32px; }
  .hero-eyebrow  { letter-spacing: 3px; }

  /* Quote */
  .section-quote { padding: 56px 20px; }
  .quote-text    { font-size: 19px; }
  .quote-mark    { font-size: 40px; }

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

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-item--tall,
  .gallery-item--gold-light,
  .gallery-item--teal-pale { height: 120px; }

  /* About */
  .about-stats { gap: 20px; }
  .about-card  { padding: 36px 24px; }
  .about-quote p { font-size: 20px; }

  /* Contact form */
  .section-contact { padding: 64px 20px 56px; }
  .contact-heading { font-size: 30px; }
  .contact-form    { padding: 28px 20px; }
  .form-row        { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
  }

  /* Section headings */
  .section-heading { font-size: 30px; }
  .contact-heading { font-size: 28px; }
}

/* ---------------------------------------------------------
   21. Reduced Motion
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
