:root {
      --bg: #fff;
      --muted: #f7f6f4;
      --text: #222;
      --accent: #b9803d;
      --accent-2: #8b7355;
      --card: #fff;
      --shadow: 0 12px 40px rgba(18,18,18,0.08);
      --radius: 10px;
      --trans: 250ms cubic-bezier(.2,.9,.3,1);
      --max: 1200px;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    
    .wrap {
      width: 92%;
      max-width: var(--max);
      margin: 0 auto;
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 90;
      backdrop-filter: blur(6px);
      background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.5));
      box-shadow: 0 6px 24px rgba(10,10,10,0.04);
    }
    
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
    }
    
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    
    .brand img {
      height: 130px;
      width: auto;
      display: block;
    }
    
    .nav-links {
      display: flex;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    
    .nav-links a {
      font-weight: 500;
      text-decoration: none;
      color: var(--text);
      font-size: 0.88rem;
      letter-spacing: 1px;
      padding: 8px 6px;
      border-radius: 8px;
      transition: var(--trans);
    }
    
    .nav-links a:hover {
      color: var(--accent);
      transform: translateY(-2px);
    }
    
    /* Buttons */
    .btn, .cta {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 600;
      border: 1px solid rgba(0,0,0,0.06);
      text-decoration: none;
      transition: transform var(--trans), box-shadow var(--trans);
    }
    
    .btn {
      background: transparent;
      color: var(--text);
    }
    
    .cta {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 28px rgba(185,130,56,0.12);
    }
    
    .btn:hover, .cta:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    
    .hamburger {
      display: none;
      border: none;
      background: transparent;
      font-size: 20px;
      cursor: pointer;
    }
    
    /* Mobile nav */
    #mobile-nav {
      display: none;
      position: fixed;
      top: 64px;
      left: 12px;
      right: 12px;
      background: var(--card);
      z-index: 79;
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 18px;
    }
    
    #mobile-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    #mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      text-decoration: none;
      color: var(--text);
      letter-spacing: 2px;
    }
    
    /* Hero */
    .hero {
      min-height: 78vh;
      display: grid;
      align-items: center;
      padding: 96px 0 60px;
    }
    
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: center;
    }
    
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.0rem;
      line-height: 1.02;
      margin: 0;
      color: var(--text);
      font-weight: 400;
    }
    
    .hero-sub {
      color: #555;
      font-weight: 300;
      font-size: 1.02rem;
      margin-bottom: 22px;
    }
    
    .hero-actions {
      display: flex;
      gap: 12px;
    }
    
    /* Portrait card */
    .card-portrait {
      background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.85));
      box-shadow: var(--shadow);
      border-radius: 12px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .portrait-frame {
      width: 100%;
      height: 480px;
      overflow: hidden;
      border-radius: 8px;
    }
    
    .portrait-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.5s ease;
      opacity: 0;
    }
    
    .portrait-frame img.loaded {
      opacity: 1;
    }
    
    /* Sections */
    .section {
      padding: 76px 0;
    }
    
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.0rem;
      text-align: center;
      margin-bottom: 30px;
      color: var(--text);
    }
    
    /* Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    
    .item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      height: 360px;
      cursor: pointer;
      background: #111;
    }
    
    .lqip {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center;
      filter: blur(8px);
      transform: scale(1.05);
      transition: opacity 0.5s ease;
    }
    
    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 420ms ease;
      opacity: 0;
    }
    
    .item img.loaded {
      opacity: 1;
    }
    
    .item:hover img {
      transform: scale(1.06);
    }
    
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.52));
      display: flex;
      align-items: flex-end;
      padding: 20px;
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      opacity: 0;
      transform: translateY(8px);
      transition: var(--trans);
    }
    
    .item:hover .overlay {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* About */
    .about .wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .about-text {
      max-width: 700px;
      margin-top: 20px;
    }
    
    .about-text p {
      font-size: 1.05rem;
      color: #444;
      line-height: 1.7;
    }
    
    /* Price */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      justify-items: center;
      margin-top: 32px;
    }
    
    .price-card {
      background: #fff;
      padding: 24px 18px;
      border-radius: 16px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 300px;
    }
    
    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    }
    
    .price-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      margin-bottom: 12px;
      color: #222;
    }
    
    .price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: #b9803d;
    }
    
    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
      color: #555;
      font-size: 0.95rem;
    }
    
    .features li::before {
      content: "✓";
      color: #b9803d;
      margin-right: 6px;
    }
    
    .price-card .cta {
      display: inline-block;
      padding: 10px 18px;
      background: #b9803d;
      color: #fff;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    
    .price-card .cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(185, 130, 56, 0.2);
    }
    
    /* Feedback */
    .feedback-slider {
      position: relative;
      max-width: 640px;
      margin: 2rem auto;
      overflow: hidden;
      height: 280px;
    }
    
    .feedback-card {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
      background: #fff;
      border-radius: 16px;
      padding: 32px 24px 40px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
      text-align: center;
    }
    
    .feedback-card.active {
      opacity: 1;
      transform: translateY(0);
      position: relative;
    }
    
    .feedback-avatar {
      width: 80px;
      height: 80px;
      margin: 0 auto 16px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--accent);
    }
    
    .feedback-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .feedback-text {
      font-size: 1rem;
      color: #444;
      font-style: italic;
      line-height: 1.6;
      margin: 0 0 12px;
    }
    
    .feedback-name {
      font-weight: 600;
      color: var(--accent-2);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
    }
    
    /* Dots */
    .feedback-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    
    .feedback-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2);
      transition: background 0.3s ease;
      cursor: pointer;
    }
    
    .feedback-dots .dot.active {
      background: var(--accent);
    }
    
    /* FAQ */
    .faq-item {
      background: var(--card);
      border-radius: 10px;
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 12px;
    }
    
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      cursor: pointer;
    }
    
    .faq-a {
      padding: 0 16px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 200ms ease, padding 200ms ease;
    }
    
    .faq-a.open {
      max-height: 360px;
      padding: 12px 16px;
    }
    
    /* Contact area */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
    
    .contact-card {
      background: var(--card);
      padding: 22px;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    
    .contact-list {
      list-style: none;
      padding: 0;
      margin: 12px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .contact-list a {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
      padding: 10px;
      border-radius: 8px;
      transition: var(--trans);
    }
    
    .contact-list a:hover {
      background: linear-gradient(90deg, rgba(185,130,56,0.07), rgba(185,130,56,0.03));
      color: var(--accent);
    }
    
    .icon {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(185,130,56,0.12), rgba(185,130,56,0.06));
      color: var(--accent);
    }
    
    footer {
      margin-top: 36px;
      padding: 36px 0;
      background: #0f0f0f;
      color: #ddd;
    }
    
    .footer-note {
      font-size: 0.95rem;
      color: #aaa;
      margin-top: 12px;
    }
    
    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.92);
      z-index: 1200;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 20px;
    }
    
    #lb-img {
      max-width: 94%;
      max-height: 74%;
      border-radius: 8px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }
    
    #lb-caption {
      color: #ddd;
      margin-top: 12px;
      text-align: center;
      max-width: 92%;
    }
    
    /* Animations */
    [data-fade] {
      opacity: 0;
      transform: translateY(8px);
      transition: var(--trans);
    }
    
    [data-fade].in {
      opacity: 1;
      transform: none;
    }
    
    /* Mobile cta visible */
    .mobile-cta {
      display: none;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 340px;
      }
      
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .portrait-frame {
        height: 420px;
      }
    }
    
    @media (max-width: 760px) {
      .nav-links {
        display: none;
      }
      
      .hamburger {
        display: block;
      }
      
      .desktop-cta {
        display: none;
      }
      
      .hero-grid {
        grid-template-columns: 1fr;
      }
      
      .grid {
        grid-template-columns: 1fr;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .brand img {
        height: 80px;
      }
      
      .mobile-cta {
        display: inline-block;
        padding: 10px 14px;
        border-radius: 8px;
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        font-weight: 600;
      }
      
      .hero-actions {
        flex-direction: column;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .section {
        padding: 50px 0;
      }
    }