/* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:   #F7F3EE;
      --warm0:   #EFEBE4;
      --warm1:   #D9CFC4;
      --warm2:   #B5A898;
      --brown:   #6B5744;
      --rust:    #C0634A;
      --rust-l:  #D97B5F;
      --ink:     #2A1F18;
      --ink2:    #4A3B32;
      --green:   #4A6B5A;
      --green-l: #E8F0EB;

      --ff-serif: 'David Libre', Georgia, serif;
      --ff-sans:  'Heebo', system-ui, sans-serif;

      --max-w: 1120px;
      --radius: 20px;
      --radius-sm: 12px;
    }

    /* English page font overrides */
    [lang="en"] {
      --ff-serif: 'Playfair Display', Georgia, serif;
      --ff-sans:  'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: var(--ff-sans);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ============================================
       NOISE TEXTURE OVERLAY
    ============================================ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ============================================
       CONTAINER
    ============================================ */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ============================================
       HEADER
    ============================================ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 243, 238, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--warm1);
    }

    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .logo-container img {
      height: 32px;
      display: block;
    }

    /* Fallback wordmark if logo doesn't load */
    .logo-wordmark {
      font-family: var(--ff-serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: var(--ink2);
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: color .2s;
    }

    nav a:hover { color: var(--rust); }

    .nav-cta {
      background: var(--ink);
      color: var(--cream) !important;
      padding: .45rem 1.1rem;
      border-radius: 100px;
      transition: background .2s, transform .15s !important;
    }
    .nav-cta:hover {
      background: var(--rust) !important;
      color: var(--cream) !important;
      transform: translateY(-1px);
    }

    .lang-switch {
      font-size: .8rem !important;
      font-weight: 400 !important;
      opacity: .7;
      transition: opacity .2s;
    }
    .lang-switch:hover {
      opacity: 1;
    }

    /* ============================================
       HERO
    ============================================ */
    .hero {
      padding: 80px 0 0;
      overflow: hidden;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding-bottom: 72px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--rust);
      margin-bottom: 1.25rem;
    }

    .hero-eyebrow span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--rust);
      border-radius: 2px;
    }

    .hero h1 {
      font-family: var(--ff-serif);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 600;
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--rust);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--ink2);
      max-width: 52ch;
      line-height: 1.75;
      margin-bottom: 2.25rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--rust);
      color: #fff;
      font-family: var(--ff-sans);
      font-size: .95rem;
      font-weight: 600;
      padding: .75rem 1.75rem;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(192, 99, 74, 0.3);
    }
    .btn-primary:hover {
      background: #A8533C;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(192, 99, 74, 0.4);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      color: var(--ink2);
      font-size: .9rem;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1.5px solid var(--warm1);
      padding-bottom: 2px;
      transition: color .2s, border-color .2s;
    }
    .btn-ghost:hover { color: var(--rust); border-color: var(--rust); }

    /* Right side: illustrated panel */
    .hero-visual {
      position: relative;
      height: 380px;
    }

    .hero-blob {
      position: absolute;
      inset: 0;
      background: var(--warm0);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      animation: blobmorph 12s ease-in-out infinite alternate;
    }

    @keyframes blobmorph {
      0%   { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
      33%  { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
      66%  { border-radius: 60% 40% 55% 45% / 40% 60% 45% 55%; }
      100% { border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
    }

    .hero-stat-chips {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .stat-chip {
      background: #fff;
      border: 1px solid var(--warm1);
      border-radius: var(--radius-sm);
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: .85rem;
      box-shadow: 0 4px 20px rgba(107,87,68,.08);
      transition: transform .25s, box-shadow .25s;
      cursor: default;
    }
    .stat-chip:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,87,68,.13); }

    .chip-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .chip-rust  { background: #FDF0EC; }
    .chip-green { background: var(--green-l); }
    .chip-warm  { background: var(--warm0); }

    .chip-label {
      font-size: .78rem;
      color: var(--warm2);
      font-weight: 500;
      line-height: 1.2;
    }
    .chip-value {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
    }

    /* ============================================
       WAVE DIVIDER
    ============================================ */
    .wave {
      display: block;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    .wave svg { display: block; width: 100%; }

    /* ============================================
       SERVICES BAND
    ============================================ */
    .services-band {
      background: var(--ink);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }

    /* Subtle dot grid */
    .services-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .section-label {
      font-size: .78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--rust-l);
      margin-bottom: .75rem;
    }

    .services-band .section-label { color: var(--rust-l); }
    .services-band h2 {
      font-family: var(--ff-serif);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 600;
      color: #fff;
      margin-bottom: 3rem;
      max-width: 30ch;
      line-height: 1.25;
    }
    .services-band h2 em { font-style: italic; color: var(--rust-l); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 2rem;
      transition: background .25s, transform .25s, border-color .25s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--rust);
      transform: scaleX(0);
      transform-origin: inline-start;
      transition: transform .3s ease;
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.2);
      transform: translateY(-4px);
    }

    .service-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(192,99,74,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      font-size: 1.4rem;
    }

    .service-card img.service-img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .service-card h3 {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: .65rem;
      line-height: 1.3;
    }

    .service-card p {
      font-size: .9rem;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
    }

    /* ============================================
       PHILOSOPHY STRIP
    ============================================ */
    .philosophy {
      padding: 80px 0;
      background: var(--warm0);
    }

    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: center;
    }

    .philosophy h2 {
      font-family: var(--ff-serif);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.25;
    }
    .philosophy h2 em { font-style: italic; color: var(--rust); }

    .philosophy-points {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .point {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .point-num {
      font-family: var(--ff-serif);
      font-size: .85rem;
      font-weight: 600;
      color: var(--rust);
      min-width: 28px;
      padding-top: 3px;
    }

    .point h4 {
      font-family: var(--ff-sans);
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .25rem;
    }

    .point p {
      font-size: .88rem;
      color: var(--ink2);
      line-height: 1.65;
    }

    /* ============================================
       TEAM
    ============================================ */
    .team {
      padding: 90px 0;
      background: var(--cream);
    }

    .team .section-label { color: var(--rust); }
    .team h2 {
      font-family: var(--ff-serif);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 3.5rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .team-card {
      background: #fff;
      border: 1px solid var(--warm1);
      border-radius: var(--radius);
      padding: 2.5rem;
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      transition: box-shadow .25s, transform .25s;
    }
    .team-card:hover {
      box-shadow: 0 16px 48px rgba(107,87,68,.12);
      transform: translateY(-4px);
    }

    .team-photo-wrap {
      flex-shrink: 0;
    }

    .team-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--warm1);
      display: block;
    }

    /* Fallback avatar */
    .team-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--warm0);
      border: 3px solid var(--warm1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-serif);
      font-size: 2rem;
      font-weight: 600;
      color: var(--brown);
    }

    .team-info h3 {
      font-family: var(--ff-serif);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .3rem;
    }

    .team-tag {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--green);
      background: var(--green-l);
      padding: .2rem .6rem;
      border-radius: 100px;
      margin-bottom: .85rem;
    }

    .team-info p {
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.7;
    }

    /* ============================================
       CONTACT
    ============================================ */
    .contact {
      background: var(--ink);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(192,99,74,.18), transparent 70%);
      border-radius: 50%;
    }
    .contact::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -40px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(74,107,90,.15), transparent 70%);
      border-radius: 50%;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .contact-left .section-label { color: var(--rust-l); }
    .contact-left h2 {
      font-family: var(--ff-serif);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 600;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.25;
    }
    .contact-left h2 em { font-style: italic; color: var(--rust-l); }

    .contact-left p {
      font-size: .95rem;
      color: rgba(255,255,255,.6);
      line-height: 1.75;
      max-width: 36ch;
    }

    .contact-badges {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-top: 2rem;
    }

    .contact-badge {
      display: flex;
      align-items: center;
      gap: .75rem;
      font-size: .88rem;
      color: rgba(255,255,255,.7);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--rust-l);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }

    .field label {
      font-size: .78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255,255,255,.45);
    }

    .field input,
    .field textarea {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-sm);
      padding: .85rem 1rem;
      font-family: var(--ff-sans);
      font-size: .95rem;
      color: #fff;
      outline: none;
      transition: border-color .2s, background .2s;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,.25);
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--rust-l);
      background: rgba(255,255,255,.1);
    }

    .contact-form .btn-primary {
      align-self: flex-start;
      margin-top: .5rem;
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background: #1A130D;
      padding: 28px 0;
      border-top: 1px solid rgba(255,255,255,.06);
    }

    footer .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer p {
      font-size: .83rem;
      color: rgba(255,255,255,.35);
    }

    .footer-wordmark {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: rgba(255,255,255,.25);
      text-decoration: none;
    }

    /* ============================================
       ANIMATIONS
    ============================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-content { animation: fadeUp .7s ease both; }
    .hero-visual  { animation: fadeUp .7s .15s ease both; }

    /* Intersection observer fade-ins */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 900px) {
      .hero-top      { grid-template-columns: 1fr; }
      .hero-visual   { height: 260px; max-width: 420px; margin: 0 auto; }
      .services-grid { grid-template-columns: 1fr; }
      .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .team-grid     { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .form-row      { grid-template-columns: 1fr; }
      footer .container { flex-direction: column; gap: .5rem; text-align: center; }
    }

    @media (max-width: 540px) {
      .team-card { flex-direction: column; }
      nav ul { gap: 1rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }