/* ============================================================
   Advocate Abroad · Palma de Mallorca — Premium Preview
   Built by PixelUno · pixeluno.es
   Self-contained: no Tailwind, no external framework.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #0B1E39;
  --ink-soft:   #1F2F4E;
  --ink-deeper: #06122A;
  --paper:      #F7F3EC;
  --paper-2:    #EFE7DA;
  --paper-3:    #E5DBC7;
  --terracotta: #B5533A;
  --terracotta-soft: #D08268;
  --gold:       #C9A96A;
  --muted:      #5B6478;
  --white:      #ffffff;

  --pxu-strip:  #6D28D9;
  --pxu-strip-2:#7C3AED;

  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-sans:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max:      1200px;
  --pad-x:    24px;

  --shadow-card:       0 30px 60px -30px rgba(11,30,57,0.18);
  --shadow-card-hover: 0 40px 80px -30px rgba(11,30,57,0.28);
  --shadow-btn:        0 6px 18px -8px rgba(11,30,57,0.6);

  --strip-h: 34px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  padding-top: var(--strip-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(181,83,58,0.2); }

*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: calc(var(--strip-h) + 6px); left: -999px;
  z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 10px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding: 80px 0; }
@media (min-width: 900px) { .section { padding: 112px 0; } }

.section-paper   { background: var(--paper); }
.section-paper-2 { background: var(--paper-2); }
.section-ink     { background: var(--ink); color: var(--paper); }

.grid-2  { display: grid; gap: 40px; grid-template-columns: 1fr; }
.grid-3  { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-4  { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px)  {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-2 { grid-template-columns: 5fr 7fr; gap: 72px; }
  .grid-2--sm { grid-template-columns: 4fr 8fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PixelUno preview strip — always visible
   ============================================================ */
