
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:     #0d0d0d;
      --paper:   #f5f0e8;
      --warm:    #e8dcc8;
      --accent:  #c4622d;
      --accent2: #8b3a1a;
      --muted:   #7a7060;
      --gold:    #c9a84c;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
      opacity: 0.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 4rem;
      background: rgba(245,240,232,0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(196,98,45,0.12);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--ink);
    }

    .nav-logo span { color: var(--accent); }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }

    nav a {
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.2s;
    }

    nav a:hover { color: var(--accent); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 6rem;
      position: relative;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5.5vw, 5.8rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--ink);
      opacity: 0;
      animation: fadeUp 0.9s 0.35s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-title .line-break { display: block; }

    .hero-sub {
      margin-top: 2rem;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--muted);
      max-width: 38ch;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-sub-en {
      margin-top: 0.5rem;
      font-size: 0.88rem;
      font-style: italic;
      color: #a89a88;
      max-width: 38ch;
      opacity: 0;
      animation: fadeUp 0.9s 0.6s forwards;
    }

    .hero-cta {
      margin-top: 3rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.9s 0.7s forwards;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 1rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid rgba(13,13,13,0.25);
      padding: 1rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

    /* ── HERO RIGHT ── */
    .hero-right {
      position: relative;
      background: var(--ink);
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 1.2s 0.4s forwards;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 60%, rgba(196,98,45,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.2) 0%, transparent 50%);
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mandala {
      width: 420px;
      height: 420px;
      opacity: 0.18;
      animation: rotateSlow 40s linear infinite;
    }

    .hero-quote {
      position: absolute;
      bottom: 4rem;
      left: 3rem;
      right: 3rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(245,240,232,0.8);
      line-height: 1.4;
      border-left: 2px solid var(--accent);
      padding-left: 1.5rem;
    }

    .hero-quote small {
      display: block;
      margin-top: 0.8rem;
      font-size: 0.75rem;
      font-style: normal;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── STRIP ── */
    .strip {
      background: var(--accent);
      padding: 1.2rem 6rem;
      display: flex;
      gap: 4rem;
      overflow: hidden;
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      white-space: nowrap;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }

    .strip-item::before { content: '◆'; font-size: 0.5rem; color: var(--gold); }

    /* ── SECTION BASE ── */
    section { padding: 7rem 6rem; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--ink);
      max-width: 18ch;
    }

    .section-title em { font-style: italic; color: var(--accent); }

    /* ── WHAT IS ── */
    .what-is {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .what-is-left .section-title { margin-bottom: 2rem; }

    .what-is-text {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
      color: #4a4540;
    }

    .what-is-text + .what-is-text { margin-top: 1.2rem; }

    .what-is-right {
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .fact-card {
      background: var(--warm);
      border-left: 3px solid var(--accent);
      padding: 1.5rem 2rem;
      transition: transform 0.25s;
    }

    .fact-card:hover { transform: translateX(6px); }

    .fact-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .fact-card p {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--muted);
    }

    /* ── BENEFITS ── */
    .benefits { background: var(--ink); color: var(--paper); }

    .benefits .section-label { color: var(--gold); }
    .benefits .section-title { color: var(--paper); margin-bottom: 4rem; }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 3rem;
    }

    .benefit-cell {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem 2rem;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }

    .benefit-cell::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .benefit-cell:hover { background: rgba(196,98,45,0.08); }
    .benefit-cell:hover::after { transform: scaleX(1); }

    .benefit-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(196,98,45,0.3);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .benefit-cell h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 0.8rem;
      color: var(--paper);
    }

    .benefit-cell p {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(245,240,232,0.55);
    }

    /* ── APPLY ── */
    .apply-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .apply-list {
      list-style: none;
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .apply-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.6;
      color: #4a4540;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(196,98,45,0.12);
    }

    .apply-list li:last-child { border-bottom: none; }

    .apply-list .icon {
      width: 28px;
      height: 28px;
      background: var(--accent);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .apply-visual {
      background: var(--warm);
      padding: 3rem;
      position: relative;
    }

    .apply-visual::before {
      content: '❝';
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem;
      color: var(--accent);
      opacity: 0.2;
      position: absolute;
      top: 1rem;
      left: 2rem;
      line-height: 1;
    }

    .apply-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.5;
      color: var(--ink);
      position: relative;
      z-index: 1;
    }

    .apply-quote-attr {
      margin-top: 1.5rem;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* ── PROCESS ── */
    .process { background: var(--warm); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 4rem;
      border: 1px solid rgba(196,98,45,0.2);
    }

    .step {
      padding: 2.5rem 2rem;
      border-right: 1px solid rgba(196,98,45,0.2);
      position: relative;
      transition: background 0.3s;
    }

    .step:last-child { border-right: none; }
    .step:hover { background: rgba(196,98,45,0.06); }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: var(--accent);
      opacity: 0.25;
      line-height: 1;
    }

    .step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0.5rem 0 0.8rem;
      color: var(--ink);
    }

    .step p {
      font-size: 0.84rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
    }

    /* ── ABOUT ── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      align-items: center;
    }

    .about-portrait {
      aspect-ratio: 3/4;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .about-portrait-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-portrait-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 50%, rgba(196,98,45,0.4) 0%, transparent 65%);
    }

    .portrait-placeholder {
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      color: rgba(245,240,232,0.15);
      position: relative;
      z-index: 1;
      user-select: none;
    }

    .about-tag {
      position: absolute;
      bottom: 2rem;
      right: -1rem;
      background: var(--accent);
      color: white;
      padding: 0.8rem 1.5rem;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .about-right .section-title { margin-bottom: 1.5rem; }

    .about-text {
      font-size: 0.97rem;
      font-weight: 300;
      line-height: 1.85;
      color: #4a4540;
    }

    .about-text + .about-text { margin-top: 1rem; }

    .credentials {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .credential {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--muted);
    }

    .credential::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--accent);
    }

    /* ── CONTACT ── */
    .contact { background: var(--ink); }

    .contact .section-label { color: var(--gold); }
    .contact .section-title { color: var(--paper); margin-bottom: 3rem; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-field label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.5);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.9rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--paper);
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .form-field select option { background: var(--ink); }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--accent);
    }

    .form-field textarea { height: 130px; }

    .contact-info {
      padding-top: 1rem;
    }

    .contact-info p {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,240,232,0.6);
      margin-bottom: 2.5rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .contact-item-icon {
      width: 36px;
      height: 36px;
      background: rgba(196,98,45,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .contact-item-text {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--paper);
    }

    .contact-item-label {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.35);
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      padding: 2rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(196,98,45,0.15);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--paper);
    }

    .footer-logo span { color: var(--accent); }

    footer p {
      font-size: 0.75rem;
      color: rgba(245,240,232,0.3);
      letter-spacing: 0.05em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes rotateSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 2rem; }
      nav ul { gap: 1.5rem; }

      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 6rem 2rem 3rem; }
      .hero-right { min-height: 55vw; }
      .mandala { width: 260px; height: 260px; }

      section { padding: 5rem 2rem; }

      .what-is,
      .apply-grid,
      .contact-grid,
      .about { grid-template-columns: 1fr; gap: 3rem; }

      .benefits-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .step { border-right: none; border-bottom: 1px solid rgba(196,98,45,0.2); }

      .strip { padding: 1rem 2rem; gap: 2rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }

      .form-row { grid-template-columns: 1fr; }
    }
  