  :root {
    --cream: #FAFAF7;
    --warm-white: #F5F3EE;
    --paper: #EDE9E0;
    --gold: #B8922A;
    --gold-light: #D4AA4A;
    --gold-pale: #F0E6CC;
    --ink: #1C1A17;
    --ink-muted: #5A5448;
    --ink-light: #8A8278;
    --accent: #C4763A;
    --border: #DDD8CE;
    --border-light: #EAE6DC;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    background: rgba(250,250,247,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5rem; height: 70px;
  }
  .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
  .nav-brand-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold-pale); }
  .nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); letter-spacing: 0.03em; display: block; line-height: 1.2; }
  .nav-brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 400; display: block; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; font-weight: 400; transition: color 0.25s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: var(--ink); padding: 0.65rem 1.6rem; text-decoration: none; font-weight: 500; transition: background 0.3s; border-radius: 2px; }
  .nav-cta:hover { background: var(--gold); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 70px 5rem 0;
    position: relative; overflow: hidden;
  }
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(184,146,42,0.07) 0%, transparent 60%); pointer-events: none; }
  .hero-dots {
    position: absolute; right: 0; top: 70px; width: 45%; height: 100%;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.6; pointer-events: none;
  }
  .hero-left { position: relative; z-index: 2; padding-right: 4rem; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 1.8rem;
    animation: fadeUp 0.7s ease both;
  }
  .hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 5.5vw, 5.2rem); font-weight: 300; line-height: 1.05; color: var(--ink); animation: fadeUp 0.7s 0.1s ease both; }
  .hero-h1 em { font-style: italic; color: var(--gold); }
  .hero-h1 strong { font-weight: 700; display: block; }
  .hero-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic;
    color: var(--ink-muted); line-height: 1.65; margin: 1.8rem 0 2rem;
    padding-left: 1.2rem; border-left: 2px solid var(--gold-light);
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-desc { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 2.5rem; animation: fadeUp 0.7s 0.3s ease both; }
  .hero-btns { display: flex; gap: 1rem; animation: fadeUp 0.7s 0.4s ease both; }
  .btn-primary { background: var(--ink); color: var(--cream); padding: 0.9rem 2.2rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; text-decoration: none; border-radius: 2px; transition: background 0.3s; font-family: 'DM Sans', sans-serif; }
  .btn-primary:hover { background: var(--gold); }
  .btn-outline { border: 1px solid var(--border); color: var(--ink-muted); padding: 0.9rem 2.2rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; text-decoration: none; border-radius: 2px; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; animation: fadeUp 0.9s 0.3s ease both; }
  .hero-logo-wrap { position: relative; width: 300px; height: 300px; }
  .hero-logo-ring { position: absolute; inset: -20px; border: 1px solid var(--border); border-radius: 50%; animation: spinRing 20s linear infinite; }
  .hero-logo-ring::before { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  @keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .hero-logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold-pale); box-shadow: 0 20px 60px rgba(28,26,23,0.1); }
  .hero-badge { position: absolute; bottom: -1rem; right: -2.5rem; background: var(--cream); border: 1px solid var(--border-light); padding: 1.1rem 1.5rem; border-radius: 4px; box-shadow: 0 8px 30px rgba(28,26,23,0.07); }
  .hero-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .hero-badge-label { font-size: 0.68rem; color: var(--ink-muted); letter-spacing: 0.08em; margin-top: 3px; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  /* MARQUEE */
  .marquee-wrap { background: var(--ink); padding: 0.9rem 0; overflow: hidden; white-space: nowrap; }
  .marquee-track { display: inline-flex; gap: 2.5rem; animation: marquee 22s linear infinite; }
  .marquee-item { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(250,250,247,0.55); font-weight: 400; }
  .marquee-dot { color: var(--gold-light); font-size: 0.5rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTION COMMONS */
  section { padding: 7rem 5rem; }
  .section-label { font-size: 0.63rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 300; color: var(--ink); line-height: 1.15; }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.9; max-width: 520px; margin-top: 0.9rem; }
  .section-header { margin-bottom: 3.5rem; }

  /* SERVICES */
  #services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
  .service-card { padding: 2rem 1.6rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--cream); transition: background 0.3s; position: relative; overflow: hidden; }
  .service-card:nth-child(5n) { border-right: none; }
  .service-card:nth-last-child(-n+5) { border-bottom: none; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, var(--gold), var(--accent)); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; }
  .service-card:hover { background: var(--warm-white); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num { font-family: 'Cormorant Garamond', serif; font-size: 0.68rem; color: var(--gold-light); letter-spacing: 0.1em; margin-bottom: 1.1rem; font-weight: 600; }
  .service-icon-box { width: 42px; height: 42px; background: var(--gold-pale); border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; font-size: 1.2rem; transition: background 0.3s; }
  .service-card:hover .service-icon-box { background: var(--paper); }
  .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; line-height: 1.3; }
  .service-desc { font-size: 0.76rem; color: var(--ink-muted); line-height: 1.7; }

  /* QUOTES */
  #creations { background: var(--warm-white); }
  .quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .quote-card { background: var(--cream); border: 1px solid var(--border-light); border-radius: 4px; padding: 2rem 2.2rem; position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
  .quote-card:hover { box-shadow: 0 12px 40px rgba(28,26,23,0.07); transform: translateY(-3px); }
  .quote-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 7rem; color: var(--gold-pale); position: absolute; top: -1.2rem; left: 1rem; line-height: 1; pointer-events: none; }
  .quote-card-service { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.9rem; }
  .quote-card-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.6; position: relative; z-index: 1; }
  .quote-card-accent { position: absolute; bottom: 0; right: 0; width: 3px; height: 45%; background: linear-gradient(to top, var(--gold), transparent); }

  /* QUOTE BANNER */
  .quote-banner { background: var(--ink); padding: 5rem; text-align: center; }
  .quote-banner-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 300; font-style: italic; color: var(--warm-white); line-height: 1.4; max-width: 800px; margin: 0 auto 1.2rem; }
  .quote-banner-text span { color: var(--gold-light); }
  .quote-banner-attr { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,250,247,0.4); }

  /* PROCESS */
  #process { background: var(--cream); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px; background: linear-gradient(to right, transparent, var(--border), var(--border), transparent); }
  .process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
  .step-dot { width: 48px; height: 48px; background: var(--cream); border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--gold); transition: all 0.3s; }
  .process-step:hover .step-dot { background: var(--gold); color: var(--cream); }
  .step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
  .step-desc { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.7; }

  /* CONTACT */
  #contact { background: var(--warm-white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
  .contact-left h2 em { font-style: italic; color: var(--gold); }
  .contact-left p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 2.2rem; }
  .contact-items { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--cream); border: 1px solid var(--border-light); border-radius: 4px; text-decoration: none; transition: border-color 0.3s, box-shadow 0.3s; }
  .contact-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,146,42,0.08); }
  .contact-item-icon { width: 38px; height: 38px; background: var(--gold-pale); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .contact-item-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 2px; }
  .contact-item-val { font-size: 0.9rem; color: var(--ink); font-weight: 400; }
  .contact-right { background: var(--cream); border: 1px solid var(--border-light); border-radius: 4px; padding: 2.5rem; }
  .contact-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--ink); }
  .form-group { margin-bottom: 1.1rem; }
  .form-group label { display: block; font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.45rem; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.72rem 1rem; border: 1px solid var(--border); border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--ink); background: var(--warm-white); transition: border-color 0.3s; outline: none; appearance: none; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit { width: 100%; background: var(--ink); color: var(--cream); border: none; padding: 0.9rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; cursor: pointer; border-radius: 3px; font-family: 'DM Sans', sans-serif; transition: background 0.3s; margin-top: 0.5rem; }
  .form-submit:hover { background: var(--gold); }
  .wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 400; text-decoration: none; transition: transform 0.3s; }
  .wa-float:hover { transform: scale(1.1); }
  .wa-float svg { width: 26px; height: 26px; fill: white; }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(250,250,247,0.45); padding: 3rem 5rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
  .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.05em; }
  .footer-brand small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.63rem; letter-spacing: 0.2em; color: rgba(250,250,247,0.3); margin-top: 2px; }
  .footer-copy { font-size: 0.68rem; text-align: center; }
  .footer-links { display: flex; gap: 2rem; justify-content: flex-end; }
  .footer-links a { font-size: 0.7rem; color: rgba(250,250,247,0.4); text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold-light); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 1024px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .hero { grid-template-columns: 1fr; padding: 90px 1.5rem 4rem; text-align: center; }
    .hero-right { display: none; }
    .hero-left { padding-right: 0; }
    .hero-eyebrow { justify-content: center; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(5n) { border-right: 1px solid var(--border); }
    .service-card:nth-child(2n) { border-right: none; }
    .service-card:nth-last-child(-n+5) { border-bottom: 1px solid var(--border); }
    .service-card:nth-last-child(-n+2) { border-bottom: none; }
    .quotes-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .process-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { justify-content: center; }
    .quote-banner { padding: 3rem 1.5rem; }
  }