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

  :root {
    --black: #0a0a0a;
    --charcoal: #141414;
    --dark-gray: #1a1a1a;
    --mid-gray: #2a2a2a;
    --text-primary: #e8e4de;
    --text-secondary: #8a8580;
    --text-muted: #5a5550;
    --gold: #c9a96e;
    --gold-light: #dfc193;
    --gold-dark: #a07d42;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── Scrollbar ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

  /* ── Navigation ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    transition: all 0.5s ease;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400;
    letter-spacing: 6px; text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-secondary); text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
  }
  .hamburger-line {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  /* ── Hero ── */
  .hero {
    position: relative; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-color: var(--black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0;
    opacity: 0.03;
    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;
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px; padding: 0 40px;
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 30px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 88px); font-weight: 300;
    line-height: 1.1; letter-spacing: -1px;
    margin-bottom: 30px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s 0.5s forwards;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    font-weight: 300;
  }
  .hero-sub {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.8; max-width: 520px; margin: 0 auto 50px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 0.7s forwards;
  }
  .hero-btns {
    display: flex; justify-content: center; gap: 20px;
    flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border: 1px solid rgba(201,169,110,0.3);
    padding: 16px 40px;
    transition: all 0.4s ease;
  }
  .hero-cta:hover {
    background: rgba(201,169,110,0.08);
    border-color: var(--gold);
  }
  .hero-cta svg { width: 16px; transition: transform 0.3s; }
  .hero-cta:hover svg { transform: translateX(4px); }
  .hero-cta-outline {
    color: var(--text-secondary);
    border-color: rgba(138,133,128,0.3);
  }
  .hero-cta-outline:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,169,110,0.05);
  }

  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ── Sections ── */
  section { padding: 120px 60px; position: relative; }

  .section-label {
    font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px); font-weight: 300;
    line-height: 1.2; margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.9; max-width: 560px;
  }
  .divider {
    width: 40px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 40px 0;
  }

  /* ── Contact Section (now near top) ── */
  .contact {
    background: var(--charcoal);
    text-align: center;
    padding: 100px 60px;
  }
  .contact-inner { max-width: 900px; margin: 0 auto; }
  .contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px); font-weight: 300;
    margin-bottom: 20px;
  }
  .contact-title em { font-style: italic; color: var(--gold); }
  .contact-desc {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.8; max-width: 500px; margin: 0 auto 50px;
  }
  .contact-btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--black); background: var(--gold);
    text-decoration: none; padding: 18px 50px;
    transition: all 0.4s ease;
    margin-bottom: 60px;
  }
  .contact-btn:hover { background: var(--gold-light); }
  .contact-btn svg { width: 14px; }

  /* Contact Cards Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
  .contact-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,169,110,0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
  }
  .contact-card:hover {
    background: rgba(201,169,110,0.04);
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-2px);
  }
  .contact-card-no-link {
    cursor: default;
  }
  .contact-card-no-link:hover {
    transform: none;
  }
  .contact-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
  }
  .contact-card-icon svg {
    width: 24px; height: 24px;
  }
  .contact-card-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
  }
  .contact-card-value {
    font-size: 14px; color: var(--text-primary);
    transition: color 0.3s;
  }
  .contact-card:hover .contact-card-value {
    color: var(--gold);
  }

  /* Social Icons */
  .social-icons {
    display: flex; justify-content: center; gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(201,169,110,0.08);
  }
  .social-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .social-icon svg {
    width: 20px; height: 20px;
  }
  .social-icon:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
    transform: translateY(-2px);
  }

  /* ── About ── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--charcoal);
  }
  .about-visual {
    position: relative; height: 600px;
    background-color: var(--dark-gray);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .about-visual::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%);
  }
  .about-visual-inner {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .wood-ring {
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.15);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .wood-ring::before {
    content: ''; position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.1);
  }
  .wood-ring::after {
    content: ''; position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,125,66,0.12) 0%, transparent 70%);
  }
  .wood-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); opacity: 0.6;
  }

  .about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-top: 50px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--gold);
  }
  .stat-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-top: 6px;
  }

  /* ── Material ── */
  .material {
    background: var(--black);
    text-align: center;
    position: relative;
  }
  .material-bg {
    position: absolute; inset: 0;
    background-color: var(--black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .material-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.92) 100%);
  }
  .material > *:not(.material-bg) { position: relative; z-index: 1; }
  .material-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; margin-top: 80px;
    background: rgba(201,169,110,0.08);
  }
  .material-card {
    background: var(--black);
    padding: 60px 40px;
    transition: background 0.5s ease;
  }
  .material-card:hover { background: var(--charcoal); }
  .material-icon {
    width: 48px; height: 48px; margin: 0 auto 28px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px;
  }
  .material-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    margin-bottom: 16px;
  }
  .material-card p {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.8;
  }

  /* ── Process ── */
  .process {
    background: var(--charcoal);
  }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 80px;
    position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 35px; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), transparent);
  }
  .step {
    text-align: center; padding: 0 30px;
    position: relative;
  }
  .step-num {
    width: 70px; height: 70px; margin: 0 auto 30px;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--gold);
    background: var(--charcoal);
    position: relative; z-index: 1;
  }
  .step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400;
    margin-bottom: 14px;
  }
  .step p {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.8;
  }

  /* ── Projects ── */
  .projects { background: var(--black); }
  .projects-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .projects-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .project-card {
    position: relative; overflow: hidden;
    background: var(--dark-gray);
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .project-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
  }
  .project-card:hover .project-card-bg { transform: scale(1.05); }
  .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px;
    transition: background 0.5s;
  }
  .project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%);
  }
  .project-tag {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400;
    margin-bottom: 8px;
  }
  .project-desc {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.6;
  }
  .project-arrow {
    position: absolute; top: 30px; right: 30px;
    width: 40px; height: 40px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px;
    opacity: 0; transform: translateY(10px);
    transition: all 0.4s ease;
  }
  .project-card:hover .project-arrow {
    opacity: 1; transform: translateY(0);
  }

  /* ── Craftsmanship ── */
  .craft {
    background: var(--charcoal);
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: center;
  }
  .craft-visual {
    position: relative; height: 500px;
    background-color: var(--dark-gray);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .craft-visual::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 100%);
  }
  .craft-lines {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column;
    justify-content: center; padding: 60px;
  }
  .craft-line {
    height: 1px; margin: 20px 0;
    background: linear-gradient(to right, rgba(201,169,110,0.15), transparent);
  }
  .craft-line:nth-child(2) { margin-left: 40px; }
  .craft-line:nth-child(3) { margin-left: 80px; }
  .craft-line:nth-child(4) { margin-left: 40px; }
  .craft-center-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300;
    color: rgba(201,169,110,0.06);
    letter-spacing: 8px; text-transform: uppercase;
    white-space: nowrap;
  }
  .craft-values {
    display: flex; flex-direction: column; gap: 32px;
    margin-top: 40px;
  }
  .craft-value {
    padding-left: 24px;
    border-left: 1px solid rgba(201,169,110,0.2);
  }
  .craft-value h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400;
    margin-bottom: 8px; color: var(--text-primary);
  }
  .craft-value p {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ── Testimonial ── */
  .testimonial {
    background: var(--black);
    text-align: center; padding: 140px 60px;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px); font-weight: 300;
    font-style: italic; line-height: 1.5;
    max-width: 700px; margin: 0 auto 30px;
    color: var(--text-primary);
  }
  .testimonial-author {
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted);
  }
  .testimonial-author span { color: var(--gold); }

  /* ── Footer ── */
  footer {
    background: var(--black);
    padding: 50px 60px;
    border-top: 1px solid rgba(201,169,110,0.06);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-left {
    display: flex; align-items: center; gap: 30px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--text-muted);
  }
  .footer-social {
    display: flex; gap: 10px;
  }
  .social-icon-sm {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .social-icon-sm svg { width: 14px; height: 14px; }
  .social-icon-sm:hover {
    color: var(--gold);
    border-color: rgba(201,169,110,0.3);
    background: rgba(201,169,110,0.04);
  }
  .footer-copy {
    font-size: 11px; color: var(--text-muted);
    letter-spacing: 1px;
  }

  /* ── Animations ── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ══════════════════════════════════════════════════
     RESPONSIVE — Tablet
     ══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    section { padding: 80px 40px; }
    nav { padding: 20px 30px; }
    nav.scrolled { padding: 16px 30px; }

    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 350px; }

    .material-grid { grid-template-columns: 1fr; }

    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }

    .projects-grid { grid-template-columns: 1fr; }

    .craft { grid-template-columns: 1fr; }
    .craft-visual { height: 350px; }

    .contact { padding: 80px 40px; }
    .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    footer { padding: 40px 30px; }
  }

  /* ══════════════════════════════════════════════════
     RESPONSIVE — Mobile
     ══════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    section { padding: 60px 24px; }
    .testimonial { padding: 80px 24px; }

    /* Mobile Nav */
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,10,10,0.98);
      padding: 100px 40px 40px;
      gap: 0;
      backdrop-filter: blur(20px);
      z-index: 99;
    }
    .nav-links.nav-open {
      display: flex;
    }
    .nav-links li {
      border-bottom: 1px solid rgba(201,169,110,0.06);
    }
    .nav-links a {
      display: block;
      padding: 20px 0;
      font-size: 14px;
      letter-spacing: 4px;
    }

    /* Hero mobile */
    .hero-content { padding: 0 24px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 14px; }
    .hero-cta { padding: 14px 32px; font-size: 11px; }
    .hero-scroll { bottom: 24px; }

    /* Contact mobile */
    .contact { padding: 60px 24px; }
    .contact-inner { max-width: 100%; }
    .contact-btn { padding: 16px 40px; margin-bottom: 40px; }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .contact-card { padding: 24px 20px; }
    .social-icons { gap: 12px; flex-wrap: wrap; }

    /* About mobile */
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .stat-num { font-size: 28px; }

    /* Process mobile */
    .process-steps { grid-template-columns: 1fr; gap: 30px; }

    /* Craft mobile */
    .craft-visual { height: 280px; }
    .craft-center-text { font-size: 48px; }

    /* Footer mobile */
    footer {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      padding: 36px 24px;
    }
    .footer-left {
      flex-direction: column;
      gap: 16px;
    }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(32px, 10vw, 48px); }
    .hero-sub { font-size: 14px; margin-bottom: 36px; }
    .about-visual { height: 260px; }
    .material-card { padding: 40px 24px; }
    .step { padding: 0 16px; }
    .project-overlay { padding: 24px; }
    .project-name { font-size: 20px; }
  }
