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

    :root {
      --bg: #ffffff;
      --bg-secondary: #f5f4f1;
      --bg-tertiary: #eeede9;
      --text: #111110;
      --text-secondary: #5f5e5a;
      --text-tertiary: #888780;
      --border: rgba(17,17,16,0.12);
      --border-md: rgba(17,17,16,0.22);
      --radius-md: 8px;
      --radius-lg: 12px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
    }

    a { color: inherit; text-decoration: none; }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      z-index: 100;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--text-secondary);
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a.active { color: var(--text); font-weight: 500; }

    .nav-cta {
      font-size: 12px;
      font-weight: 500;
      padding: 8px 18px;
      border: 0.5px solid var(--border-md);
      border-radius: 20px;
      cursor: pointer;
      background: transparent;
      color: var(--text);
      transition: background 0.2s, color 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .nav-cta:hover { background: var(--text); color: var(--bg); }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      flex-direction: column;
      padding: 1.5rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
      background: var(--bg);
      gap: 16px;
    }

    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 15px; color: var(--text-secondary); transition: color 0.2s; }
    .mobile-menu a.active, .mobile-menu a:hover { color: var(--text); }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      padding: 11px 24px;
      background: var(--text);
      color: var(--bg);
      border: none;
      border-radius: 22px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.8; }

    .btn-ghost {
      display: inline-block;
      font-size: 13px;
      font-weight: 400;
      padding: 11px 24px;
      background: transparent;
      color: var(--text-secondary);
      border: 0.5px solid var(--border-md);
      border-radius: 22px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--text); color: var(--text); }

    .eyebrow, .block-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 1.2rem;
    }

    /* ── FADE-IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible { opacity: 1; transform: translateY(0); }

    .delay-10 { transition-delay: 0.1s; }
    .delay-15 { transition-delay: 0.15s; }
    .delay-20 { transition-delay: 0.2s; }

    /* ── PAGE HEADER ── */
    .page-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
      min-height: 280px;
    }

    .page-header-left {
      padding: 4rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-right: 0.5px solid var(--border);
    }

    .page-header h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      line-height: 0.92;
      letter-spacing: 1px;
      margin-bottom: 1.25rem;
    }

    .page-header-sub {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-secondary);
      max-width: 400px;
    }

    .page-header-right {
      background: var(--bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
    }

    .page-header-right-inner {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: 320px;
    }

    .quick-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: var(--bg);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-md);
      transition: border-color 0.2s, transform 0.2s;
    }

    .quick-link:hover { border-color: var(--border-md); transform: translateX(4px); }

    .quick-link-icon {
      width: 32px;
      height: 32px;
      background: var(--bg-secondary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .quick-link-text strong { display: block; font-size: 13px; font-weight: 500; }
    .quick-link-text span { font-size: 12px; color: var(--text-tertiary); }

    /* ── CONTACT CARDS ── */
    .contact-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 0.5px solid var(--border);
    }

    .contact-card {
      padding: 2.5rem;
      border-right: 0.5px solid var(--border);
    }

    .contact-card:last-child { border-right: none; }

    .contact-icon {
      width: 36px;
      height: 36px;
      background: var(--bg-secondary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .contact-card h3 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 0.75rem; }

    .contact-card a {
      font-size: 16px;
      font-weight: 500;
      display: block;
      margin-bottom: 4px;
      transition: color 0.2s;
    }

    .contact-card a:hover { color: var(--text-secondary); }
    .contact-card .note { font-size: 12px; color: var(--text-tertiary); margin-top: 6px; }

    /* ── MAIN GRID ── */
    .main-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
    }

    .main-left {
      padding: 3rem 2.5rem;
      border-right: 0.5px solid var(--border);
    }

    .main-right { padding: 3rem 2.5rem; background: var(--bg-secondary); }

    .main-left h2, .main-right h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 1.75rem;
    }

    /* ── HOURS ── */
    .hours-table { width: 100%; margin-bottom: 2rem; }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 0.5px solid var(--border);
      font-size: 13px;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: var(--text-secondary); }
    .hours-time { font-weight: 500; }
    .hours-time.closed { color: var(--text-tertiary); font-weight: 400; }
    .hours-today { background: var(--bg-secondary); margin: 0 -0.5rem; padding: 10px 0.5rem; border-radius: 4px; }

    /* ── SERVICES ── */
    .services-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 2rem; }

    .service-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      padding: 11px 16px;
      background: var(--bg);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-md);
      transition: border-color 0.2s;
    }

    .service-item:hover { border-color: var(--border-md); }
    .service-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text); flex-shrink: 0; }

    /* ── SPAIN ── */
    .spain-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
    }

    .spain-left {
      padding: 3rem 2.5rem;
      border-right: 0.5px solid var(--border);
    }


    .spain-left h2, .spain-right h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .info-rows { display: flex; flex-direction: column; gap: 0; }

    .info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 0;
      border-bottom: 0.5px solid var(--border);
      font-size: 13px;
    }

    .info-row:last-child { border-bottom: none; }
    .info-key { color: var(--text-secondary); }
    .info-val { font-weight: 500; }
    .info-val a { transition: color 0.2s; }
    .info-val a:hover { color: var(--text-secondary); }

    /* ── FORM ── */
    .form-section {
      padding: 3rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
    }

    .form-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .form-section p {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-tertiary);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      padding: 11px 14px;
      border: 0.5px solid var(--border-md);
      border-radius: var(--radius-md);
      background: var(--bg);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      resize: none;
      appearance: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--text);
    }

    .form-group textarea { min-height: 110px; }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .form-note { font-size: 12px; color: var(--text-tertiary); }

    /* Success message */
    .form-success {
      display: none;
      padding: 16px 20px;
      background: var(--bg-secondary);
      border: 0.5px solid var(--border-md);
      border-radius: var(--radius-md);
      font-size: 14px;
      margin-top: 16px;
    }

    .form-success.show { display: block; }

    /* ── FOOTER ── */
    footer {
      padding: 1.5rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 0.5px solid var(--border);
    }

    .footer-logo-small { font-size: 16px; }

    footer p { font-size: 12px; color: var(--text-tertiary); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.25rem; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .page-header { grid-template-columns: 1fr; }
      .page-header-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2.5rem 1.25rem; }
      .page-header h1 { font-size: 52px; }
      .page-header-right { padding: 2rem 1.25rem; }

      .contact-cards { grid-template-columns: 1fr; }
      .contact-card { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 1.25rem; }
      .contact-card:last-child { border-bottom: none; }

      .main-grid { grid-template-columns: 1fr; }
      .main-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 1.25rem; }
      .main-right { padding: 2rem 1.25rem; }

      .spain-section { grid-template-columns: 1fr; }
      .spain-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 1.25rem; }
      .spain-right { padding: 2rem 1.25rem; }

      .form-section { padding: 2rem 1.25rem; }
      .form-grid { grid-template-columns: 1fr; }

      footer { padding: 1.25rem; flex-direction: column; gap: 8px; text-align: center; }
    }