.pxu-strip {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--strip-h);
  background: linear-gradient(90deg, var(--pxu-strip) 0%, var(--pxu-strip-2) 50%, var(--pxu-strip) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px -8px rgba(109,40,217,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
.pxu-strip a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.6); text-underline-offset: 2px; }
.pxu-strip a:hover { text-decoration-color: var(--white); }
.pxu-strip__diamond { display: none; margin-right: 8px; opacity: 0.9; }
@media (min-width: 700px) { .pxu-strip__diamond { display: inline; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: var(--strip-h);
  z-index: 100;
  background: rgba(247,243,236,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(247,243,236,0.94);
  border-bottom-color: rgba(11,30,57,0.08);
  box-shadow: 0 10px 30px -20px rgba(11,30,57,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
@media (max-width: 420px) {
  .header-inner { gap: 8px; padding: 12px 0; }
  .logo__name { font-size: 19px; }
  .logo__line { width: 48px; }
  .logo__sub  { letter-spacing: 0.18em; font-size: 9.5px; }
}
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.logo__name em { font-style: italic; font-weight: 400; }
.logo__line {
  margin-top: 4px;
  height: 1px; width: 64px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left center;
  transition: transform .3s ease;
  will-change: transform;
}
.logo:hover .logo__line { transform: scaleX(1.375); }
.logo__sub {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1000px) { .nav-desktop { display: inline-flex; } }
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--terracotta);
  transition: right .35s ease;
}
.nav-link:hover::after { right: 0; }

.header-right { display: flex; align-items: center; gap: 10px; }

/* Hide the header language switcher on mobile — it lives in the mobile sheet instead */
.header-right .lang-switch { display: none; }
@media (min-width: 700px) { .header-right .lang-switch { display: inline-flex; } }

.lang-switch {
  display: inline-flex; align-items: center;
  padding: 3px;
  border: 1px solid rgba(11,30,57,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}
.lang-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--ink); color: var(--white); }
.lang-switch--dark {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.lang-switch--dark .lang-btn { color: rgba(255,255,255,0.65); }
.lang-switch--dark .lang-btn:hover { color: var(--white); }
.lang-switch--dark .lang-btn.is-active { background: var(--paper); color: var(--ink); }

.cta-header { display: none; }
@media (min-width: 1000px) { .cta-header { display: inline-flex; } }

.menu-btn {
  display: inline-flex; flex-direction: column; gap: 4px;
  padding: 10px; border-radius: 8px;
}
@media (min-width: 1000px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-sheet {
  border-top: 1px solid rgba(11,30,57,0.08);
  background: rgba(247,243,236,0.98);
  backdrop-filter: blur(20px);
}
.mobile-sheet nav {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px var(--pad-x) 24px;
}
.mob-link {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(11,30,57,0.06);
  font-size: 16px; font-weight: 500; color: var(--ink);
  display: flex;
}
.mob-phone {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(11,30,57,0.14);
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  align-self: center;
  transition: background .2s, border-color .2s;
}
.mob-phone:hover { background: rgba(11,30,57,0.03); border-color: rgba(11,30,57,0.28); }

.mob-lang-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(11,30,57,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.mob-lang-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.mob-lang .lang-btn { padding: 8px 14px; font-size: 12px; }

/* ============================================================
   Buttons & links
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  background: var(--ink); color: var(--white);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(181,83,58,0.6);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 15px 26px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--white);
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.link-arrow {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s;
}
.link-arrow:hover { border-bottom-color: var(--terracotta); }
.link-inline {
  color: var(--ink); text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.link-inline:hover { text-decoration-color: var(--terracotta); }

/* ============================================================
   Type utilities
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow--light { color: rgba(247,243,236,0.9); }
.eyebrow--gold  { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-ink .section-title { color: var(--paper); }
.body-lg { font-size: 17.5px; line-height: 1.65; }
.muted   { color: var(--muted); }

.max-prose { max-width: 640px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  min-height: 560px;
  max-height: 780px;
  height: calc(100vh - var(--strip-h) - 80px);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.07); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,30,57,0.55) 0%, rgba(11,30,57,0.75) 55%, rgba(11,30,57,0.92) 100%),
    radial-gradient(60% 60% at 20% 30%, rgba(181,83,58,0.22) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  height: 100%;
  display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 60px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 700px) { .hero-sub { font-size: 18.5px; } }
.hero-cta-row {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 500px) { .hero-cta-row { flex-direction: row; align-items: center; } }
.hero-rating {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
}
.hero-rating strong { color: var(--white); font-weight: 600; }
.stars { display: inline-flex; gap: 2px; }
.star  { width: 15px; height: 15px; fill: var(--gold); }
.dot-sep { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.35); }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar { background: var(--paper); }
.trust-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(11,30,57,0.14), transparent); }
.trust-grid {
  display: grid; gap: 32px 24px;
  grid-template-columns: repeat(2, 1fr);
  padding: 48px 0;
}
@media (min-width: 800px) { .trust-grid { grid-template-columns: repeat(4, 1fr); padding: 64px 0; } }
.trust-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 6px;
}
.trust-num .star-lg { width: 22px; height: 22px; fill: var(--gold); align-self: center; }
.trust-lbl { margin-top: 10px; font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); }

/* ============================================================
   Meet the lawyer
   ============================================================ */
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper-3);
  max-width: 480px;
}
.portrait-svg,
.portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 8s ease;
}
.portrait-frame:hover .portrait-svg,
.portrait-frame:hover .portrait-img { transform: scale(1.03); }
.portrait-badge {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; flex-direction: column; gap: 2px;
  padding: 14px 18px;
  background: rgba(11,30,57,0.88);
  color: var(--white);
  border-radius: 999px 999px 999px 6px;
  backdrop-filter: blur(6px);
}
.portrait-badge__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}
.portrait-badge__lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.8);
}
.lawyer-name-sub {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  color: var(--muted);
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.chip {
  padding: 7px 14px;
  border: 1px solid rgba(11,30,57,0.14);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.55);
  color: var(--ink);
}
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 32px; }

/* ============================================================
   Practice areas
   ============================================================ */
