  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
  --gold: #c8c8c8;
--gold-light: #ffffff;
--gold-dark: #888888;
--cream: #f0f0f0;
--ink: #111111;
--parchment: #1a1a1a;
}

  html, body {
    width: 100%; height: 100%;
    background: var(--ink);
    color: var(--cream);
    font-family: 'Cinzel', serif;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    position: fixed;
    width: 20px; height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    mix-blend-mode: difference;
  }
  #cursor.hover { width: 40px; height: 40px; border-color: var(--gold-light); }
  #cursor-dot {
    position: fixed;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }

  .insta-btn {
  display: inline-block;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  cursor: none;
  transition: all 0.25s ease;
  position: relative;
}
.insta-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}

  /* LOADING SCREEN */
  #loader {
    position: fixed; inset: 0;
    background: var(--ink);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  #loader.hidden { 
    opacity: 0; 
    visibility: hidden;
    pointer-events: none; 
    }

    .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10vh 1.5rem 6rem;
    gap: 3.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.1s forwards;
  }

  @keyframes fadeIn { to { opacity: 1; } }
  .page-header {
    text-align: center;
    animation: fadeUp 0.7s ease 0.2s both;
  }
  .page-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.4em;
    color: var(--gold-dark); text-transform: uppercase;
    margin-bottom: 0.75rem; display: block;
  }
  .page-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
  position: relative;
  z-index: 1;
  }
  .page-divider {
    width: 160px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    margin: 1.2rem auto;
  }
  .page-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic; font-size: 0.95rem;
    color: var(--cream); opacity: 0.5; letter-spacing: 0.1em;
  }

