/* ========== CSS Custom Properties ========== */
:root {
  --plum-deep: #3D1C2E;
  --plum: #6B2152;
  --plum-light: #8B3A6A;
  --plum-muted: #A8507A;
  --plum-pale: #F5E6F0;
  --plum-bg: #FDF6FA;
  --amber: #C8956C;
  --amber-light: #D4A87C;
  --amber-pale: #FDF0E6;
  --amber-dark: #A07048;
  --cream: #FFFAF7;
  --warm-white: #FEF8F4;
  --text-dark: #1A0A12;
  --text-body: #3D2030;
  --text-muted: #7A5568;
  --text-light: #A88898;
  --border: #F0D8E4;
  --shadow-sm: 0 2px 8px rgba(61, 28, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(61, 28, 46, 0.10);
  --shadow-lg: 0 20px 60px rgba(61, 28, 46, 0.14);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ========== 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);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ========== Typography ========== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-dark); line-height: 1.15; font-weight: 500; }
em { font-style: italic; color: var(--plum); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}
.section-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107, 33, 82, 0.3);
}
.btn-primary:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 33, 82, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--plum);
  background: var(--plum-pale);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: #fff;
}
.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(253, 246, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum);
}
.nav-logo-icon { color: var(--plum); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--plum);
  color: #fff !important;
  border-radius: 60px;
  font-size: 0.875rem;
  transition: all 0.35s var(--ease-out) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--plum-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107, 33, 82, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  transition: color 0.3s;
}
.mobile-menu-link:hover { color: var(--plum); }
.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 40px;
  background: var(--plum);
  color: #fff !important;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--plum-bg) 50%, var(--amber-pale) 100%);
}
.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(107, 33, 82, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-headline em {
  color: var(--plum);
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual { position: relative; height: 700px; }
.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 55%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.hero-image-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--plum);
  color: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ========== Marquee ========== */
.marquee {
  background: var(--plum);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  font-style: italic;
}
.marquee-dot {
  color: var(--amber) !important;
  font-size: 0.6rem !important;
  font-style: normal !important;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== Services ========== */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--plum);
  opacity: 0.4;
  font-weight: 600;
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* ========== About ========== */
.about {
  padding: 120px 0;
  background: var(--plum-bg);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 33, 82, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-primary {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/9;
}
.about-img-primary img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--plum-bg);
  aspect-ratio: 4/5;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--plum);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .exp-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.about-experience-badge .exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}
.about-content { position: relative; z-index: 1; }
.about-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.value-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== Gallery ========== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-header .section-eyebrow { justify-content: center; }
.gallery-header .section-eyebrow::before { display: none; }
.gallery-header .section-sub { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 28, 46, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}
.gallery-item--large { grid-column: span 5; grid-row: span 2; }
.gallery-item--large img { min-height: 620px; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item { height: 290px; }

/* ========== Testimonials ========== */
.testimonials {
  padding: 120px 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.03'%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;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.testimonials-header .section-eyebrow { color: var(--amber-light); }
.testimonials-header .section-eyebrow::before { background: var(--amber); }
.testimonials-header .section-headline { color: #fff; }
.testimonials-header .section-headline em { color: var(--amber-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 8px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}
.testimonial-service {
  font-size: 0.78rem;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== CTA Banner ========== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-bg) 0%, var(--amber-pale) 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B2152' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-eyebrow { color: var(--plum) !important; }
.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== Contact ========== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { position: sticky; top: 120px; }
.contact-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail svg { color: var(--plum); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--plum);
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--plum-light); }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107, 33, 82, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { color: var(--plum); margin-bottom: 20px; }
.form-success h4 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo svg { color: var(--amber); }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--amber-light); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--amber); }

/* ========== Animations ========== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 500px; order: -1; }
  .hero-image-main { width: 70%; height: 75%; }
  .hero-image-float { width: 50%; height: 50%; }
  .hero-content { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { sticky: unset; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 7; }
  .gallery-item--wide { grid-column: span 5; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-visual { height: 400px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about { padding: 80px 0; }
  .about-img-secondary { right: -20px; bottom: -20px; }
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item--large img { min-height: 300px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item { height: 220px; }
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-visual { height: 320px; }
  .hero-image-main { width: 80%; height: 75%; }
  .hero-image-float { width: 55%; height: 50%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 1; }
  .footer-links { grid-template-columns: 1fr; }
}
