 :root {
    --ochre: #c8852a;
    --ochre-light: #e8a84a;
    --ochre-pale: #f5e6c8;
    --crimson: #8b2020;
    --crimson-light: #b03030;
    --cream: #faf6ef;
    --warm-white: #fffdf9;
    --dark: #1a1208;
    --dark2: #2c1f0e;
    --text: #3a2a14;
    --muted: #8a7055;
    --border: rgba(200,133,42,0.2);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(250,246,239,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }
  .nav-brand {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
  }
  .nav-brand span { color: var(--ochre); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ochre); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: var(--dark);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,133,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139,32,32,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200,133,42,0.08) 0%, transparent 60%);
  }
  /* Decorative mandala-inspired ring */
  .hero-fol {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-fol svg { width: 100%; height: 100%; }
  .fol-circle {
    fill: none;
    stroke: #c8852a;
    stroke-width: 0.7;
    stroke-dasharray: 502.65;
    stroke-dashoffset: 502.65;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 300;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--ochre-light);
  }
  .hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }
  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
  }
  .hero-tag {
    padding: 6px 18px;
    border: 1px solid rgba(200,133,42,0.35);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--ochre);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s;
    position: relative;
    z-index: 1;
  }
  .hero-cta:hover { background: var(--ochre-light); }
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(200,133,42,0.4);
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── SECTION WRAPPER ── */
  .section { padding: 80px 48px 50px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
  }
  .section-num {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ochre);
    font-style: italic;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
  }
  .section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* ── ABOUT ── */
  .about-section { background: var(--warm-white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .about-text p strong {
    color: var(--text);
    font-weight: 500;
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .about-stat {
    background: var(--cream);
    padding: 28px 24px;
    border: 1px solid var(--border);
  }
  .about-stat-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--ochre);
    line-height: 1;
    margin-bottom: 6px;
  }
  .about-stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── GALLERY ── */
  .gallery-section { background: var(--cream); }
  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    position: sticky;
    top: 72px;
    z-index: 50;
    background: var(--cream);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .tab-btn {
    padding: 8px 22px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .tab-btn:hover {
    background: var(--ochre);
    border-color: var(--ochre);
    color: #fff;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 4px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    aspect-ratio: 1;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
  .gallery-item-label {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
  }
  .gallery-item[data-cat] { transition: opacity 0.3s, transform 0.3s; }
  .gallery-item.hidden { display: none; }

  /* ── LIGHTBOX ── */
  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed; inset: 0; background: #000;
    z-index: 1000; opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lb-topbar {
    position: absolute; top: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 48px 20px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    z-index: 10; transition: opacity 0.3s;
  }
  .lb-topbar.hide { opacity: 0; pointer-events: none; }
  .lb-close { font-size: 26px; cursor: pointer; color: #fff; line-height: 1; }
  .lb-caption {
    font-family: var(--serif); font-style: italic; font-size: 13px;
    color: rgba(255,255,255,0.75); text-align: center; flex: 1; padding: 0 10px;
  }
  .lb-counter { font-size: 12px; color: rgba(255,255,255,0.45); white-space: nowrap; }
  .lb-img-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  #lightbox-img {
    max-width: 100%; max-height: 100%; object-fit: contain; display: block;
    transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1), opacity 0.2s;
    transform-origin: center center; user-select: none; will-change: transform;
  }
  /* ── SERVICES ── */
  .services-section { background: var(--dark); }
  .services-section .section-title { color: #fff; }
  .services-section .section-num { color: var(--ochre-light); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2px;
  }
  .service-card {
    background: var(--dark2);
    padding: 36px 28px;
    border: 1px solid rgba(200,133,42,0.1);
    transition: border-color 0.2s, background 0.2s;
  }
  .service-card:hover {
    border-color: rgba(200,133,42,0.35);
    background: rgba(200,133,42,0.05);
  }
  .service-card:hover .service-name::after {
    content: ' →';
    color: var(--ochre);
    font-size: 14px;
  }
  .service-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }
  .service-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
  }

  /* ── CONTACT ── */
  .contact-section { background: var(--ochre); }
  .contact-section .section-title { color: #fff; }
  .contact-section .section-num { color: rgba(255,255,255,0.6); }
  .contact-section .section-line { background: rgba(255,255,255,0.2); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-intro {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .contact-methods { display: flex; flex-direction: column; gap: 20px; }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
  }
  .contact-method:hover { opacity: 0.75; }
  .contact-method-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
  .contact-form input:focus,
  .contact-form textarea:focus { border-color: rgba(255,255,255,0.6); }
  .contact-form textarea { height: 120px; }
  .contact-submit {
    padding: 14px 32px;
    background: #fff;
    color: var(--ochre);
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    align-self: flex-start;
  }
  .contact-submit:hover { background: var(--ochre-pale); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200,133,42,0.15);
  }
  footer .brand {
    font-family: var(--serif);
    font-size: 18px;
    color: rgba(255,255,255,0.6);
  }
  footer .brand span { color: var(--ochre); }
  footer .copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .section { padding: 72px 24px 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ── Scroll to top ── */
  #scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: rgba(200,133,42,0.15);
    color: var(--ochre);
    border: 1px solid rgba(200,133,42,0.3);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #scroll-top.visible { opacity: 1; transform: translateY(0); }
  #scroll-top:hover { background: var(--ochre); color: #fff; }

 body {
    cursor: url('images/cursor/Paint-brush.cur') 0 0, auto;
  }

/* Hover Cursor for interactive items */
a, button, .tab-btn, .gallery-item, .contact-submit, .service-card {
    cursor: url('images/cursor/Paint-brush.cur') 0 0, pointer;
}

/* Busy/loading cursor */
#gallery-loading, .bounced-gallery img[src=""] {
    cursor: url('images/cursor/Busy.ani') 16 16, wait;
}

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
  }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(250,246,239,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 0;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--ochre); }
  @media (max-width: 768px) {
    .burger { display: flex; }
    .nav-links { display: none !important; }
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero-fol { will-change: transform; }
  .hero-eyebrow, .hero-title, .hero-subtitle, .hero-tags, .hero-cta { will-change: transform; }
  .service-card { transition: border-color 0.2s, background 0.2s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

  @keyframes bounceIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.92); }
    60%  { transform: translateY(-8px) scale(1.03); }
    80%  { transform: translateY(4px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .service-card.bounce-ready {
    opacity: 0;
    transform: translateY(40px);
  }
  .service-card.bounced {
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes galleryBounceIn {
    0%   { opacity: 0; transform: scale(0.7) translateY(20px); }
    60%  { transform: scale(1.05) translateY(-4px); }
    80%  { transform: scale(0.97) translateY(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }
  .gallery-item.bounce-ready-gallery {
    opacity: 0;
    transform: scale(0.7);
  }
  .gallery-item.bounced-gallery {
    animation: galleryBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes tabPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,133,42,0.0); }
    50%     { box-shadow: 0 0 0 5px rgba(200,133,42,0.25); }
  }
  .tab-btn.active {
    background: var(--ochre);
    border-color: var(--ochre);
    color: #fff;
    animation: tabPulse 2s ease-in-out infinite;
  }

.lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.4); border: none; color: #fff;
    font-size: 48px; line-height: 1; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 50%;
    transition: opacity 0.4s ease, background 0.2s;
    opacity: 0.8; z-index: 10;
  }
  .lb-arrow.hide { opacity: 0; pointer-events: none; }
  .lb-arrow:hover { background: rgba(200,133,42,0.6); }
  #lb-arrow-left { left: 16px; }
  #lb-arrow-right { right: 16px; }
  @media (max-width: 768px) { .lb-arrow { display: none; } }