.back-btn {
  position: relative;
  z-index: 10;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  text-decoration: none;
  text-transform: uppercase;
  cursor: none;
  transition: color 0.2s;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
.back-btn:hover { color: var(--gold); }

  /* CONTENT GRID */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 860px;
  }
  @media (max-width: 640px) {
    .contact-grid { grid-template-columns: 1fr; }
  }

  @media (hover: none) and (pointer: coarse) {
  html, body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
}


  /* PANELS */
  .panel {
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2rem 1.8rem;
    position: relative;
    background: rgba(201,168,76,0.02);
    animation: fadeUp 0.6s ease both;
  }
  .panel:nth-child(1) { animation-delay: 0.3s; }
  .panel:nth-child(2) { animation-delay: 0.45s; }

  .panel-label {
    font-size: 0.6rem; letter-spacing: 0.35em;
    color: var(--gold-dark); text-transform: uppercase;
    margin-bottom: 1.5rem; display: block;
  }

  /* FORM */
  .form-group {
    display: flex; flex-direction: column; gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  .form-group label {
    font-size: 0.6rem; letter-spacing: 0.3em;
    color: var(--gold-dark); text-transform: uppercase;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    cursor: none;
    resize: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.07);
  }
  .form-group textarea { height: 110px; }
  .form-group select option { background: #0d0b08; }

  .submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  .submit-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.08), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .submit-btn:hover { border-color: var(--gold); color: var(--gold-light); }
  .submit-btn:hover::before { opacity: 1; }

  /* SUCCESS */
  .success-msg {
    display: none;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.05);
  }
  .success-msg.visible { display: block; }
  .success-msg p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  /* SOCIALS */
  .social-links {
    display: flex; flex-direction: column; gap: 1rem;
  }

  .social-item {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(201,168,76,0.12);
    text-decoration: none;
    color: var(--cream);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .social-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.06), transparent);
    opacity: 0; transition: opacity 0.3s;
    }
  .social-item:hover { border-color: rgba(201,168,76,0.4); color: var(--gold-light); }
  .social-item:hover::before { opacity: 1; }
  .social-item:hover .social-arrow { opacity: 1; transform: translateX(0); }

  .social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .social-icon svg { width: 16px; height: 16px; fill: var(--gold-dark); }
  .social-item:hover .social-icon svg { fill: var(--gold); }

  .social-info { flex: 1; }
  .social-handle {
    font-size: 0.8rem; letter-spacing: 0.15em;
    color: var(--cream); display: block;
  }
  .social-desc {
    font-family: 'IM Fell English', serif;
    font-style: italic; font-size: 0.75rem;
    color: var(--gold-dark); margin-top: 0.2rem;
  }

  .social-arrow {
    font-size: 0.7rem; color: var(--gold);
    opacity: 0; transform: translateX(-6px);
    transition: all 0.2s;
  }

  /* EMAIL DIRECT */
  .email-direct {
    width: 100%; max-width: 860px;
    text-align: center;
    animation: fadeUp 0.6s ease 0.55s both;
  }
  .email-link {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    cursor: none;
  }
  .email-link:hover { color: var(--gold); border-color: var(--gold); }

  .loader-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 6vw, 5rem);
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: flicker 3s infinite;
  }
  .loader-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--cream);
    opacity: 0.6;
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
  .loader-bar-wrap {
    width: 300px;
    height: 2px;
    background: rgba(201,168,76,0.2);
    position: relative;
    overflow: hidden;
  }
  .loader-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    animation: loadbar 2s ease forwards;
    box-shadow: 0 0 12px var(--gold);
  }
  .loader-press {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    opacity: 0;
    text-transform: uppercase;
    animation: blink 1.2s ease infinite;
    animation-delay: 2.2s;
  }
  .loader-press.visible { opacity: 1; }

  @keyframes loadbar {
    0% { width: 0%; }
    60% { width: 85%; }
    100% { width: 100%; }
  }
  @keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
  }
  @keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: 0.6; }
    97% { opacity: 1; }
    98% { opacity: 0.4; }
    99% { opacity: 1; }
  }

  /* GRAIN OVERLAY */
  #grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px;
  }

  /* VIGNETTE */
  #vignette {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 49;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
  }

  /* CORNER DECORATIONS */
  .corner {
    position: fixed;
    width: 80px; height: 80px;
    pointer-events: none;
    z-index: 48;
    opacity: 0.5;
  }
  .corner svg { width: 100%; height: 100%; }
  .corner.tl { top: 20px; left: 20px; }
  .corner.tr { top: 20px; right: 20px; transform: scaleX(-1); }
  .corner.bl { bottom: 20px; left: 20px; transform: scaleY(-1); }
  .corner.br { bottom: 20px; right: 20px; transform: scale(-1,-1); }

  /* MAIN SCREEN */
  #main {
    position: relative;
    min-height: 100vh;
    padding: 5vh 1rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8vh;
    opacity: 0;
    transition: opacity 1s ease 0.3s;
    }
  #main.visible { opacity: 1; }

  /* TITLE BLOCK */
  .title-block {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  .title-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
  }
  .title-main {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--gold);
    letter-spacing: 0.15em;
    line-height: 1;
    text-shadow: 0 0 60px rgba(201,168,76,0.3);
    animation: flicker 8s infinite;
  }
  .title-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
    margin: 1.2rem auto;
  }
  .title-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.55;
    letter-spacing: 0.1em;
  }

  /* MENU */
  .menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 500px;
  }

  .menu-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    text-decoration: none;
    color: var(--cream);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    overflow: hidden;
    gap: 1.2rem;
    cursor: none;
  }
  .menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .menu-item:hover::before { opacity: 1; }
  .menu-item:hover {
    border-color: rgba(201,168,76,0.35);
    color: var(--gold-light);
    transform: scaleX(1.01);
  }
  .menu-item:hover .menu-icon { color: var(--gold); }
  .menu-item:hover .menu-selector { opacity: 1; }
  .menu-item:hover .menu-label { letter-spacing: 0.28em; }

  .menu-selector {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }

  .menu-icon {
    font-size: 1.1rem;
    color: var(--gold-dark);
    transition: color 0.2s;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    line-height: 1;
  }

  .menu-label {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: letter-spacing 0.3s ease;
    flex: 1;
    text-align: center;
  }

  .menu-tag {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    opacity: 0.7;
    min-width: 70px;
    text-align: right;
  }

  .menu-separator {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
    margin: 0.5rem 0;
  }

  /* BOTTOM NAV */
  .bottom-nav {
    position: fixed;
    bottom: 30px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    text-transform: uppercase;
    opacity: 0.6;
  }
  .bottom-nav span { display: flex; align-items: center; gap: 0.5rem; }
  .btn-pill {
    display: inline-block;
    border: 1px solid var(--gold-dark);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  /* VERSION */
  .version {
    position: fixed;
    top: 24px; right: 30px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    opacity: 0.5;
    z-index: 48;
  }

  /* SCAN LINE */
  .scanline {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 51;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 4px
    );
  }

  .stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 700px;
    animation: fadeUp 0.6s ease 0.3s both;
    flex-wrap: wrap;
  }
  .stat-item {
    text-align: center;
    position: relative;
  }
  .stat-item::after {
    content: '';
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40px;
    background: rgba(201,168,76,0.15);
  }
