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

  :root {
    --bg: #080808;
    --bg2: #111111;
    --card: #181818;
    --accent: #FF6B35;
    --accent2: #FF914D;
    --text: #FFFFFF;
    --text2: #BBBBBB;
    --border: rgba(255,255,255,0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 36px;
  }
  .logo-svg {
    height: 48px;
    width: 48px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
  }
  .nav-logo:hover .logo-svg {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--text); }
  .btn-nav {
    background: var(--accent);
    color: var(--text) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .btn-nav:hover { background: var(--accent2) !important; transform: translateY(-1px); }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1520 0%, #1a0a05 40%, #080808 100%);
  }
  /* Cinematic grid overlay */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  /* Dramatic light leak */
  .hero-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Simulated hero image using CSS art — cinematic landscape */
  .hero-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-sky {
    position: absolute;
    inset: 0 0 40% 0;
    background: linear-gradient(180deg,
      #0a0e1a 0%,
      #111a2e 30%,
      #1e2a42 60%,
      #2a1810 100%);
  }
  .hero-sun {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,145,77,0.6) 0%, rgba(255,107,53,0.3) 40%, transparent 70%);
    border-radius: 50%;
  }
  .hero-mountains {
    position: absolute;
    bottom: 38%;
    left: 0; right: 0;
    height: 200px;
  }
  .hero-mountains::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: #0d1117;
    clip-path: polygon(0% 100%, 8% 45%, 18% 65%, 30% 20%, 42% 55%, 52% 10%, 62% 48%, 72% 30%, 82% 58%, 92% 35%, 100% 55%, 100% 100%);
  }
  .hero-mountains::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80%;
    background: #080c10;
    clip-path: polygon(0% 100%, 5% 70%, 15% 85%, 25% 50%, 38% 75%, 50% 40%, 63% 65%, 75% 45%, 85% 70%, 95% 55%, 100% 70%, 100% 100%);
  }
  .hero-water {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 38%;
    background: linear-gradient(180deg, #0d1520 0%, #080c14 50%, #050810 100%);
  }
  .hero-reflection {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 25%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.15) 0%, transparent 70%);
    filter: blur(8px);
  }
  /* Stars */
  .hero-stars {
    position: absolute;
    inset: 0 0 50% 0;
    overflow: hidden;
  }
  .hero-stars::before, .hero-stars::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 25% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 40% 30%, rgba(255,255,255,0.9) 0%, transparent 100%),
      radial-gradient(1px 1px at 60% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 85% 8%, rgba(255,255,255,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 55% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 20% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 35% 5%, rgba(255,255,255,0.9) 0%, transparent 100%);
  }
  .hero-stars::after {
    background-image:
      radial-gradient(1px 1px at 15% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 70% 50%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 80% 42%, rgba(255,255,255,0.8) 0%, transparent 100%),
      radial-gradient(1px 1px at 5% 38%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 95% 48%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 30% 50%, rgba(255,255,255,0.9) 0%, transparent 100%),
      radial-gradient(1px 1px at 62% 42%, rgba(255,255,255,0.5) 0%, transparent 100%);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(8,8,8,0.2) 0%,
      rgba(8,8,8,0.1) 40%,
      rgba(8,8,8,0.5) 80%,
      rgba(8,8,8,0.9) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 14rem);
    line-height: 0.88;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-title span { color: var(--accent); }
  .hero-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-desc {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--text);
    padding: 16px 40px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border-radius: 2px;
  }
  .btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,107,53,0.35);
  }
  .btn-outline {
    background: transparent;
    color: var(--text);
    padding: 16px 40px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    border-radius: 2px;
  }
  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.6s forwards;
  }
  .scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text2);
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ── SECTION BASE ── */
  section { padding: 120px 0; }
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
  }
  .section-body {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text2);
    font-weight: 300;
    line-height: 1.8;
    max-width: 540px;
  }

  /* ── STATS BAR ── */
  #stats {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide: 1px solid var(--border);
  }
  .stat-item {
    text-align: center;
    padding: 24px 32px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--text);
    letter-spacing: 0.05em;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text2);
    margin-top: 8px;
  }

  /* ── PORTFOLIO ── */
  #portfolio { background: var(--bg); }
  .filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .filter-btn {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border);
    padding: 9px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    border-radius: 2px;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
  }
  .masonry {
    columns: 3;
    column-gap: 12px;
  }
  .masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
  }
  .masonry-item:nth-child(3n+1) { aspect-ratio: 4/5; }
  .masonry-item:nth-child(3n+2) { aspect-ratio: 3/4; }
  .masonry-item:nth-child(3n+3) { aspect-ratio: 1/1; }
  .masonry-item:nth-child(7) { aspect-ratio: 16/9; }
  .masonry-item:nth-child(10) { aspect-ratio: 3/2; }
  .photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .masonry-item:hover .photo-placeholder {
    transform: scale(1.06);
  }
  .photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
  }
  .masonry-item:hover .photo-overlay { opacity: 1; }
  .photo-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    transform: translateY(8px);
    transition: transform 0.4s;
  }
  .masonry-item:hover .photo-title { transform: translateY(0); }
  .photo-meta {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 4px;
  }

  /* Photo scene colours (cinematic CSS) */
  .p1 { background: linear-gradient(160deg, #1a2535 0%, #0d1520 40%, #050a0f 100%); }
  .p2 { background: linear-gradient(140deg, #2a1f35 0%, #150d20 50%, #080808 100%); }
  .p3 { background: linear-gradient(170deg, #1c2410 0%, #0e1508 50%, #050805 100%); }
  .p4 { background: linear-gradient(150deg, #2a1205 0%, #1a0a03 50%, #080303 100%); }
  .p5 { background: linear-gradient(160deg, #0d1a2a 0%, #081220 40%, #020508 100%); }
  .p6 { background: linear-gradient(140deg, #1a1a2a 0%, #0d0d1a 50%, #050508 100%); }
  .p7 { background: linear-gradient(150deg, #2a1a0d 0%, #1a0e05 50%, #080503 100%); }
  .p8 { background: linear-gradient(160deg, #0d2210 0%, #081508 40%, #030805 100%); }
  .p9 { background: linear-gradient(140deg, #221510 0%, #150d08 50%, #080503 100%); }
  .p10 { background: linear-gradient(150deg, #101522 0%, #080e1a 50%, #030508 100%); }
  .p11 { background: linear-gradient(160deg, #1f1f1f 0%, #111111 50%, #050505 100%); }
  .p12 { background: linear-gradient(140deg, #1a100d 0%, #100805 50%, #050302 100%); }

  /* Simulated photo elements */
  .photo-placeholder { position: relative; overflow: hidden; }
  .photo-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  /* ── FEATURED WORK ── */
  #featured { background: var(--bg2); overflow: hidden; }
  .featured-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
    margin-bottom: 2px;
  }
  .featured-item.reverse { direction: rtl; }
  .featured-item.reverse > * { direction: ltr; }
  .featured-visual {
    overflow: hidden;
    position: relative;
    min-height: 480px;
  }
  .featured-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .featured-item:hover .featured-bg { transform: scale(1.04); }
  .featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--card);
    border: 1px solid var(--border);
  }
  .featured-num {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: rgba(255,107,53,0.1);
    letter-spacing: 0.05em;
    margin-bottom: -16px;
  }
  .featured-cat {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .featured-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .featured-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.8; margin-bottom: 32px; }
  .btn-text {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: gap 0.3s;
    font-weight: 500;
  }
  .btn-text::after { content: '→'; font-size: 1rem; }
  .btn-text:hover { gap: 20px; }

  /* ── ABOUT ── */
  #about { background: var(--bg); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-portrait {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1a1510 0%, #0d0c08 50%, #050503 100%);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  .about-portrait-light {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 70%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .about-portrait-figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 75%;
    background: linear-gradient(180deg, #2a2010 0%, #1a1408 50%, #0a0805 100%);
    border-radius: 120px 120px 0 0;
    opacity: 0.8;
  }
  .about-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
  }
  .about-accent-line {
    position: absolute;
    top: 32px;
    right: -24px;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, var(--accent), transparent);
  }
  .about-tag {
    position: absolute;
    bottom: 32px;
    right: -32px;
    background: var(--accent);
    color: var(--text);
    padding: 16px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
  }
  .about-content {}
  .about-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.92; margin-bottom: 32px; }
  .about-lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 24px;
    border-left: 2px solid var(--accent);
    padding-left: 24px;
  }
  .about-body { font-size: 0.92rem; color: var(--text2); line-height: 1.9; margin-bottom: 32px; }
  .about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .fact-item { border-top: 1px solid var(--border); padding-top: 16px; }
  .fact-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
  .fact-value { font-size: 0.9rem; color: var(--text); }

  /* ── SERVICES ── */
  #services { background: var(--bg2); }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  .service-card {
    background: var(--card);
    padding: 48px 40px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.5s;
  }
  .service-card:hover { background: #1e1e1e; }
  .service-card:hover::before { width: 100%; }
  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: var(--accent);
  }
  .service-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .service-desc { font-size: 0.87rem; color: var(--text2); line-height: 1.8; margin-bottom: 28px; }

  /* ── SOCIAL PROOF ── */
  #social-proof { background: var(--bg); }
  .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  .proof-card {
    background: var(--card);
    padding: 48px 40px;
  }
  .proof-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 20px; }
  .proof-text { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: var(--text2); margin-bottom: 28px; }
  .proof-author { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); }
  .proof-role { font-size: 0.7rem; color: var(--text2); margin-top: 4px; }

  /* ── INSTAGRAM ── */
  #instagram { background: var(--bg2); }
  .insta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }
  .insta-handle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text2);
    font-weight: 300;
  }
  .insta-handle a { color: var(--accent); text-decoration: none; }
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
  .insta-cell {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
  }
  .insta-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s;
  }
  .insta-cell:hover .insta-bg { transform: scale(1.1); }
  .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,53,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .insta-cell:hover .insta-overlay { opacity: 1; }
  .insta-icon { font-size: 1.5rem; color: white; }

  /* Instagram cell colours */
  .ig1 { background: linear-gradient(135deg, #1a2535, #0d1020); }
  .ig2 { background: linear-gradient(135deg, #2a1505, #150a02); }
  .ig3 { background: linear-gradient(135deg, #1c2410, #0e1508); }
  .ig4 { background: linear-gradient(135deg, #2a1f35, #150d20); }
  .ig5 { background: linear-gradient(135deg, #0d1a2a, #081220); }
  .ig6 { background: linear-gradient(135deg, #221510, #150d08); }

  /* ── CONTACT ── */
  #contact { background: var(--bg); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .contact-info {}
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
  }
  .contact-item {}
  .contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .contact-item-value {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text2);
    font-weight: 300;
  }
  .contact-item-value a { color: var(--text2); text-decoration: none; transition: color 0.3s; }
  .contact-item-value a:hover { color: var(--accent); }
  .contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 48px;
  }
  .social-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 2px;
    text-decoration: none;
    color: var(--text2);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    transition: border-color 0.3s, color 0.3s;
  }
  .social-pill:hover { border-color: var(--accent); color: var(--accent); }
  .contact-form { }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 8px;
  }
  .form-input, .form-textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 2px;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--accent); }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(187,187,187,0.4); }
  .form-textarea { resize: vertical; min-height: 130px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
  }
  .footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .footer-logo .logo-svg {
    height: 64px;
    width: 64px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
  }
  .footer-logo:hover .logo-svg {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
  }
  .footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover { color: var(--accent); }
  .footer-socials {
    display: flex;
    gap: 16px;
  }
  .footer-social {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s;
  }
  .footer-social:hover { border-color: var(--accent); color: var(--accent); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy { font-size: 0.75rem; color: rgba(187,187,187,0.5); letter-spacing: 0.08em; }
  .footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: rgba(187,187,187,0.4);
    font-weight: 300;
    font-style: italic;
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
  }
  .lightbox.open { display: flex; }
  .lightbox-close {
    position: absolute;
    top: 32px;
    right: 40px;
    color: var(--text2);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
    padding: 8px;
  }
  .lightbox-close:hover { color: var(--accent); }
  .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
  }
  .lightbox-img {
    max-width: 80vw;
    max-height: 75vh;
    border-radius: 2px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  }
  .lightbox-caption {
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text2);
    font-weight: 300;
  }

  /* ── MOBILE NAV PANEL ── */
  .mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    padding: 100px 48px 48px;
    border-left: 1px solid var(--border);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .mobile-nav li { border-bottom: 1px solid var(--border); }
  .mobile-nav a {
    display: block;
    padding: 20px 0;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-nav a:hover { color: var(--accent); }
  .mobile-book {
    display: block;
    margin-top: 32px;
    background: var(--accent);
    color: var(--text);
    text-align: center;
    padding: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.3s;
  }
  .mobile-book:hover { background: var(--accent2); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in {
    opacity: 0;
    transition: opacity 0.9s;
  }
  .fade-in.visible { opacity: 1; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .masonry { columns: 2; }
    .insta-grid { grid-template-columns: repeat(4, 1fr); }
    .insta-cell:nth-child(n+5) { display: none; }
  }
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .featured-item { grid-template-columns: 1fr; min-height: auto; }
    .featured-item.reverse { direction: ltr; }
    .featured-visual { min-height: 360px; }
    .featured-info { padding: 48px 32px; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .proof-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    section { padding: 80px 0; }
    .hero-title { font-size: 5.5rem; }
    .masonry { columns: 1; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .insta-cell:nth-child(n+4) { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .about-tag { display: none; }
    .services-grid { grid-template-columns: 1fr; }
  }
