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

:root {
  --plum:        #6B2F5B;
  --plum-dark:   #4E1F42;
  --plum-light:  #8B4072;
  --amber:       #E8A838;
  --amber-light: #F5C563;
  --cream:       #FFF8F0;
  --cream-dark:  #FDF0E0;
  --warm-white:  #FFFBF7;
  --text:        #2D1F2B;
  --text-light:  #6B5265;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(107,47,91,0.08);
  --shadow-lg:   0 12px 48px rgba(107,47,91,0.12);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--plum);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

em { font-style: italic; color: var(--amber); }

a { color: var(--plum); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-secondary:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ───────────────────────────────── */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,47,91,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--plum);
}
.logo:hover { color: var(--plum); }

.logo-icon { flex-shrink: 0; }

nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}
nav a:hover { color: var(--plum); background: rgba(107,47,91,0.06); }

.nav-cta {
  background: var(--plum);
  color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--plum-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all var(--transition);
  position: absolute;
  left: 10px;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -7px; left: 0; }
.hamburger::after { content: ''; bottom: -7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); bottom: 0; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--plum);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 100px;
  flex: 1;
}

.hero-content { color: #fff; }

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero-headline {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-headline em { color: var(--amber); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-actions .btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--plum-dark);
}
.hero-actions .btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--plum-dark);
}
.hero-actions .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero-actions .btn-secondary:hover {
  background: #fff;
  color: var(--plum);
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.hero-trust .trust-item svg { color: var(--amber); flex-shrink: 0; }

/* Hero visuals */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-img-main {
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-float {
  position: absolute;
  bottom: 40px;
  left: -40px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--plum);
  z-index: 2;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--amber);
  color: var(--plum-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 3;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(232,168,56,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(232,168,56,0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(107,47,91,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,168,56,0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { stroke: var(--amber) !important; }

.service-card h3 {
  margin-bottom: 10px;
  color: var(--plum);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-eyebrow { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--plum);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 1rem;
  color: var(--plum);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-item a { color: var(--amber); font-weight: 700; }
.contact-item a:hover { color: var(--plum); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(107,47,91,0.15);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: #E8F5E9;
  border-radius: var(--radius);
  margin-top: 16px;
  text-align: center;
}
.form-success svg { color: #1B5E20; }
.form-success p { color: #1B5E20; font-weight: 600; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer .logo-text { color: #fff; }

.footer-brand p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-address p:last-child {
  margin-top: 8px;
  opacity: 0.6;
  font-size: 0.85rem;
}

/* ── Mobile menu ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,251,247,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(107,47,91,0.08);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }
  nav.open { transform: translateY(0); }

  nav ul {
    flex-direction: column;
    gap: 4px;
  }
  nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }
  .hero-visual { height: 420px; order: -1; }
  .hero-img-float { left: 16px; width: 160px; bottom: 24px; }
  .hero-badge { right: 16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { right: 16px; width: 140px; bottom: -20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { height: 340px; }
  .hero-img-float { width: 130px; }
  .about-stats { gap: 24px; }
  .contact-form-wrap { padding: 24px; }
}
