
    :root {
      --bg: #faf8f6;
      --ink: #1b1b1b;
      --muted: #6b7280;
      --green: #1e3a34;
      --green-light: #2d5348;
      --red: #7f1d1d;
      --gold: #c49a3a;
      --gold-light: #d4a84f;
      --white: #ffffff;
      --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
      --shadow: 0 10px 30px rgba(0,0,0,.08);
      --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
    }
    
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg); 
      color: var(--ink); 
      font-family: Inter, system-ui, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    
    .wrap { width: min(1320px, 92vw); margin-inline: auto; }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(250, 248, 246, .95);
      backdrop-filter: blur(12px);
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,.06);
      transition: all .3s ease;
    }
    nav.scrolled {
      background: rgba(255, 255, 255, .98);
      box-shadow: var(--shadow-sm);
    }
    .navInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: .5rem;
      transition: transform .3s ease;
    }
    .logo img {
      height: 48px;
      width: auto;
      display: block;
    }
    .logoText {
      font-family: "Playfair Display", serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--green);
    }
    .logo:hover {
      transform: scale(1.05);
    }
    .navLinks {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    .navLinks a {
      font-weight: 500;
      font-size: .95rem;
      transition: color .2s;
      position: relative;
    }
    .navLinks a:hover {
      color: var(--gold);
    }
    .navLinks a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .3s ease;
    }
    .navLinks a:hover::after {
      width: 100%;
    }
    .bookBtn {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: white !important;
      padding: .6rem 1.4rem;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      transition: all .3s ease;
    }
    .bookBtn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .bookBtn::after { display: none; }

    .mobileMenuBtn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--ink);
    }
    
    .mobileMenu {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: white;
      box-shadow: var(--shadow-lg);
      z-index: 999;
      padding: 1rem 0;
      animation: slideDown .3s ease;
    }
    
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .mobileMenu.active {
      display: block;
    }
    
    .mobileMenu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .mobileMenu li {
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    
    .mobileMenu li:last-child {
      border-bottom: none;
    }
    
    .mobileMenu a {
      display: block;
      padding: 1rem 1.5rem;
      font-weight: 500;
      transition: background .2s;
    }
    
    .mobileMenu a:hover {
      background: var(--bg);
      color: var(--gold);
    }
    
    .mobileMenu .bookBtn {
      margin: 1rem 1.5rem;
      display: block;
      text-align: center;
    }


    /* Hero */
    header {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: 
        radial-gradient(1400px 700px at 70% 20%, rgba(196,154,58,.12), transparent 65%),
        radial-gradient(1000px 500px at 30% 80%, rgba(30,58,52,.08), transparent 60%),
        linear-gradient(180deg, #fff 0%, #f9f7f4 40%, #f4f2ef 100%);
      padding-top: 80px;
    }
    .hero {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 3rem;
      align-items: center;
    }
    .heroContent {
      animation: fadeInUp 1s ease;
      padding-bottom: 10px;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .kicker {
      display: inline-block;
      color: var(--gold);
      letter-spacing: .14em;
      font-weight: 700;
      text-transform: uppercase;
      font-size: .8rem;
      margin-bottom: .5rem;
      padding: .4rem .9rem;
      background: rgba(196,154,58,.12);
      border-radius: 999px;
    }
    h1 {
      font-family: "Playfair Display", serif;
      font-weight: 800;
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      line-height: 1.08;
      margin: 1rem 0 1.2rem;
      letter-spacing: -.02em;
    }
    .sub {
      color: var(--muted);
      font-size: clamp(1.05rem, 2.2vw, 1.2rem);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 52ch;
    }
    .heroCtas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .cta {
      display: inline-flex;
      gap: .6rem;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.8rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 1rem;
      transition: all .3s ease;
      cursor: pointer;
      box-shadow: var(--shadow);
    }
    .cta-primary {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: white;
    }
    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      filter: brightness(1.08);
    }
    .cta-secondary {
      background: white;
      color: var(--green);
      border: 2px solid var(--green);
    }
    .cta-secondary:hover {
      background: var(--green);
      color: white;
      transform: translateY(-3px);
    }
    
    .badges {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .5rem 1rem;
      background: white;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 999px;
      font-size: .88rem;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
    }
    
    .heroImage {
      position: relative;
      animation: fadeInRight 1s ease .3s both;
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .heroImage img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
    }
    .heroImage::before {
      content: '';
      position: absolute;
      inset: -10px;
      background: linear-gradient(135deg, var(--gold), var(--green));
      border-radius: 28px;
      z-index: -1;
      opacity: .15;
      filter: blur(20px);
    }

    /* Floating elements */
    .floatBadge {
      position: absolute;
      background: white;
      padding: .8rem 1.2rem;
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      font-weight: 600;
      animation: float 3s ease-in-out infinite;
      font-size: .9rem;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    .floatBadge1 { top: 10%; right: -5%; animation-delay: 0s; }
    .floatBadge2 { bottom: 15%; left: -8%; animation-delay: 1s; }

    /* Sparkles */
    .sparkles { position: absolute; inset: 0; pointer-events: none; }
    .sparkles span {
      position: absolute;
      width: 3px;
      height: 3px;
      background: radial-gradient(circle, #fff, var(--gold));
      border-radius: 50%;
      opacity: .6;
      animation: twinkle var(--t) ease-in-out infinite;
      box-shadow: 0 0 8px rgba(196,154,58,.6);
    }
    @keyframes twinkle {
      0%, 100% { opacity: .3; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.5) translateY(-8px); }
    }

    /* Sections */
    section {
      padding: 100px 0;
      position: relative;
    }
    .sectionHeader {
      text-align: center;
      max-width: 70ch;
      margin: 0 auto 3.5rem;
    }
    .sectionKicker {
      color: var(--gold);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .85rem;
      margin-bottom: .5rem;
    }
    h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.15;
    }
    .sectionDesc {
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.7;
    }

    /* About */
    .aboutGrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .aboutContent h2 { text-align: left; }
    .aboutText {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .statsGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .stat {
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: all .3s ease;
    }
    .stat:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    .statNumber {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--green);
      font-family: "Playfair Display", serif;
    }
    .statLabel {
      color: var(--muted);
      font-size: .9rem;
      font-weight: 500;
      margin-top: .3rem;
    }
    .aboutImages {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      position: relative;
    }
    .aboutImages img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: var(--shadow);
      transition: transform .3s ease;
    }
    .aboutImages img:hover {
      transform: scale(1.03);
    }
    .aboutImages .large {
      grid-column: span 2;
      height: 360px;
    }

    /* Portfolio */
    #portfolio {
      background: linear-gradient(180deg, white 0%, var(--bg) 100%);
    }
    .portfolioGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .portfolioCard {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all .4s ease;
    }
    .portfolioCard:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    .portfolioCard img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .portfolioCard:hover img {
      transform: scale(1.08);
    }
    .portfolioContent {
      padding: 1.5rem;
    }
    .portfolioTag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--green);
      margin-bottom: .5rem;
    }
    .portfolioCard p {
      color: var(--muted);
      line-height: 1.6;
    }

    /* Packages */
    #packages {
      background: var(--green);
      color: white;
    }
    #packages .sectionKicker { color: var(--gold-light); }
    #packages h2, #packages .sectionDesc { color: white; }
    .packagesGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .packageCard {
      background: rgba(255,255,255,.98);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }
    .packageCard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .packageCard:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(0,0,0,.2);
    }
    .packageCard h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      color: var(--ink);
      margin-bottom: .8rem;
    }
    .packagePrice {
      font-size: 3rem;
      font-weight: 800;
      color: var(--red);
      margin-bottom: .5rem;
      font-family: "Playfair Display", serif;
    }
    .packageDetails {
      color: var(--muted);
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .packageFeatures {
      list-style: none;
      margin-bottom: 2rem;
    }
    .packageFeatures li {
      color: var(--muted);
      padding: .6rem 0;
      display: flex;
      align-items: center;
      gap: .7rem;
    }
    .packageFeatures li::before {
      content: '✓';
      color: var(--green);
      font-weight: 800;
      font-size: 1.2rem;
    }
    .packageNote {
      background: rgba(196,154,58,.1);
      padding: 1.2rem;
      border-radius: 12px;
      color: var(--white);
      font-size: .95rem;
      margin-top: 2rem;
      border-left: 4px solid var(--gold);
    }

    /* Testimonials */
    #testimonials {
      background: linear-gradient(135deg, #0f1f1c 0%, #1a2f2a 100%);
      color: white;
    }
    .testimonialGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .testimonialCard {
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 2rem;
      transition: all .3s ease;
    }
    .testimonialCard:hover {
      background: rgba(255,255,255,.12);
      transform: translateY(-5px);
    }
    .stars {
      color: #ffd479;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      letter-spacing: .2rem;
    }
    .testimonialCard p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1rem;
      color: rgba(255,255,255,.9);
    }
    .testimonialAuthor {
      color: rgba(255,255,255,.6);
      font-weight: 600;
    }
    .reviewCta {
      text-align: center;
      margin-top: 2.5rem;
    }
    .reviewBtn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: white;
      color: var(--green);
      padding: 1rem 2rem;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: var(--shadow-lg);
      transition: all .3s ease;
    }
    .reviewBtn:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(255,255,255,.2);
    }

    /* Contact */
    .contactSection {
      background: white;
    }
    .contactGrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }
    .contactInfo {
      background: var(--bg);
      padding: 2.5rem;
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .contactInfo h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      color: var(--green);
    }
    .infoItem {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .infoItem:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .infoIcon {
      font-size: 1.5rem;
      min-width: 40px;
    }
    .infoDetails strong {
      display: block;
      margin-bottom: .3rem;
      color: var(--ink);
    }
    .infoDetails a {
      color: var(--gold);
      font-weight: 500;
    }
    .infoDetails a:hover {
      text-decoration: underline;
    }
    .socialLinks {
      display: flex;
      justify-content: center;
      gap: .8rem;
      margin-top: 1.5rem;
    }
    .socialLink {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      
      color: white;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: all .3s ease;
    }
    .socialLink:hover {
      background: var(--gold);
      transform: translateY(-3px);
    }
    
    .mapContainer {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 200px;
      margin-top: 1.5rem;
    }
    .mapContainer iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Form */
    .formContainer {
      background: var(--bg);
      padding: 2.5rem;
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .formGroup {
      margin-bottom: 1.5rem;
    }
    label {
      display: block;
      font-weight: 600;
      margin-bottom: .5rem;
      color: var(--ink);
    }
    input, textarea {
      width: 100%;
      padding: .9rem 1.2rem;
      border: 2px solid rgba(0,0,0,.08);
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      transition: all .3s ease;
      background: white;
    }
    input:focus, textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(196,154,58,.1);
    }
    textarea {
      min-height: 140px;
      resize: vertical;
    }
    button[type="submit"] {
      width: 100%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: white;
      font-weight: 800;
      font-size: 1.05rem;
      border: none;
      padding: 1.1rem;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: all .3s ease;
    }
    button[type="submit"]:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    #thanks {
      display: none;
      background: rgba(30,58,52,.1);
      color: var(--green);
      padding: 1rem;
      border-radius: 12px;
      margin-top: 1rem;
      text-align: center;
      font-weight: 600;
    }

    /* Footer */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.7);
      padding: 3rem 0 2rem;
      text-align: center;
    }
    .footerContent {
      margin-bottom: 1rem;
      line-height: 1.8;
    }
    footer a {
      color: var(--gold);
    }
    footer a:hover {
      text-decoration: underline;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 10px;
      }
      .heroImage {
        order: -1;
      }
      .heroImage img {
        height: 400px;
      }
      .floatBadge { display: none; }
      
      .aboutGrid {
        grid-template-columns: 1fr;
      }
      .contactGrid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .navLinks {
        display: none;
      }
      .mobileMenuBtn {
        display: block;
      }
      section {
        padding: 60px 0;
      }
      h1 {
        font-size: 2.2rem;
      }
      .heroCtas {
        flex-direction: column;
      }
      .cta {
        width: 100%;
        justify-content: center;
      }
      .portfolioGrid {
        grid-template-columns: 1fr;
      }
      .packagesGrid {
        grid-template-columns: 1fr;
      }
      .testimonialGrid {
        grid-template-columns: 1fr;
      }
      .statsGrid {
        grid-template-columns: 1fr;
      }
      .aboutImages {
        grid-template-columns: 1fr;
      }
    }

    /* Scroll animations */
    .fadeIn {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s ease;
    }
    .fadeIn.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .img-box {
      width: 192px;
      height: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .img-box img {
      width: 192px;
      height: 192px;
    }