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

  :root {
    --sand: #e8e0d4;
    --sand-light: #f4f0eb;
    --stone: #9b9589;
    --stone-dark: #6b6560;
    --oak: #c4a882;
    --oak-dark: #9d7d5a;
    --charcoal: #2c2825;
    --white: #faf9f7;
    --ink: #1a1714;
    --border: #ddd7cf;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  img {
    -webkit-user-drag: none;
    user-select: none;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: flex-end; gap: 16px;
    padding: 28px 60px;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(250,249,247,0.96);
    backdrop-filter: blur(10px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: height 0.4s;
  }
  nav.scrolled .logo-img {
    height: 36px;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
  .nav-links a {
    text-decoration: none; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--stone-dark); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  /* NAV centered */
  nav { justify-content: flex-end; }
  nav.subpage-nav { justify-content: space-between; }
  .nav-center { position: absolute; left: 50%; transform: translateX(-50%); }

  /* NAV PRODUCTS DROPDOWN */
  .nav-products-dd { position: relative; }
  .nav-products-dd > a { display: inline-block; }
  .nav-dd-caret {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: -1px;
    width: 0; height: 0;
    border-left: 3px solid transparent; border-right: 3px solid transparent;
    border-top: 3px solid currentColor;
    transition: transform 0.2s; flex-shrink: 0;
  }
  .nav-products-dd:hover > a .nav-dd-caret { transform: rotate(180deg); }
  .nav-products-menu {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    background: transparent;
    z-index: 200;
  }
  .nav-products-dd:hover .nav-products-menu { display: block; }
  .nav-products-menu-inner {
    background: var(--white); border: 1px solid var(--border);
    min-width: 220px; box-shadow: 0 12px 32px rgba(26,23,20,0.10);
  }
  .nav-products-menu a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px; font-size: 0.72rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--stone-dark); text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid var(--border);
  }
  .nav-products-menu a:last-child { border-bottom: none; }
  .nav-products-menu a:hover { background: var(--sand-light); color: var(--ink); }
  .npm-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem; color: var(--oak);
    flex-shrink: 0; width: 18px;
  }

  /* CONTACT MODAL */
  .contact-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(26,23,20,0.55); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .contact-modal-overlay.open { display: flex; }
  .contact-modal {
    background: var(--white); max-width: 560px; width: 100%;
    padding: 52px 52px 48px; position: relative;
    animation: fadeUp 0.35s ease both;
    box-shadow: 0 24px 60px rgba(26,23,20,0.2);
  }
  .contact-modal-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; cursor: pointer; padding: 8px;
    color: var(--stone); transition: color 0.2s;
  }
  .contact-modal-close:hover { color: var(--ink); }
  .contact-modal-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
  .contact-modal-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--oak-dark); }
  .contact-modal-eyebrow span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oak-dark); font-weight: 500; }
  .contact-modal h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--ink); margin-bottom: 32px; line-height: 1.2; }
  .contact-modal h2 em { font-style: italic; color: var(--oak-dark); }
  .cm-field { margin-bottom: 20px; }
  .cm-field label { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-dark); font-weight: 500; margin-bottom: 8px; }
  .cm-field input, .cm-field textarea {
    width: 100%; border: 1px solid var(--border);
    background: var(--sand-light); color: var(--ink);
    font-family: 'Jost', sans-serif; font-size: 0.88rem;
    font-weight: 300; padding: 13px 16px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
  }
  .cm-field input:focus, .cm-field textarea:focus {
    border-color: var(--oak-dark); background: var(--white);
  }
  .cm-field textarea { resize: vertical; min-height: 110px; }
  .cm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .cm-submit {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--ink); color: var(--white);
    font-family: 'Jost', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 500; padding: 16px 36px;
    border: none; cursor: pointer; margin-top: 8px;
    transition: background 0.25s, transform 0.2s;
  }
  .cm-submit:hover { background: var(--charcoal); transform: translateY(-1px); }
  .cm-success { display: none; text-align: center; padding: 32px 0; }
  .cm-success svg { margin: 0 auto 16px; display: block; }
  .cm-success p { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ink); }
  .cm-success span { font-size: 0.82rem; color: var(--stone-dark); display: block; margin-top: 8px; }

  /* GDPR checkbox */
  .cm-gdpr {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 20px; margin-top: 4px;
  }
  .cm-gdpr input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 16px; height: 16px; min-width: 16px;
    border: 1px solid var(--border); background: var(--sand-light);
    cursor: pointer; margin-top: 2px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }
  .cm-gdpr input[type="checkbox"]:checked {
    background: var(--oak-dark); border-color: var(--oak-dark);
  }
  .cm-gdpr input[type="checkbox"]:checked::after {
    content: ''; position: absolute;
    left: 4px; top: 1px; width: 5px; height: 9px;
    border: 1.5px solid var(--white); border-top: none; border-left: none;
    transform: rotate(45deg);
  }
  .cm-gdpr input[type="checkbox"].gdpr-error { border-color: #c0392b; }
  .cm-gdpr.gdpr-error-state {
    background: rgba(196,168,130,0.14);
    border: 1px solid rgba(157,125,90,0.45);
    padding: 10px 12px;
  }
  .cm-gdpr.gdpr-error-state label {
    color: var(--ink);
    font-weight: 500;
  }
  .cm-gdpr.gdpr-error-state input[type="checkbox"] {
    border-color: var(--oak-dark);
    box-shadow: 0 0 0 3px rgba(157,125,90,0.2);
  }
  .cm-gdpr label {
    font-size: 0.78rem; color: var(--stone-dark);
    line-height: 1.6; cursor: pointer; letter-spacing: 0.02em;
  }
  .cm-gdpr label a { color: var(--oak-dark); text-decoration: underline; text-underline-offset: 2px; }
  .cm-gdpr label a:hover { color: var(--ink); }

  /* LANG DROPDOWN */
  .lang-dropdown { position: relative; z-index: 200; }
  .lang-trigger {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 2px;
    padding: 8px 11px; cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--stone-dark); background: transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    user-select: none; line-height: 1;
  }
  .lang-trigger:hover { background: var(--sand-light); color: var(--ink); }
  .lang-dropdown.open .lang-trigger { background: var(--ink); color: var(--white); border-color: var(--ink); }
  .lang-flag { width: 18px; height: 13px; border-radius: 1px; display: block; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
  .lang-dropdown.open .lang-trigger .lang-flag { box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }
  .lang-caret {
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .lang-dropdown.open .lang-caret { transform: rotate(180deg); }
  .lang-menu {
    display: none; position: absolute; top: 100%; right: 0; padding-top: 6px;
    background: var(--white); border: 1px solid var(--border); border-radius: 2px;
    min-width: 130px; box-shadow: 0 8px 24px rgba(26,23,20,0.10); overflow: hidden;
  }
  .lang-dropdown.open .lang-menu { display: block; }
  .lang-item {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 14px; font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--stone-dark); cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .lang-item:hover { background: var(--sand-light); color: var(--ink); }
  .lang-item.active { color: var(--oak-dark); font-weight: 500; }
  .lang-item + .lang-item { border-top: 1px solid var(--border); }

  /* HERO */
  #hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; background: var(--sand-light);
  }
  .hero-texture {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,168,130,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(155,149,137,0.12) 0%, transparent 50%);
  }
  .hero-grain {
    position: absolute; inset: 0;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2; width: 100%; max-width: 760px;
    margin: 0 auto; padding: 0 40px; text-align: center; animation: fadeUp 1s ease both;
  }
  .hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
  .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--oak-dark); }
  .hero-eyebrow::after  { content: ''; display: block; width: 40px; height: 1px; background: var(--oak-dark); }
  .hero-eyebrow span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oak-dark); font-weight: 500; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.08; color: var(--ink); margin-bottom: 32px; }
  .hero-title em { font-style: italic; color: var(--oak-dark); }
  .hero-sub { font-size: 0.95rem; color: var(--stone-dark); max-width: 480px; margin: 0 auto 48px; line-height: 1.8; }
  .hero-address { display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; color: var(--stone); letter-spacing: 0.04em; margin-bottom: 52px; align-items: center; }
  .hero-address a { color: var(--stone); text-decoration: none; transition: color 0.2s; }
  .hero-address a:hover { color: var(--oak-dark); }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink); color: var(--white); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 500; padding: 16px 36px; transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .hero-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--oak-dark);
    color: var(--oak-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
  }
  .btn-secondary:hover { background: var(--oak-dark); color: var(--white); transform: translateY(-1px); }

  /* NAV CONTACT BUTTON */
  .nav-contact-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; color: var(--oak-dark);
    background: none; border: 1px solid var(--oak-dark);
    padding: 8px 18px; cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex; align-items: center;
  }
  .nav-contact-btn:hover { background: var(--oak-dark); color: var(--white); }

  /* COMMONS */
  section { padding: 120px 60px; }
  .section-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 80px; }
  .section-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
  .section-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--oak-dark); }
  .section-eyebrow span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oak-dark); font-weight: 500; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--ink); line-height: 1.15; }
  .section-title em { font-style: italic; color: var(--oak-dark); }
  .divider { height: 1px; background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent); margin: 0 60px; }

  /* TRUST ICONS */
  #trust-icons {
    background: var(--white);
    padding: 64px 60px;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .trust-item {
    background: var(--sand-light);
    border: 1px solid var(--border);
    padding: 32px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 190px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
  }
  .trust-item:hover {
    background: var(--sand);
    border-color: var(--oak);
    transform: translateY(-2px);
  }
  .trust-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .trust-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .trust-label {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-dark);
    font-weight: 500;
    line-height: 1.45;
  }

  /* SERVICES */
  #services { background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card {
    background: var(--sand-light); padding: 52px 36px;
    cursor: pointer; transition: background 0.3s, transform 0.3s;
    position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--oak-dark);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }
  .service-card:hover { background: var(--sand); transform: translateY(-3px); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--border); line-height: 1; margin-bottom: 24px; transition: color 0.3s; }
  .service-card:hover .service-num { color: var(--oak); }
  .service-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); line-height: 1.35; margin-bottom: 16px; }
  .service-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-top: 24px; transition: color 0.2s, gap 0.2s; }
  .service-card:hover .service-arrow { color: var(--oak-dark); gap: 14px; }

  /* New styles for service card image */
  .service-card-img-wrap {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 120px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
  }
  .service-card-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(4px 12px 20px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .service-card:hover .service-card-img-wrap img {
    transform: scale(1.08) rotate(-3deg);
  }
  /* Optional background shape */
  .service-card-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--white) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  .service-card:hover .service-card-img-wrap::before {
    opacity: 0.8;
  }
  
  .service-num, .service-title, .service-arrow {
    position: relative;
    z-index: 2;
  }

  /* CLIENTS */
  #clients { background: var(--white); padding: 100px 60px; }
  .clients-logos { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 0; margin-top: 60px; border: 1px solid var(--border); }
  .client-logo-wrap {
    flex: 1 1 25%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 52px 40px; border-right: 1px solid var(--border);
    background: var(--sand-light);
    position: relative; overflow: hidden; transition: background 0.3s; gap: 14px;
  }
  .client-logo-wrap:last-child { border-right: none; }
  .client-logo-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--oak-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
  }
  .client-logo-wrap:hover { background: var(--sand); }
  .client-logo-wrap:hover::after { transform: scaleX(1); }
  .client-logo-wrap img { max-height: 38px; max-width: 130px; width: auto; height: auto; object-fit: contain; display: block; }
  .client-logo-name { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-weight: 500; transition: color 0.3s; }
  .client-logo-wrap:hover .client-logo-name { color: var(--oak-dark); }

  /* CONTACT */
  #contact { background: var(--white); padding: 0; }
  .contact-map-wrap { width: 100%; height: 420px; position: relative; overflow: hidden; background: var(--sand); margin-top: 52px; }
  .contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(0.25) contrast(0.96); }
  .contact-map-pin { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; box-shadow: inset 0 -60px 60px -20px rgba(250,249,247,0.6); }
  .contact-content { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
  .contact-block { padding: 56px 52px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; position: relative; transition: background 0.3s; }
  .contact-block:last-child { border-right: none; }
  .contact-block:hover { background: var(--sand-light); }
  .contact-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--oak-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .contact-block:hover::before { transform: scaleX(1); }
  .contact-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--oak-dark); font-weight: 500; margin-bottom: 4px; }
  .contact-value { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ink); line-height: 1.5; }
  .contact-value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
  .contact-value a:hover { color: var(--oak-dark); }
  .contact-icon { width: 36px; height: 36px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .contact-icon svg { width: 16px; height: 16px; stroke: var(--oak-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  /* COMPACT CONTACT SECTION */
  .cf-section { background: var(--sand-light); padding: 80px 60px; }
  .cf-grid { display: grid; grid-template-columns: 420px 460px; gap: 60px; align-items: stretch; justify-content: center; }
  .cf-left { display: flex; flex-direction: column; }
  .cf-map-wrap { position: relative; flex: 1; min-height: 200px; overflow: hidden; }
  .cf-info { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
  .cf-info-row { display: flex; align-items: flex-start; gap: 10px; }
  .cf-info-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; stroke: var(--oak-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .cf-info-link { font-size: 0.82rem; color: var(--stone-dark); text-decoration: none; transition: color 0.2s; }
  .cf-info-link:hover { color: var(--oak-dark); }
  .cf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

  /* FOOTER */
  footer { background: var(--ink); color: var(--stone); padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sand-light); letter-spacing: 0.04em; }
  .footer-copy { font-size: 0.75rem; letter-spacing: 0.08em; }

  /* PAGE SECTIONS */
  .page-section { display: none; padding: 140px 60px 120px; min-height: 100vh; }
  .page-section.active { display: block; }
  .page-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 100px; align-items: start; }
  .page-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .page-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--oak-dark); }
  .page-eyebrow span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oak-dark); font-weight: 500; }
  .page-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--ink); line-height: 1.15; margin-bottom: 52px; }
  .page-title em { font-style: italic; color: var(--oak-dark); }
  .page-body p { font-size: 0.95rem; color: var(--stone-dark); line-height: 1.85; margin-bottom: 20px; }
  .page-body p:last-child { margin-bottom: 0; }
  .page-img-wrap { position: sticky; top: 140px; }
  .page-img-frame { background: var(--sand-light); padding: 24px; position: relative; }
  .page-img-frame::before { content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px; border: 1px solid var(--border); z-index: -1; }
  .page-img-main-wrap {
    background: var(--sand);
    padding: 10px;
  }
  .img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--stone); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
  .page-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .btn-back { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-dark); background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 60px; transition: color 0.2s, gap 0.2s; font-family: 'Jost', sans-serif; font-weight: 500; }
  .btn-back:hover { color: var(--ink); gap: 16px; }

  /* PRODUCT GALLERY */
  .product-gallery-section {
    max-width: 1100px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
  }
  .product-gallery-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .product-gallery-header::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--oak-dark);
  }
  .product-gallery-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oak-dark);
    font-weight: 500;
  }
  .product-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .product-gallery-title em {
    font-style: italic;
    color: var(--oak-dark);
  }

  /* Product gallery section — wide variant breaks out of parent container */
  .product-gallery-section--wide {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* Product gallery grid */
  .pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .pg-grid--4col {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 48px;
    padding: 0 60px;
  }

  /* Card wrapper: image top, info box bottom */
  .pg-card {
    display: flex;
    flex-direction: column;
  }

  /* Info box always visible — holds name/colour/heights or stays empty */
  .pg-info {
    padding: 10px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .pg-info:empty { display: none; }
  .pg-info-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-block;
    position: relative;
  }
  .pg-info-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--oak-dark);
    transition: width 0.3s ease;
  }
  .pg-card:hover .pg-info-name::after { width: 100%; }
  .pg-info-sub {
    font-size: 0.75rem;
    color: var(--stone-dark);
    letter-spacing: 0.03em;
  }
  .pg-info-heights {
    font-size: 0.72rem;
    color: var(--stone-dark);
    letter-spacing: 0.03em;
  }

  .pg-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    aspect-ratio: 1/1;
    cursor: pointer;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pg-item img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .pg-item:hover img { transform: scale(1.02); }
  .pg-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--sand-light);
    transition: background 0.3s;
  }
  .pg-item:hover .pg-placeholder { background: var(--sand); }
  .pg-placeholder-icon {
    width: 40px;
    height: 40px;
    opacity: 0.3;
  }
  .pg-placeholder-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
  }
  .pg-upload-hint {
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--stone);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pg-upload-hint::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--border);
  }

  /* Gallery image lightbox */
  .pg-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26,23,20,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 700;
    padding: 24px;
    box-sizing: border-box;
  }
  .pg-lightbox.open { display: flex; }
  .pg-lightbox .page-img-wrap {
    width: fit-content;
    height: fit-content;
    display: block;
    position: relative;
    top: 0;
    z-index: 1; /* For stacking context of ::before */
    max-width: min(90vw, 1200px);
    max-height: 85vh;
    margin: auto;
  }
  .pg-lightbox .page-img-frame {
    display: block;
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .pg-lightbox .page-img-main-wrap {
    display: block;
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    background: transparent;
  }
  .pg-lightbox img {
    max-width: calc(min(90vw, 1200px) - 68px);
    max-height: calc(85vh - 68px);
    width: auto;
    height: auto;
    display: block;
    background: transparent;
  }
  .pg-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.2);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .pg-lightbox-close:hover { background: rgba(0,0,0,0.35); }

  /* HAMBURGER */
  .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }
  .mobile-nav { display: none; }

  /* LANG TRANSITION */
  .lang-fade { transition: opacity 0.25s ease; }
  .lang-fade.fading { opacity: 0; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE */
  @media (max-width: 900px) {
    nav, nav.scrolled { padding: 18px 20px; }
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .lang-dropdown { display: block; }
    .logo-img { height: auto; max-height: 36px; max-width: calc(100vw - 224px); }
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 220;
      background: rgba(250,249,247,0.98); backdrop-filter: blur(12px);
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-family: 'Jost', sans-serif; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400; color: var(--stone-dark); text-decoration: none; transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--ink); }
    .mobile-nav .mn-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; padding: 8px; }
    .mobile-nav .mn-close span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
    .mobile-nav .mn-close span:first-child { transform: rotate(45deg) translate(1px, 1px); }
    .mobile-nav .mn-close span:last-child  { transform: rotate(-45deg) translate(1px, -1px); }
    .mobile-nav .mn-lang { display: flex; gap: 10px; }
    .mobile-nav .mn-lang a { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); cursor: pointer; transition: color 0.2s; padding: 8px 14px; border: 1px solid var(--border); border-radius: 2px; text-decoration: none; }
    .mobile-nav .mn-lang a:hover { color: var(--oak-dark); border-color: var(--oak-dark); }
    .mobile-nav .mn-lang a.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
    section { padding: 64px 20px; }
    #clients { padding: 64px 20px; }
    .hero-content { padding: 100px 20px 60px; text-align: center; }
    .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }
    .hero-sub { font-size: 0.88rem; }
    .hero-actions { width: 100%; flex-direction: column; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
      width: min(100%, 230px);
      justify-content: center;
    }
    .hero-actions .btn-secondary { margin-top: 0; }
    .section-header { flex-direction: column; gap: 0; margin-bottom: 48px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 32px 24px; }
    .service-card:has(.service-card-img-wrap) { padding-right: 108px; }
    .service-card-img-wrap { width: 80px; height: 100px; right: 16px; }
    .service-card-img-wrap::before { width: 100px; height: 100px; }
    .service-num { font-size: 2.2rem; }
    #trust-icons { padding: 48px 20px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-item { min-height: 170px; padding: 24px 14px 20px; }
    .trust-icon-wrap { width: 64px; height: 64px; margin-bottom: 12px; }
    .trust-label { font-size: 0.7rem; letter-spacing: 0.1em; }
    .clients-logos { flex-wrap: wrap; }
    .client-logo-wrap { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 36px 20px; }
    .client-logo-wrap:nth-child(odd) { border-right: 1px solid var(--border); }
    .client-logo-wrap:nth-last-child(-n+2) { border-bottom: none; }
    .contact-map-wrap { height: 260px; margin-top: 36px; }
    .contact-content { grid-template-columns: 1fr; }
    .contact-block { padding: 36px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .contact-block:last-child { border-bottom: none; }
    #contact > div:first-child { padding: 64px 20px 0 !important; }
    .page-inner { grid-template-columns: 1fr; gap: 40px; }
    .page-img-wrap { position: static; }
    .page-section { padding: 100px 20px 80px; }
    .divider { margin: 0 20px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 20px; }
    .pg-grid { grid-template-columns: 1fr 1fr; }
    .pg-grid--4col { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: 0 20px; }
    .pg-item img { width: 80%; height: 80%; }
    .product-gallery-section { padding-top: 40px; margin-top: 48px; }
    .cf-section { padding: 60px 20px; }
    .cf-grid { grid-template-columns: 1fr; gap: 36px; }
    .cf-form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .pg-grid { grid-template-columns: 1fr; }
    .pg-grid--4col { grid-template-columns: 1fr; gap: 16px 0; padding: 0 16px; }
    .pg-item img { width: 75%; height: 75%; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { min-height: 150px; }
    .pg-lightbox { padding: 48px 32px; }
    .pg-lightbox .page-img-wrap { max-width: 82vw; max-height: 60vh; }
    .pg-lightbox img { max-width: calc(82vw - 68px); max-height: calc(60vh - 68px); border-radius: 2px; }
    .contact-modal-overlay { padding: 0; align-items: flex-start; overflow-y: scroll; overscroll-behavior: contain; }
    .contact-modal { width: 100%; max-width: 100%; min-height: 100vh; min-height: 100dvh; padding: 64px 24px 48px; overflow: visible; border-radius: 0; box-shadow: none; }
    .contact-modal-close { position: fixed; top: 16px; right: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 501; }
  }