*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum: #6B4F6E;
  --plum-deep: #4A3550;
  --plum-light: #9B7FA0;
  --plum-pale: #E8DDE6;
  --plum-ghost: #F5EFF4;
  --amber: #D4A574;
  --amber-light: #E8C9A0;
  --amber-pale: #FDF0E4;
  --cream: #FDF8F4;
  --white: #FFFFFF;
  --text: #2D1F33;
  --text-light: #6B5A6E;
  --text-muted: #9B8EA0;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(107, 79, 110, 0.06);
  --shadow: 0 4px 24px rgba(107, 79, 110, 0.10);
  --shadow-lg: 0 12px 48px rgba(107, 79, 110, 0.14);
  --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(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

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

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

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 79, 110, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 248, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}

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

.main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 100px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--plum);
  background: var(--plum-pale);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--plum);
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  border-color: var(--plum);
  box-shadow: 0 4px 16px rgba(107, 79, 110, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 79, 110, 0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--plum);
  border-color: var(--plum-pale);
}
.btn--ghost:hover {
  background: var(--plum-pale);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--plum-pale);
  transform: translateY(-2px);
}

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

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  background: var(--amber-pale);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  color: var(--plum-deep);
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--plum-ghost) 50%, var(--amber-pale) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob--1 {
  width: 500px;
  height: 500px;
  background: var(--plum-pale);
  top: -100px;
  right: -100px;
}

.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--amber-pale);
  bottom: -50px;
  left: -100px;
  animation-delay: -3s;
}

.blob--3 {
  width: 300px;
  height: 300px;
  background: var(--plum-pale);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
  opacity: 0.3;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 380px;
  height: 480px;
  position: relative;
  z-index: 2;
}

.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: cardFloat 4s ease-in-out infinite alternate;
}

.stat-card--1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.stat-card--2 {
  bottom: 80px;
  right: -30px;
  animation-delay: -1.5s;
}

.stat-card--3 {
  bottom: -10px;
  left: 20px;
  animation-delay: -3s;
}

@keyframes cardFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card--1 .stat-icon { background: var(--plum-pale); color: var(--plum); }
.stat-card--2 .stat-icon { background: var(--amber-pale); color: var(--amber); }
.stat-card--3 .stat-icon { background: #E8F4E8; color: #4A7C59; }

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(107, 79, 110, 0.06);
}

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

.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: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--plum-deep);
}

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

/* ABOUT */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--plum-ghost) 100%);
}

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

.about-media {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
}

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

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--plum-pale);
  border-bottom: 1px solid var(--plum-pale);
}

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

.about-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}

.about-stat .stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* GALLERY */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--1 { grid-column: 1 / 8; grid-row: 1 / 2; height: 300px; }
.gallery-item--2 { grid-column: 8 / 13; grid-row: 1 / 2; height: 300px; }
.gallery-item--3 { grid-column: 1 / 5; grid-row: 2 / 3; height: 280px; }
.gallery-item--4 { grid-column: 5 / 9; grid-row: 2 / 3; height: 280px; }
.gallery-item--5 { grid-column: 9 / 13; grid-row: 2 / 3; height: 280px; }

/* REVIEWS */
.reviews {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--plum-ghost) 0%, var(--amber-pale) 100%);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(107, 79, 110, 0.06);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--plum-pale);
  opacity: 0.6;
}

.review-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--plum);
}

/* CTA */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob--cta1 {
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  animation: blobFloat 6s ease-in-out infinite alternate;
}

.blob--cta2 {
  width: 300px;
  height: 300px;
  background: rgba(155, 127, 160, 0.25);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -80px;
  left: -80px;
  animation: blobFloat 7s ease-in-out infinite alternate-reverse;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-title {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

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

.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--plum-pale);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-row p,
.contact-row a {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-row a:hover {
  color: var(--plum);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--plum-pale);
}

.form-title {
  font-size: 28px;
  color: var(--plum-deep);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--plum-pale);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: 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, 79, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  color: #4A7C59;
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 24px;
  color: var(--plum-deep);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-light);
}

/* FOOTER */
.site-footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-mark {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-contact a {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber-light);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  font-size: 13px;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  text-align: center;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--plum-pale);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .main-nav .btn--primary {
    margin-top: 8px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .hero-visual { order: -1; }
  .hero-card--main { width: 280px; height: 360px; }
  .stat-card--1 { left: 0; top: 0; }
  .stat-card--2 { right: 0; }
  .stat-card--3 { left: 10px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: -20px; bottom: -20px; width: 160px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: block; text-align: center; }
  .contact-info { text-align: center; }
  .contact-row { justify-content: center; }
  .contact-info > .btn { margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
  .about-stats { justify-content: center; }
  .about-content > .btn { margin: 0 auto; }

  .gallery-item--1 { grid-column: 1 / -1; height: 240px; }
  .gallery-item--2 { grid-column: 1 / 7; height: 220px; }
  .gallery-item--3 { grid-column: 7 / -1; height: 220px; }
  .gallery-item--4 { grid-column: 1 / 4; height: 200px; }
  .gallery-item--5 { grid-column: 4 / -1; height: 200px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-card--main { width: 240px; height: 300px; }
  .stat-card { padding: 12px 14px; }
  .stat-icon { width: 32px; height: 32px; }
  .stat-icon svg { width: 16px; height: 16px; }
  .stat-label { font-size: 11px; }
  .about-img-main { height: 360px; }
  .about-img-accent { width: 120px; }
  .badge-number { font-size: 24px; }
  .contact-form-wrap { padding: 24px; }
}