.stat-item::after { display: none; }

  .stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    line-height: 1;
    display: block;
  }
  .stat-number span {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--gold-dark);
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
  }
  .stat-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.35;
    margin-top: 0.2rem;
    display: block;
  }

  /* DISCIPLINES */
  .disciplines-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 700px;
    animation: fadeUp 0.6s ease 0.35s both;
  }
  .discipline-tag {
    border: 1px solid rgba(201,168,76,0.25);
    padding: 0.5rem 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
    position: relative;
    transition: all 0.25s;
  }
  .discipline-tag.primary {
    border-color: rgba(201,168,76,0.5);
    color: var(--gold);
    opacity: 1;
  }
  .discipline-tag:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    opacity: 1;
  }

  /* STORY */
  .story-section {
    width: 100%;
    max-width: 680px;
    animation: fadeUp 0.6s ease 0.4s both;
    text-align: left;
  }
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,168,76,0.2), transparent);
  }

  .story-text {
    font-family: 'IM Fell English', serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--cream);
    opacity: 0.75;
  }
  .story-text p + p { margin-top: 1.2rem; }
  .story-text em { color: var(--gold); font-style: italic; opacity: 1; }

  /* TIMELINE */
  .timeline-section {
    width: 100%;
    max-width: 680px;
    animation: fadeUp 0.6s ease 0.45s both;
    text-align: left;
  }
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  }
  .timeline-item {
    position: relative;
    padding: 1.2rem 0 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.06);
  }
  .timeline-item:last-child { border-bottom: none; }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -0.3rem; top: 1.6rem;
    width: 7px; height: 7px;
    border: 1px solid var(--gold-dark);
    background: var(--ink);
    transform: rotate(45deg);
  }
  .timeline-year {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    display: block;
  }
  .timeline-event {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-transform: uppercase;
  }
  .timeline-desc {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.45;
    margin-top: 0.25rem;
  }

  /* VIDEOS */
  .videos-section {
    width: 100%;
    max-width: 860px;
    animation: fadeUp 0.6s ease 0.5s both;
    text-align: left;
  }
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  @media (max-width: 700px) {
    .videos-grid { grid-template-columns: 1fr; }
    .stats-row { gap: 2rem; }
  }
  .video-placeholder {
    aspect-ratio: 16/9;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: none;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .video-placeholder:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.05);
  }
  .video-placeholder:hover .play-icon { color: var(--gold); }
  .play-icon {
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: color 0.2s;
    line-height: 1;
  }
  .video-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
    opacity: 0.6;
  }
  .video-tag {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2px 6px;
  }

  /* STAGGER ANIMATION */
  .menu-item {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s ease forwards;
  }
  .menu-item:nth-child(1) { animation-delay: 0.1s; }
  .menu-item:nth-child(2) { animation-delay: 0.2s; }
  .menu-item:nth-child(3) { animation-delay: 0.3s; }
  .menu-item:nth-child(4) { animation-delay: 0.4s; }
  .menu-item:nth-child(5) { animation-delay: 0.45s; }
  .menu-item:nth-child(6) { animation-delay: 0.5s; }
  .menu-item:nth-child(7) { animation-delay: 0.55s; }

  .menu-separator { animation: fadeUp 0.5s ease forwards; opacity: 0; }
  .menu-separator:nth-child(4) { animation-delay: 0.35s; }
  .menu-separator:nth-child(6) { animation-delay: 0.48s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .title-block {
    opacity: 0;
    animation: fadeUp 0.7s ease 0.05s forwards;
  }

  /* ACTIVE CLICK FLASH */
  .menu-item:active {
    background: rgba(201,168,76,0.1);
  }

@media (min-width: 769px) {
  .page { padding: 10vh 4rem 8rem; }
  .page-title { font-size: clamp(3rem, 5vw, 5rem); }
  .page-eyebrow { font-size: 0.85rem; }
  .page-sub { font-size: 1.1rem; }
  .title-main { font-size: clamp(2.5rem, 4vw, 4rem); }
  .menu-label { font-size: 1rem; }
  .menu-tag { font-size: 0.85rem; }
  .menu-wrap { max-width: 650px; }
  .story-text { font-size: 1.15rem; }
  .story-section, .timeline-section { max-width: 820px; }
  .stats-row { max-width: 820px; gap: 6rem; }
  .stat-number { font-size: clamp(3rem, 6vw, 5rem); }
  .stat-label { font-size: 0.75rem; }
  .section-label { font-size: 0.75rem; }
  .timeline-event { font-size: 1rem; }
  .timeline-desc { font-size: 0.88rem; }
  .service-name { font-size: 0.9rem; }
  .service-desc { font-size: 0.88rem; }
  .work-list { max-width: 900px; }
  .contact-grid { max-width: 1000px; }
  .back-btn { font-size: 0.8rem; }
  .insta-btn { font-size: 0.85rem; }
  .panel-label { font-size: 0.75rem; }
  .social-handle { font-size: 0.95rem; }
  .timeline-year { font-size: 0.75rem; }
  .timeline-event { font-size: 1.1rem; }
  .timeline-desc { font-size: 1.3rem; }
  .work-entry-title { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
  .work-entry-meta { font-size: 0.95rem; }
  .work-entry-badge { font-size: 0.65rem; }
  .service-name { font-size: 0.95rem; }
  .service-desc { font-size: 0.92rem; }
  .work-list { max-width: 900px; }
}