/* ============================================================
   LAKEWOOD WALLPAPER STUDIO — Boutique Interior Studio Design
   Palette: blush-beige / dusty rose / espresso / matte black
   Fonts: Playfair Display (headings) + Nunito (body)
   ============================================================ */

/* --- Font fallback metric overrides (prevent CLS on font swap) --- */
@font-face {
  font-family: 'Nunito-fallback';
  src: local('Segoe UI'), local('Tahoma'), local('Arial');
  size-adjust: 103%;
  ascent-override: 100%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Playfair-fallback';
  src: local('Georgia'), local('Times New Roman');
  size-adjust: 97%;
  ascent-override: 91%;
  descent-override: 23%;
  line-gap-override: 0%;
}

/* --- CSS Variables --- */
:root {
  --bg-blush: #F5EDE4;
  --bg-rose: #E8D5C4;
  --bg-dusty: #D4B8A0;
  --bg-espresso: #3C2415;
  --bg-espresso-light: #5A3A28;
  --bg-cream: #FBF7F2;
  --text-espresso: #3C2415;
  --text-cream: #FBF7F2;
  --text-muted: #8A7060;
  --accent-cocoa: #5A3A28;
  --accent-black: #1A1A1A;
  --accent-gold: #C4A265;
  --border-light: rgba(60, 36, 21, 0.12);
  --border-rose: rgba(212, 184, 160, 0.5);
  --shadow-soft: 0 4px 20px rgba(60, 36, 21, 0.08);
  --shadow-card: 0 2px 12px rgba(60, 36, 21, 0.06);
  --shadow-hover: 0 8px 32px rgba(60, 36, 21, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', 'Playfair-fallback', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', 'Nunito-fallback', 'Segoe UI', Tahoma, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-espresso);
  background: var(--bg-blush);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cocoa); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold); }
ul, ol { list-style: none; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-espresso);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

.form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-espresso);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.btn-cocoa {
  background: var(--accent-cocoa);
  color: var(--text-cream);
  border-radius: var(--radius);
}
.btn-cocoa::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
  transform: translateX(-50%);
}
.btn-cocoa:hover { background: var(--bg-espresso); color: var(--text-cream); }
.btn-cocoa:hover::after { width: 80%; }
.btn-outline {
  background: transparent;
  color: var(--text-cream);
  border: 1.5px solid var(--text-cream);
  border-radius: var(--radius);
}
.btn-outline:hover { background: var(--text-cream); color: var(--text-espresso); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.text-link {
  color: var(--accent-cocoa);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.text-link:hover { border-bottom-color: var(--accent-gold); color: var(--accent-gold); }

/* ============================================================
   HEADER — Single Row (merged)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-espresso);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  height: var(--header-h);
  contain: layout style;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-cream);
  white-space: nowrap;
}
.logo a:hover { color: var(--accent-gold); }
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-gold);
  color: var(--bg-espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Navigation --- */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-rose);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
  height: 36px;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--accent-gold); }
.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 2px;
  transition: transform var(--transition);
}

/* --- Dropdown (wallpaper unroll animation) --- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.35s;
  padding: 8px 0;
  z-index: 100;
}
.nav-list > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.nav-list > li:hover > a .nav-arrow { transform: rotate(180deg); }
.dropdown li {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-list > li:hover .dropdown li {
  opacity: 1;
  transform: translateY(0);
}
.nav-list > li:hover .dropdown li:nth-child(1) { transition-delay: 0.05s; }
.nav-list > li:hover .dropdown li:nth-child(2) { transition-delay: 0.1s; }
.nav-list > li:hover .dropdown li:nth-child(3) { transition-delay: 0.15s; }
.nav-list > li:hover .dropdown li:nth-child(4) { transition-delay: 0.2s; }
.nav-list > li:hover .dropdown li:nth-child(5) { transition-delay: 0.25s; }
.nav-list > li:hover .dropdown li:nth-child(6) { transition-delay: 0.3s; }
.nav-list > li:hover .dropdown li:nth-child(7) { transition-delay: 0.35s; }
.nav-list > li:hover .dropdown li:nth-child(8) { transition-delay: 0.4s; }
.nav-list > li:hover .dropdown li:nth-child(9) { transition-delay: 0.45s; }
.nav-list > li:hover .dropdown li:nth-child(10) { transition-delay: 0.5s; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-espresso);
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--bg-rose);
  color: var(--accent-cocoa);
  padding-left: 26px;
}
.dropdown a svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-cocoa);
  flex-shrink: 0;
  opacity: 0.7;
}

/* --- Header Contact --- */
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bg-rose);
  white-space: nowrap;
}
.header-contact a:hover { color: var(--accent-gold); }
.header-contact svg { width: 16px; height: 16px; fill: currentColor; }
.header-email { display: flex; }

