  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --cream: #FDF8F2;
    --warm-white: #FFFCF8;
    --blush: #F5E6D8;
    --rose: #E8C4A8;
    --terracotta: #C8855A;
    --deep: #3D2B1F;
    --muted: #8A7060;
    --text: #2E1F14;
    --card-bg: #FFFCF9;
  }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }
 
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 248, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rose);
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .nav-logo img {
    height: 42px;
    width: auto;
    display: block;
  }
 
  .nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
 
  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
 
  .nav-links a:hover { color: var(--terracotta); }
 
  @media (max-width: 480px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.72rem; }
  }
 
  /* HERO */
  #hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 2rem 4rem;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
  }
 
  #hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
    top: -150px; right: -150px;
    opacity: 0.4;
  }
 
  #hero::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, #f0d4bc 0%, transparent 70%);
    bottom: -80px; left: -80px;
    opacity: 0.5;
  }
  
    .hero-logo {
      width: 420px;
      height: auto;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 16px rgba(200, 133, 90, 0.2));
    }

    @media (min-width: 768px) {
      .hero-logo {
        width: 550px;
      }
    }

    @media (min-width: 1200px) {
      .hero-logo {
        width: 650px;
      }
    }
 
  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(200, 133, 90, 0.12);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 133, 90, 0.25);
    position: relative;
    z-index: 1;
  }
 
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 8vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--deep);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
 
  h1 em {
    font-style: italic;
    color: var(--terracotta);
  }
 
  .hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 360px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
 
  .btn-primary {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(200, 133, 90, 0.3);
    position: relative;
    z-index: 1;
  }
 
  .btn-primary:hover {
    background: #b8724a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 133, 90, 0.4);
  }
 
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
 
  .scroll-hint span { font-size: 1.2rem; }
 
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
 
  /* SECTION BASE */
  section { padding: 5rem 1.5rem; }
 
  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    display: block;
  }
 
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 600;
    color: var(--deep);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
 
  .section-desc {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 420px;
    font-weight: 300;
    line-height: 1.8;
  }
 
  /* ABOUT */
  #about {
    background: var(--warm-white);
    max-width: 680px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 2px 40px rgba(61, 43, 31, 0.06);
    padding: 4rem 2.5rem;
    margin-top: 0;
  }
 
  @media (max-width: 600px) {
    #about { border-radius: 16px; padding: 2.5rem 1.5rem; }
  }
 
  .about-inner { max-width: 520px; margin: 0 auto; }
 
  .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    border: 1px solid var(--rose);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--deep);
    margin-bottom: 2rem;
    font-weight: 500;
  }
 
  .about-badge span { font-size: 1rem; }
 
  .about-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 1rem;
  }
 
  .about-text strong { color: var(--deep); font-weight: 500; }
 

#services { background: var(--cream); }

.services-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-header {
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* mobile fallback */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--rose);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(61, 43, 31, 0.08);
  border-color: var(--terracotta);
}

/* ICON (supports image OR emoji fallback) */
.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* TEXT WRAPPER */
.service-content {
  flex: 1;
}

/* TITLE */
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

/* SHORT DESCRIPTION (always visible) */
.service-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* BULLETS (hidden by default) */
.service-bullets {
  list-style: none;
  margin-top: 0.6rem;
  padding-left: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.service-bullets li {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.service-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* HOVER REVEAL */
.service-card:hover .service-bullets {
  max-height: 260px;
  opacity: 1;
  margin-top: 0.8rem;
}
 
  /* WHY SECTION */
  #why { background: var(--blush); }
 
  .why-wrap { max-width: 680px; margin: 0 auto; }
 
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }
 
  @media (max-width: 400px) {
    .why-grid { grid-template-columns: 1fr; }
  }
 
  .why-card {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid rgba(200, 133, 90, 0.15);
  }
 
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
 
  .why-label {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
  }
 
  /* CONTACT */
  #contact {
    background: var(--deep);
    text-align: center;
    padding: 5rem 1.5rem;
  }
 
  .contact-wrap { max-width: 480px; margin: 0 auto; }
 
  .contact-section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.75rem;
    display: block;
  }
 
  .contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.25;
  }
 
  .contact-title em { font-style: italic; color: var(--rose); }
 
  .contact-sub {
    font-size: 0.9rem;
    color: rgba(253, 248, 242, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
 
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
 
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(232, 196, 168, 0.25);
    width: 100%;
    max-width: 300px;
    justify-content: center;
    transition: all 0.2s;
  }
 
  .contact-item:hover {
    background: rgba(232, 196, 168, 0.1);
    border-color: var(--rose);
  }
 
  .contact-item-icon { font-size: 1.1rem; }
 
  .btn-contact {
    display: inline-block;
    margin-top: 2rem;
    background: var(--terracotta);
    color: #fff;
    padding: 15px 36px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s;
  }
 
  .btn-contact:hover {
    background: #c8855a;
    transform: translateY(-2px);
  }
 
  /* FOOTER */
  footer {
    background: #2a1c12;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.75rem;
    color: rgba(253, 248, 242, 0.3);
    letter-spacing: 0.04em;
  }
 
  footer span { color: var(--terracotta); }
 
  /* FADE IN */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }