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

    :root {
      --black: #111111;
      --white: #ffffff;
      --off:   #f9f8f6;
      --muted: rgba(17,17,17,0.4);
      --logo:  'Cormorant SC', Georgia, serif;
      --serif: 'EB Garamond', Georgia, serif;
      --sans:  'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    .noise {
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      transform: translateZ(0);
      isolation: isolate;
      contain: strict;
      mix-blend-mode: overlay;
    }

    /* ── PAGE LOAD CURTAIN ── */
    .curtain {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: curtainOut 1.4s cubic-bezier(0.76,0,0.24,1) 0.5s forwards;
    }

    .curtain-text {
      font-family: var(--logo);
      font-size: 1.6rem;
      letter-spacing: 0.15em;
      color: var(--white);
      opacity: 0;
      animation: curtainTextIn 0.6s ease 0.1s forwards, curtainTextOut 0.4s ease 0.6s forwards;
    }

    @keyframes curtainTextIn { to { opacity: 1; } }
    @keyframes curtainTextOut { to { opacity: 0; } }

    @keyframes curtainOut {
      to { transform: translateY(-100%); }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.9rem 3rem;
      transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
    }

    nav.scrolled {
      background: rgba(10,10,10,0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 0.6rem 3rem;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.3s;
    }

    .nav-logo:hover { opacity: 0.8; }

    .nav-logo svg { transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
    .nav-logo:hover svg { transform: translateY(-1px); }

    nav.scrolled .nav-logo svg .logo-wordmark { font-size: 1rem; }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-tag {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .nav-cta {
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.35);
      padding: 0.55rem 1.1rem;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: translateY(101%);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    .nav-cta:hover::before { transform: translateY(0); }
    .nav-cta span { position: relative; z-index: 1; transition: color 0.3s; }
    .nav-cta:hover span { color: var(--black); }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero-img-wrap {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 115%;
      will-change: transform;
      animation: heroZoomIn 2.2s cubic-bezier(0.16,1,0.3,1) forwards;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(0.78);
    }

    @keyframes heroZoomIn {
      from { transform: scale(1.15); }
      to   { transform: scale(1); }
    }

    .hero-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(0,0,0,0.04) 0%,
        rgba(0,0,0,0.0) 35%,
        rgba(0,0,0,0.62) 100%
      );
    }

    /* Hero text reveal */
    .hero-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 3.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .hero-title-wrap { overflow: hidden; }

    .hero-title {
      font-family: var(--logo);
      font-style: normal;
      font-size: clamp(3rem, 7.5vw, 5.8rem);
      font-weight: 500;
      line-height: 1.05;
      color: var(--white);
      letter-spacing: 0.07em;
      transform: translateY(110%);
      animation: titleRise 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
    }

    .hero-title-italic {
      font-family: var(--logo);
      font-style: normal;
      font-size: clamp(3rem, 7.5vw, 5.8rem);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      letter-spacing: 0.06em;
      opacity: 0.82;
      transform: translateY(110%);
      animation: titleRise 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
    }

    @keyframes titleRise {
      to { transform: translateY(0); }
    }

    .hero-meta {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 1.2rem;
      opacity: 0;
      animation: fadeIn 1s ease 1.1s forwards;
    }

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

    .hero-sub {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.03em;
      line-height: 1.7;
      max-width: 210px;
    }

    .hero-btn {
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
    }

    .hero-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: translateX(-101%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    .hero-btn:hover::before { transform: translateX(0); }
    .hero-btn span { position: relative; z-index: 1; transition: color 0.35s; }
    .hero-btn:hover span { color: var(--black); }

    /* ── SCROLL INDICATOR ── */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      opacity: 0;
      animation: fadeIn 1s ease 1.6s forwards;
      cursor: pointer;
    }

    .scroll-mouse {
      width: 22px;
      height: 34px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 11px;
      display: flex;
      justify-content: center;
      padding-top: 5px;
      position: relative;
    }

    .scroll-wheel {
      width: 3px;
      height: 7px;
      background: rgba(255,255,255,0.7);
      border-radius: 2px;
      animation: wheelScroll 2s ease-in-out infinite;
    }

    @keyframes wheelScroll {
      0%   { transform: translateY(0); opacity: 1; }
      60%  { transform: translateY(8px); opacity: 0; }
      61%  { transform: translateY(0); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    .scroll-arrows {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .scroll-arrow {
      width: 8px;
      height: 8px;
      border-right: 1px solid rgba(255,255,255,0.5);
      border-bottom: 1px solid rgba(255,255,255,0.5);
      transform: rotate(45deg);
      animation: arrowFade 2s ease-in-out infinite;
    }

    .scroll-arrow:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
    .scroll-arrow:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }

    @keyframes arrowFade {
      0%, 100% { opacity: 0.2; }
      50%       { opacity: 1; }
    }

    .scroll-txt {
      font-size: 0.48rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                  transform 0.9s cubic-bezier(0.16,1,0.3,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.32s; }
    .reveal-delay-4 { transition-delay: 0.44s; }

    /* ── STORY + STATS ── */
    .story {
      max-width: 1080px;
      margin: 0 auto;
      padding: 8rem 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .story-eyebrow {
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.4rem;
    }

    .story-title {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 400;
      line-height: 1.12;
      margin-bottom: 1.8rem;
    }

    .story-title i { font-style: italic; color: #888; }

    .story-rule {
      width: 36px;
      height: 1px;
      background: var(--black);
      margin-bottom: 1.8rem;
    }

    .story-body {
      font-size: 0.87rem;
      line-height: 1.9;
      color: rgba(17,17,17,0.55);
    }

    .story-body p + p { margin-top: 1rem; }

    .stats { display: flex; flex-direction: column; gap: 2.2rem; }

    .stat-item {}

    .stat-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 400;
      color: var(--black);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .stat-lbl {
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .stat-desc {
      font-size: 0.82rem;
      line-height: 1.75;
      color: rgba(17,17,17,0.45);
    }

    .stat-sep { height: 1px; background: #efefef; }

    /* ── SPECIALTIES ── */
    .spec-wrap {
      border-top: 1px solid #ebebeb;
      max-width: 1080px;
      margin: 0 auto;
      padding: 4rem 3rem 6rem;
    }

    .spec-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 2.5rem;
    }

    .spec-heading {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
    }

    .spec-note {
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: #e8e8e8;
      border: 1px solid #e8e8e8;
    }

    .spec-cell {
      background: var(--white);
      padding: 2rem 1.6rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      cursor: default;
      transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .spec-cell::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--black);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    .spec-cell:hover { background: var(--off); }
    .spec-cell:hover::after { transform: scaleX(1); }

    .spec-icon {
      width: 28px;
      height: 28px;
      opacity: 0.35;
      transition: opacity 0.3s;
    }

    .spec-cell:hover .spec-icon { opacity: 0.7; }

    .spec-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.3;
      color: var(--black);
      letter-spacing: 0.01em;
    }

    .spec-desc {
      font-size: 0.75rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--muted);
      flex: 1;
    }

    .spec-arr {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: #ccc;
      margin-top: 0.4rem;
      transition: color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
      display: inline-block;
    }

    .spec-cell:hover .spec-arr { color: var(--black); transform: translateX(4px); }

    /* ── NOTIFY ── */
    .notify {
      background: var(--black);
      padding: 8rem 3rem;
      display: flex;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .notify::before {
      content: '';
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 20% 30%, rgba(120,160,180,0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(180,150,100,0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
      animation: meshDrift 18s ease-in-out infinite alternate;
      pointer-events: none;
      will-change: transform;
    }

    @keyframes meshDrift {
      0%   { transform: translate(0,0) rotate(0deg); }
      100% { transform: translate(3%,-3%) rotate(8deg); }
    }

    .notify-inner {
      max-width: 520px;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .notify-pulse {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.8rem;
    }

    .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--white);
      position: relative;
    }

    .pulse-dot::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.3);
      animation: ripplePulse 2s ease-out infinite;
    }

    @keyframes ripplePulse {
      0%   { transform: scale(0.6); opacity: 1; }
      100% { transform: scale(2); opacity: 0; }
    }

    .pulse-lbl {
      font-size: 0.52rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }

    .notify-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .notify-title i { font-style: italic; color: rgba(255,255,255,0.4); }

    .notify-body {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.35);
      margin-bottom: 2.8rem;
    }

    .notify-form {
      display: flex;
      border-bottom: 1px solid rgba(255,255,255,0.18);
      padding-bottom: 0.8rem;
      max-width: 400px;
      margin: 0 auto;
      transition: border-color 0.35s;
    }

    .notify-form:focus-within { border-color: rgba(255,255,255,0.65); }

    .notify-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.03em;
      padding: 0.2rem 0;
      text-align: center;
    }

    .notify-input::placeholder { color: rgba(255,255,255,0.2); }

    .notify-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--sans);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      padding: 0.2rem 0 0.2rem 1.2rem;
      white-space: nowrap;
      transition: color 0.25s;
    }

    .notify-btn:hover { color: var(--white); }

    .notify-ok {
      display: none;
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.4);
      margin-top: 1rem;
    }

    /* ── CONTACT STRIP ── */
    .contact-strip {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 2rem 3rem;
      display: flex;
      justify-content: center;
      gap: 3rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      color: rgba(255,255,255,0.22);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.25s;
      position: relative;
    }

    .contact-item::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 1px;
      background: rgba(255,255,255,0.4);
      transform: scaleX(0);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    .contact-item:hover { color: rgba(255,255,255,0.65); }
    .contact-item:hover::after { transform: scaleX(1); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 1.6rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .foot-brand {
      display: flex;
      align-items: center;
    }

    .foot-copy {
      font-size: 0.52rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.14);
    }

    .foot-origin {
      font-size: 0.52rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.14);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0.7rem 1.5rem; }
      nav.scrolled { padding: 0.5rem 1.5rem; }
      .nav-tag { display: none; }
      .hero-body { padding: 2.5rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .hero-meta { align-items: flex-start; text-align: left; }
      .story { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
      .spec-wrap { padding: 3rem 1.5rem; }
      .spec-grid { grid-template-columns: repeat(2, 1fr); }
      .notify { padding: 5rem 1.5rem; }
      .contact-strip { padding: 1.5rem; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
      footer { padding: 1.4rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    }