/* --- Mobile Toggle --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-cream);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — with form on right
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,36,21,0.82) 0%, rgba(60,36,21,0.45) 60%, rgba(60,36,21,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-text h1 {
  color: var(--text-cream);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-text h1 span {
  color: var(--accent-gold);
  font-style: italic;
}
.hero-text p {
  color: rgba(251, 247, 242, 0.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-form {
  flex: 0 0 420px;
  max-width: 420px;
  min-height: 390px;
}
.hero-form .feedback-form-container {
  background: rgba(60, 36, 21, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.hero-form .form-title {
  color: var(--text-cream);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 20px;
  min-height: 1.625rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { flex: 1; }
.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-espresso);
  background: var(--bg-cream);
  border: 1.5px solid var(--border-rose);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
  margin-bottom: 12px;
}
.form-submit { text-align: center; }
.submit-btn {
  width: 100%;
  min-height: 52px;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: var(--bg-espresso);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.submit-btn:hover {
  background: var(--accent-cocoa);
  color: var(--text-cream);
  transform: translateY(-1px);
}
#form-success {
  text-align: center;
  padding: 24px;
}
#form-success p {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 500;
}
/* Hero form text colors */
.hero-form .form-group input,
.hero-form .form-group textarea {
  background: rgba(251, 247, 242, 0.92);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-blush { background: var(--bg-blush); }
.section-cream { background: var(--bg-cream); }
.section-rose { background: var(--bg-rose); }
.section-espresso { background: var(--bg-espresso); color: var(--text-cream); }
.section-espresso h2,
.section-espresso h3 { color: var(--text-cream); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 16px; }
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  margin: 16px auto;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: italic;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 32px 24px;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-cocoa);
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================================
   ABOUT / TEXT-IMAGE SECTIONS
   ============================================================ */
.text-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.text-image.reverse { direction: rtl; }
.text-image.reverse > * { direction: ltr; }
.text-image-content h2 { margin-bottom: 16px; }
.text-image-content p { color: var(--text-muted); margin-bottom: 16px; }
.text-image-content ul { margin-bottom: 20px; }
.text-image-content li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.text-image-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}
.text-image-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.text-image-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ============================================================
   LOCATIONS GRID
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.location-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 500;
  color: var(--text-espresso);
}
.location-card:hover {
  background: var(--accent-cocoa);
  color: var(--text-cream);
  transform: translateX(4px);
}
.location-card svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}
.location-card:hover svg { fill: var(--text-cream); }

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--border-light);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-espresso);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--text-cream);
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--bg-rose);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-style: italic;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 120px 0 60px;
  margin-top: var(--header-h);
  text-align: center;
  background: var(--bg-espresso);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover;
  opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--text-cream);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--bg-rose);
  font-size: 1.1rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--accent-gold); }
.breadcrumb span { color: var(--bg-rose); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 8px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-espresso);
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-cocoa);
  transition: var(--transition);
}
.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-hover); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-cocoa);
}
.contact-card h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--text-espresso);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-espresso);
  color: var(--bg-rose);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: var(--bg-rose);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
  opacity: 0.8;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--bg-rose);
  font-size: 0.88rem;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--accent-gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--bg-rose);
  font-size: 0.88rem;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--bg-rose);
  opacity: 0.6;
}

/* ============================================================
   STICKY QUOTE BUTTON & MODAL
   ============================================================ */
.sticky-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  will-change: transform;
  transform: translateZ(0);
  contain: layout style;
}
.sticky-quote .btn-cocoa {
  padding: 14px 28px;
  font-size: 0.85rem;
  box-shadow: 0 4px 24px rgba(60, 36, 21, 0.3);
  border-radius: var(--radius);
}
.sticky-quote .btn-cocoa:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(60, 36, 21, 0.4); }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 36, 21, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 64px rgba(0,0,0,0.2);
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { color: var(--text-espresso); }
.modal-content .form-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-espresso);
}

/* ============================================================
   LAZY MAP
   ============================================================ */
.map-lazy { width: 100%; height: 400px; position: relative; }
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}
.map-load-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--accent-cocoa);
  color: var(--text-cream);
  border: none;
  border-radius: var(--radius);
  padding: 20px 32px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.map-load-btn svg { fill: var(--accent-gold); }
.map-load-btn:hover { background: var(--bg-espresso); }
.map-lazy iframe { width: 100%; height: 100%; border: 0; display: block; border-radius: var(--radius-lg); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.js-fade-ready.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { order: 1; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-form { flex: none; max-width: 480px; width: 100%; order: 2; }
  .text-image { grid-template-columns: 1fr; gap: 32px; }
  .text-image.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  body { font-family: 'Segoe UI', Tahoma, sans-serif; }
  h1, h2, h3, h4, h5, h6,
  .form-title,
  .hero-form .form-title {
    font-family: Georgia, 'Times New Roman', serif;
  }
  .mobile-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--bg-espresso);
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .main-nav.active { transform: translateX(0); }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-list > li > a {
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .dropdown.mobile-open { max-height: 600px; }
  .dropdown li { opacity: 1; transform: none; }
  .dropdown a { color: var(--bg-rose); padding: 10px 16px; }
  .dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--accent-gold); padding-left: 24px; }
  .dropdown a svg { fill: var(--accent-gold); }
  .header-contact { display: none; }
  .hero { min-height: auto; padding: 24px 0 32px; }
  .hero-content { gap: 28px; padding-top: 24px; padding-bottom: 24px; }
  .hero-form { max-width: 100%; min-height: 400px; }
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .sticky-quote { bottom: 16px; right: 50%; transform: translateX(50%); }
  .modal-content { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .form-row { flex-direction: column; gap: 12px; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-form { min-height: 520px; }
  .hero-form .feedback-form-container { padding: 24px 20px; }
  .locations-grid { grid-template-columns: 1fr; }
}
