  :root {
    --black: #080808;
    --black-mid: #111111;
    --black-light: #1a1a1a;
    --gold: #C9A84C;
    --gold-light: #E8C96E;
    --gold-pale: #f5e6b8;
    --cream: #faf6ed;
    --text: #e8e0d0;
    --text-muted: #8a7d6a;
  }
 
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }
 
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
  }
  .cursor-follower {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
  }
 
  #particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
  }
 
  @keyframes floatParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
  }
 
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
    transition: padding 0.4s ease;
  }
  nav.scrolled {
    padding: 18px 60px;
    background: rgba(8,8,8,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
 
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    text-transform: uppercase;
  }
  .logo span { font-style: italic; color: var(--text); }
 
  nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  nav ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  nav ul a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  nav ul a:hover { color: var(--gold-light); }
  nav ul a:hover::after { width: 100%; }
 
  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }
  .nav-cta::after { display: none !important; }
 
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 60px 60px;
    overflow: hidden;
  }
 
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
    z-index: 0;
  }
 
  .hero-lines {
    position: absolute;
    right: 0; top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  .hero-lines::before {
    content: '';
    position: absolute;
    right: 8%; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
    animation: linePulse 4s ease-in-out infinite;
  }
  .hero-lines::after {
    content: '';
    position: absolute;
    right: 16%; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent);
    animation: linePulse 4s ease-in-out infinite 1s;
  }
  @keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
 
  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
 
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
 
  .hero-content .hero-tag {
    justify-content: center;
  }
 
  .hero-content .hero-desc {
    max-width: 100%;
  }
 
  .hero-content .hero-actions {
    justify-content: center;
  }
 
  .hero-photo-wrap {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s forwards 0.6s;
  }
 
  @keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
  }
 
  .hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
  }
 
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.5s ease, transform 0.6s ease;
  }
  .hero-photo:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.03);
  }
 
  .hero-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--text-muted);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .hero-photo-placeholder::before {
    content: '';
    width: 64px; height: 64px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
  }
 
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, transparent 55%),
                linear-gradient(to top, rgba(8,8,8,0.4) 0%, transparent 40%);
    pointer-events: none;
  }
 
  .hero-photo-frame {
    position: absolute;
    top: 16px; left: -16px;
    right: 16px; bottom: -16px;
    border: 1px solid rgba(201,168,76,0.2);
    z-index: -1;
    pointer-events: none;
  }
 
  .hero-photo-badge {
    position: absolute;
    bottom: 24px; left: -24px;
    padding: 18px 24px;
    background: rgba(8,8,8,0.92);
    border: 1px solid rgba(201,168,76,0.35);
    backdrop-filter: blur(8px);
    z-index: 2;
  }
  .hero-photo-badge-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    font-style: italic;
  }
  .hero-photo-badge-title {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }
 
  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.3s;
  }
  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }
 
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }
 
  .hero-desc {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.8s;
  }
 
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 1s;
  }
 
  .btn-primary {
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.4s ease;
  }
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover { background: var(--gold-light); }
 
  .btn-ghost {
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }
  .btn-ghost svg { transition: transform 0.3s; }
  .btn-ghost:hover { color: var(--gold); }
  .btn-ghost:hover svg { transform: translateX(5px); }
 
  .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 60px;
    margin: 20px 0;
  }
  .divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }
  .divider-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    font-size: 0.9rem;
    color: var(--gold);
  }
  .divider-icon span { transform: rotate(-45deg); display: block; }
 
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
    margin: 80px 60px;
    position: relative;
    z-index: 1;
  }
  .stat-item {
    padding: 50px 40px;
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }
  .stat-item:hover::before { transform: scaleX(1); }
  .stat-item:hover { background: rgba(201,168,76,0.03); }
 
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
 
  section { position: relative; z-index: 1; }
 
  .section-header {
    padding: 0 60px;
    margin-bottom: 70px;
  }
  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-tag::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold-light);
  }
 
  .about {
    padding: 100px 0;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 60px;
    align-items: center;
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
  }
  .about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent 60%);
    pointer-events: none;
    z-index: 1;
  }
 
  .about-video-wrap { cursor: pointer; }
 
  .about-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
  }
 
  .about-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    background: var(--black-light);
    z-index: 0;
    transition: opacity 0.4s;
  }
  .about-video-fallback small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-style: normal;
    letter-spacing: 0.15em;
    color: rgba(201,168,76,0.4);
  }
  .about-video-fallback small code {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    padding: 2px 6px;
  }
  .about-video-fallback.hidden { opacity: 0; pointer-events: none; }
 
  .video-play-icon {
    width: 64px; height: 64px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .about-video-wrap:hover .video-play-icon {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }
 
  .video-progress-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(201,168,76,0.15);
    z-index: 3;
  }
  .video-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transition: width 0.3s linear;
  }
 
  .video-mute-btn {
    position: absolute;
    bottom: 16px; right: 16px;
    width: 38px; height: 38px;
    background: rgba(8,8,8,0.75);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 4;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(4px);
  }
  .video-mute-btn:hover {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
  }
  .about-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.1em;
    flex-direction: column;
    gap: 16px;
  }
  .about-image-placeholder::before {
    content: '';
    width: 60px; height: 60px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
  }
  .about-image-frame {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid rgba(201,168,76,0.25);
    pointer-events: none;
    z-index: -1;
  }
  .about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1;
  }
  .about-badge-text {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    padding: 0 10px;
    margin-top: 4px;
  }
  .about-text { }
  .about-desc {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .about-desc strong { color: var(--text); font-weight: 400; }
  .about-list {
    list-style: none;
    margin: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .about-list li {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .about-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    flex-shrink: 0;
  }
 
  .services {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--black), var(--black-mid), var(--black));
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 60px;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.12);
  }
  .service-card {
    padding: 60px 44px;
    border-right: 1px solid rgba(201,168,76,0.12);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
  }
  .service-card:last-child { border-right: none; }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: rgba(201,168,76,0.03); }
 
  .service-icon {
    width: 56px; height: 56px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 1.4rem;
    transition: border-color 0.3s, background 0.3s;
  }
  .service-card:hover .service-icon {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--text);
  }
  .service-desc {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .service-link {
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }
  .service-card:hover .service-link { gap: 14px; }
 
  .testimonials {
    padding: 100px 60px;
    overflow: hidden;
  }
  .testimonials-track {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
  }
  .testimonials-track:hover { animation-play-state: paused; }
 
  @keyframes scrollTrack {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
 
  .testimonial-card {
    width: 380px;
    flex-shrink: 0;
    padding: 48px 40px;
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    background: var(--black-light);
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 30px;
    line-height: 1;
  }
  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.8rem;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 28px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
  }
  .author-info { }
  .author-name {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text);
  }
  .author-detail {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
  }
 
  .process {
    padding: 100px 60px;
    background: var(--black-mid);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }
  .process-step {
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .process-step.visible { opacity: 1; transform: translateY(0); }
 
  .step-num {
    width: 56px; height: 56px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    position: relative;
    background: var(--black-mid);
    transition: all 0.4s ease;
  }
  .process-step:hover .step-num {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
  }
  .step-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
 
  .cta-section {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.08), transparent 70%);
  }
  .cta-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%; transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .cta-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: -20px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .cta-title em { font-style: italic; color: var(--gold-light); }
  .cta-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 48px;
  }
  .cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    max-width: 620px;
    margin: 0 auto;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.2);
  }
  .cta-form-field {
    background: var(--black);
    position: relative;
  }
  .cta-form-field.full { grid-column: 1 / -1; }
  .cta-form-field label {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 14px 20px 0;
  }
  .cta-form-field input,
  .cta-form-field select,
  .cta-form-field textarea {
    width: 100%;
    padding: 6px 20px 14px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    display: block;
  }
  .cta-form-field input::placeholder,
  .cta-form-field textarea::placeholder { color: rgba(138,125,106,0.5); }
  .cta-form-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: none;
  }
  .cta-form-field select option { background: var(--black-mid); color: var(--text); }
  .cta-form-field .select-arrow {
    position: absolute;
    right: 20px; bottom: 14px;
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
  }
  .cta-form-field textarea {
    resize: none;
    height: 90px;
  }
  .cta-form-field.error label { color: #c0392b; }
  .cta-form-field.error input,
  .cta-form-field.error select { color: #c0392b; }
  .cta-form-submit {
    grid-column: 1 / -1;
    padding: 18px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .cta-form-submit:hover { background: var(--gold-light); }
  .cta-form-submit svg { transition: transform 0.3s; }
  .cta-form-submit:hover svg { transform: translateX(4px); }
 
  footer {
    padding: 60px 60px 40px;
    border-top: 1px solid rgba(201,168,76,0.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
  }
  .footer-logo span { font-style: italic; color: var(--text-muted); }
  .footer-links {
    display: flex;
    gap: 32px;
  }
  .footer-links a {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: right;
    letter-spacing: 0.1em;
  }
 
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav ul { display: none; }
    .hero, .stats, .section-header, .about-inner, .services-grid,
    .testimonials, .process, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo-wrap { order: -1; }
    .hero-photo-badge { left: 12px; bottom: 12px; }
    .hero-photo-frame { display: none; }
    .stats { grid-template-columns: 1fr; margin: 40px 24px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
    .about-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .cta-form { flex-direction: column; }
    footer { grid-template-columns: 1fr; text-align: center; }
    .footer-copy { text-align: center; }
    .footer-links { justify-content: center; }
  }