:root {
      --bg: #F7F1F0;
      --text: #262220;
      --primary: #A15C38;
      --primary-dark: #8A4E2F;
      --muted: #C3A6A0;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(38, 34, 32, 0.08);
      --shadow-lg: 0 16px 40px rgba(38, 34, 32, 0.12);
      --radius: 24px;
      --container: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Lora', serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: 'Poppins', sans-serif; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 241, 240, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(195, 166, 160, 0.55);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: var(--primary);
      color: white;
      display: grid;
      place-items: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 800;
      box-shadow: var(--shadow);
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
    }

    .desktop-nav, .desktop-actions {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .desktop-nav a {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      transition: color .25s ease;
    }

    .desktop-nav a:hover,
    .footer-links a:hover,
    .contact-link:hover {
      color: var(--primary);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all .25s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      padding-inline: 8px;
    }

    .btn-ghost:hover { color: var(--primary); }

    .menu-toggle {
      display: none;
      background: transparent;
      border: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: '';
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      margin: 5px auto;
      transition: .25s ease;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(195, 166, 160, 0.7);
      padding: 14px 0 20px;
    }

    .mobile-menu.open { display: block; }
    .mobile-nav {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    .mobile-nav a, .mobile-actions a {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      padding: 10px 8px;
    }

    .mobile-actions {
      display: grid;
      gap: 10px;
      padding-top: 14px;
      border-top: 1px solid rgba(195, 166, 160, 0.6);
    }

    .hero {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(247,241,240,.78), rgba(247,241,240,.82)),
                  url('https://images.unsplash.com/photo-1515169067868-5387ec356754?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      z-index: -2;
      transform: scale(1.02);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: auto 0 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(247,241,240,0), var(--bg));
      z-index: -1;
    }

    .hero-inner {
      width: min(900px, calc(100% - 32px));
      padding: 90px 0;
      animation: fadeUp .8s ease both;
    }

    .eyebrow {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.7);
      color: var(--primary);
      border: 1px solid rgba(195, 166, 160, 0.6);
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    h1, .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0;
    }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.06;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.9;
      max-width: 700px;
      margin: 0 auto 36px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .section {
      padding: 88px 0;
    }

    .section-light { background: #fff; }
    .section-muted { background: var(--bg); }
    .section-primary { background: var(--primary); color: white; }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }

    .section-title {
      font-size: clamp(34px, 4vw, 52px);
      color: var(--text);
      margin-bottom: 12px;
    }

    .section-primary .section-title,
    .section-primary p { color: white; }

    .section-subtitle {
      margin: 0;
      font-size: 18px;
      line-height: 1.8;
    }

    .benefits-grid,
    .packages-grid,
    .footer-grid {
      display: grid;
      gap: 28px;
    }

    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .benefit-card,
    .package-card,
    .faq-item,
    .testimonial-card {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .benefit-card {
      background: var(--bg);
      border: 1px solid rgba(195, 166, 160, .35);
      padding: 28px;
    }

    .benefit-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: white;
      color: var(--primary);
      font-size: 26px;
      box-shadow: 0 6px 20px rgba(38, 34, 32, 0.06);
      margin-bottom: 20px;
    }

    .card-title,
    .faq-question,
    .footer-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      line-height: 1.1;
      margin: 0 0 10px;
      color: var(--primary);
    }

    .benefit-card p,
    .package-card p,
    .faq-answer,
    .footer-copy,
    .footer-note { line-height: 1.8; }

    .packages-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .package-card {
      background: white;
      overflow: hidden;
      border: 1px solid rgba(195, 166, 160, .45);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .package-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .package-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #eee;
    }

    .package-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .package-badge {
      position: absolute;
      left: 18px;
      top: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: var(--primary);
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 700;
    }

    .package-body { padding: 24px; }
    .package-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      margin: 0 0 8px;
    }

    .package-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 16px 0 20px;
    }

    .meta-pill {
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--bg);
      color: var(--primary);
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 600;
    }

    .package-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 20px;
    }

    .price {
      font-family: 'Poppins', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--primary);
    }

    .center-action {
      text-align: center;
      margin-top: 44px;
    }

    .testimonial-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--bg);
      border: 1px solid rgba(195, 166, 160, .35);
      padding: 42px 34px;
      text-align: center;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stars {
      letter-spacing: 6px;
      color: var(--primary);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      line-height: 1.35;
      color: var(--primary);
      margin: 0 0 20px;
      font-style: italic;
    }

    .testimonial-name {
      font-weight: 700;
      margin-bottom: 6px;
    }

    .testimonial-role {
      font-family: 'Poppins', sans-serif;
      color: var(--muted);
      font-size: 13px;
    }

    .testimonial-controls {
      margin-top: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .round-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(195,166,160,.75);
      background: white;
      color: var(--primary);
      font-size: 20px;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: all .25s ease;
    }

    .round-btn:hover,
    .dot.active { background: var(--primary); color: white; }

    .dots {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border: 0;
      border-radius: 50%;
      background: rgba(195,166,160,.55);
      cursor: pointer;
    }

    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: white;
      border: 1px solid rgba(195, 166, 160, .45);
      overflow: hidden;
    }

    .faq-trigger {
      width: 100%;
      background: transparent;
      border: 0;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      cursor: pointer;
    }

    .faq-question {
      font-size: 28px;
      color: var(--text);
      margin: 0;
      padding-right: 20px;
    }

    .faq-icon {
      font-size: 26px;
      color: var(--primary);
      transition: transform .25s ease;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon { transform: rotate(180deg); }

    .faq-answer {
      display: none;
      padding: 0 28px 24px;
      font-size: 16px;
    }

    .faq-item.open .faq-answer { display: block; }

    .cta-box {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }

    .cta-box p {
      font-size: 20px;
      line-height: 1.8;
      margin: 0 0 32px;
      color: rgba(255,255,255,.92);
    }

    .site-footer {
      background: var(--bg);
      border-top: 1px solid rgba(195, 166, 160, .65);
      padding-top: 70px;
    }

    .footer-grid {
      grid-template-columns: 1.3fr .8fr .9fr;
      align-items: start;
    }

    .footer-copy { max-width: 420px; }
    .footer-title {
      font-size: 26px;
      margin-bottom: 18px;
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-top: 22px;
    }

    .socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: white;
      border: 1px solid rgba(195,166,160,.7);
      color: var(--primary);
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 700;
      transition: all .25s ease;
    }

    .socials a:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .contact-link,
    .footer-note {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
    }

    .footer-bottom {
      margin-top: 40px;
      padding: 24px 0 34px;
      border-top: 1px solid rgba(195,166,160,.65);
      text-align: center;
      font-size: 14px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1080px) {
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .packages-grid,
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      .desktop-nav, .desktop-actions { display: none; }
      .menu-toggle { display: inline-block; }
      .hero { min-height: 560px; }
      .section { padding: 72px 0; }
      .testimonial-text { font-size: 28px; }
    }

    @media (max-width: 640px) {
      .container { width: min(var(--container), calc(100% - 22px)); }
      .brand-name { font-size: 22px; }
      .benefits-grid, .packages-grid { grid-template-columns: 1fr; }
      .hero-inner { padding: 74px 0; }
      .hero p, .section-subtitle, .cta-box p { font-size: 16px; }
      .btn { width: 100%; }
      .hero-actions { flex-direction: column; }
      .faq-trigger { padding: 20px 20px; }
      .faq-answer { padding: 0 20px 20px; }
      .faq-question { font-size: 24px; }
      .testimonial-card { padding: 30px 22px; min-height: 360px; }
      .testimonial-text { font-size: 24px; }
    }