.svc-card {
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(11,30,57,0.06);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201,169,106,0.4);
}
.svc-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--terracotta);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.svc-body {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.svc-cta {
  margin-top: 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: border-color .25s, color .25s;
}
.svc-cta:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ============================================================
   Why choose us
   ============================================================ */
.why-grid {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-num {
  font-family: var(--font-display);
  font-weight: 400; font-size: 30px;
  color: var(--terracotta);
  line-height: 1;
}
.why-title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--ink);
}
.why-body {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   How we work (steps)
   ============================================================ */
.how-steps {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1fr;
  margin-top: 60px;
}
@media (min-width: 700px)  { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .how-steps { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.step-num {
  font-family: var(--font-display);
  font-weight: 400; font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.step-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--paper);
}
.step-body {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247,243,236,0.7);
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-head {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(11,30,57,0.06);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.review-card--featured {
  background: linear-gradient(160deg, var(--paper-2) 0%, var(--white) 60%);
  border-color: rgba(201,169,106,0.4);
}
.review-stars { display: inline-flex; gap: 3px; }
.review-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.review-cap {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,30,57,0.08);
}
.review-name { font-weight: 600; font-size: 14px; display: block; }
.review-meta { font-size: 12px; color: var(--muted); }
.review-card[data-placeholder="true"] {
  border-style: dashed;
  border-color: rgba(11,30,57,0.18);
  background: rgba(255,255,255,0.5);
}
.review-card[data-placeholder="true"] .review-quote {
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(11,30,57,0.10); }
.faq-item:first-child { border-top: 1px solid rgba(11,30,57,0.10); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(11,30,57,0.2);
  border-radius: 999px;
  position: relative;
  transition: background .25s, border-color .25s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition: transform .3s, background .25s;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 12px; }
.faq-item[open] .faq-icon { background: var(--ink); border-color: var(--ink); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  padding: 0 4px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 64ch;
}

/* ============================================================
   Contact form + panel
   ============================================================ */
.form-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(11,30,57,0.14);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(11,30,57,0.08);
}
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.consent input { margin-top: 4px; }
.form-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.form-result {
  padding: 14px 16px;
  background: rgba(201,169,106,0.15);
  border: 1px solid rgba(201,169,106,0.4);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
}

.contact-panel {
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.contact-panel__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 8px;
}
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: var(--paper);
  transition: background .25s;
}
.contact-card:last-of-type { border-bottom: 0; }
.contact-card:hover { background: rgba(255,255,255,0.03); }
.contact-flag { font-size: 22px; line-height: 1; }
.contact-body { flex: 1; }
.contact-lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,243,236,0.6); }
.contact-num { font-family: var(--font-display); font-size: 19px; letter-spacing: -0.005em; margin-top: 2px; }
.contact-arrow { width: 18px; height: 18px; color: rgba(247,243,236,0.6); }
.contact-office {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-office__lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,243,236,0.6); }
.contact-office__name { margin-top: 6px; font-family: var(--font-display); font-size: 22px; }
.contact-office__region { color: rgba(247,243,236,0.7); font-size: 14px; margin-top: 2px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deeper) 100%);
  color: var(--paper);
  padding: 64px 0 32px;
}
.foot-top {
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) { .foot-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 800px) { .foot-brand { grid-column: auto; } }
.foot-brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--paper);
}
.foot-brand__name em { font-style: italic; font-weight: 400; }
.foot-brand__line { margin-top: 4px; height: 1px; width: 64px; background: linear-gradient(90deg, var(--gold), transparent); }
.foot-brand__tag {
  margin-top: 14px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247,243,236,0.7);
}
.foot-h {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,243,236,0.55);
  margin-bottom: 14px;
}
.foot-ul { display: flex; flex-direction: column; gap: 10px; }
.foot-ul a {
  color: rgba(247,243,236,0.85); font-size: 14px;
  transition: color .2s;
}
.foot-ul a:hover { color: var(--white); }
.foot-mid {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 700px) { .foot-mid { flex-direction: row; align-items: center; } }
.foot-copy { font-size: 12px; color: rgba(247,243,236,0.6); }
.foot-signature {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(247,243,236,0.55);
}
.foot-signature__heart { width: 13px; height: 13px; color: var(--terracotta-soft); }
.foot-signature a {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  margin-left: 2px;
}
.foot-signature a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-svg { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
