/* ============================================================
   SAIL852.COM — Production CSS
   Mobile-first · WCAG 2.2 AA · Self-hosted fonts
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Colour */
  --c-bg:         #ffffff;
  --c-surface:    #f8f8f6;
  --c-surface2:   #f1f1ed;
  --c-ink:        #111111;
  --c-ink2:       #444444;
  --c-muted:      #888888;
  --c-hairline:   #e8e8e4;
  --c-brand:      #c8102e;
  --c-brand-dark: #a00d25;
  --c-link:       #0066cc;
  --c-green:      #1a7a42;
  --c-sold:       #888888;
  --c-wa:         #25D366;
  --c-overlay:    rgba(0,0,0,0.92);

  /* Type */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body:    Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --t-xs:   11px;
  --t-sm:   13px;
  --t-base: 15px;
  --t-md:   16px;
  --t-lg:   clamp(18px, 2vw, 22px);
  --t-xl:   clamp(22px, 3vw, 30px);
  --t-2xl:  clamp(28px, 4.5vw, 42px);
  --t-hero: clamp(30px, 5.5vw, 54px);

  /* Layout */
  --max-w:     1280px;
  --nav-h:     68px;
  --gap:       clamp(40px, 6vw, 80px);
  --gutter:    clamp(16px, 4vw, 32px);
  --radius-sm: 3px;
  --radius:    6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);

  /* Motion */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --duration:  200ms;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select { font: inherit; }
h1,h2,h3,h4 {
  font-family: var(--f-display);
  line-height: 1.2;
  font-weight: 600;
}

/* ── Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--gap) 0; }
.section--alt { background: var(--c-surface); }
.section--dark {
  background: var(--c-ink);
  color: #fff;
}
.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;
}
.section-title {
  font-size: var(--t-xl);
  text-align: center;
  margin-bottom: 10px;
}
.section-rule {
  width: 40px; height: 2px;
  background: var(--c-brand);
  margin: 0 auto 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--c-brand);
  color: #fff;
}
.btn--primary:hover { background: var(--c-brand-dark); }
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }
.btn--wa {
  background: var(--c-wa);
  color: #fff;
}
.btn--wa:hover { background: #1da851; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-hairline);
  transition: box-shadow var(--duration) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.nav__logo-text {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink2);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--duration) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-brand);
  transition: width 220ms var(--ease);
}
.nav__links a:hover { color: var(--c-ink); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--c-ink); }
.nav__spacer { flex: 1; }
.nav__cta {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-wa);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--c-wa);
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}
.nav__cta:hover { background: var(--c-wa); color: #fff; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--c-hairline);
    box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    width: 100%;
    padding: 14px var(--gutter);
    font-size: var(--t-sm);
    border-bottom: 1px solid var(--c-hairline);
  }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
}

/* ── Hero Slider ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero__caption {
  position: absolute;
  bottom: clamp(56px, 8vh, 100px);
  left: var(--gutter);
  right: var(--gutter);
  max-width: 560px;
  color: #fff;
  z-index: 2;
}
.hero__caption-tag {
  display: inline-block;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--c-brand);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.hero__caption h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  margin-bottom: 8px;
}
.hero__caption p {
  font-size: var(--t-sm);
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero__nav {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero__prev,
.hero__next {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background var(--duration) var(--ease);
}
.hero__prev:hover,
.hero__next:hover { background: rgba(255,255,255,0.32); }
.hero__dots {
  display: flex;
  gap: 6px;
}
.hero__dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.hero__dots button.active {
  background: #fff;
  transform: scale(1.4);
}
@media (max-width: 600px) {
  .hero__caption { bottom: 80px; }
}

/* ── Yacht Cards ── */
.yacht-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
@media (max-width: 640px) {
  .yacht-grid { grid-template-columns: 1fr; gap: 20px; }
}
.yacht-card {
  display: block;
  background: var(--c-bg);
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms var(--ease),
              box-shadow 280ms var(--ease),
              border-color 280ms var(--ease);
  text-decoration: none;
  color: var(--c-ink);
}
.yacht-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.yacht-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-surface2);
}
.yacht-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.yacht-card:hover .yacht-card__img img {
  transform: scale(1.05);
}
.yacht-card__body {
  padding: 16px 18px 18px;
}
.yacht-card__meta {
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 5px;
}
.yacht-card__name {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.yacht-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--c-hairline);
}
.yacht-card__price {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-ink);
}
.yacht-card__price--sold {
  color: var(--c-sold);
  font-weight: 400;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}
.badge--available {
  background: rgba(26,122,66,0.1);
  color: var(--c-green);
}
.badge--sold {
  background: rgba(136,136,136,0.12);
  color: var(--c-sold);
}
.badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Filters ── */
.filters {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-hairline);
  padding: 16px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filters__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.filters__inner select,
.filters__inner input {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: var(--t-sm);
  transition: border-color var(--duration) var(--ease);
}
.filters__inner select:focus,
.filters__inner input:focus {
  border-color: var(--c-brand);
  outline: none;
}
.filters__price-range {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--c-muted);
}
.filters__price-range input { width: 110px; }
#filter-keyword { width: 180px; }
#filter-count {
  margin-left: auto;
  font-size: var(--t-xs);
  color: var(--c-muted);
}
@media (max-width: 640px) {
  .filters__inner { gap: 8px; }
  .filters__price-range input { width: 90px; }
  #filter-keyword { width: 140px; }
  #filter-count { display: none; }
}

/* ── Yacht Detail ── */
.detail-hero {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.detail-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  background: var(--c-surface);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.detail-price {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--c-ink);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}
.detail-section {
  margin-bottom: 28px;
}
.detail-section h3 {
  font-size: var(--t-md);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-hairline);
}
.detail-section p {
  font-size: var(--t-sm);
  color: var(--c-ink2);
  line-height: 1.8;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-sm);
}
.specs-table tr:nth-child(even) td { background: var(--c-surface); }
.specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--c-hairline);
  vertical-align: top;
}
.specs-table td:first-child {
  color: var(--c-muted);
  width: 42%;
  font-weight: 500;
}
.features-list { margin-top: 4px; }
.features-list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: var(--t-sm);
  color: var(--c-ink2);
  border-bottom: 1px solid var(--c-hairline);
}
.features-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
}
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .thumb-grid { grid-template-columns: repeat(3, 1fr); }
}
.thumb-grid button {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.thumb-grid button img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--duration) var(--ease);
}
.thumb-grid button:hover img { opacity: 0.75; }
.sidebar-card {
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--c-bg);
}
.sidebar-card + .sidebar-card { margin-top: 16px; }
.sidebar-card h3 {
  font-size: var(--t-md);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-hairline);
}
.sidebar-card p {
  font-size: var(--t-sm);
  color: var(--c-ink2);
  margin-bottom: 6px;
}
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.sidebar-actions .btn { justify-content: center; }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--c-overlay);
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.lightbox__counter { font-size: var(--t-xs); }
.lightbox__close {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 56px;
  min-height: 0;
}
.lightbox__img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }
.lightbox__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 20px;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.lightbox__thumbs::-webkit-scrollbar { height: 4px; }
.lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
.lightbox__thumbs button {
  flex-shrink: 0;
  width: 64px; height: 46px;
  overflow: hidden;
  border-radius: 3px;
  opacity: 0.55;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: opacity var(--duration) var(--ease);
}
.lightbox__thumbs button.active {
  opacity: 1;
  outline-color: var(--c-brand);
}
.lightbox__thumbs button img { width: 100%; height: 100%; object-fit: cover; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-hairline);
  background: linear-gradient(to bottom, var(--c-surface) 0%, var(--c-bg) 100%);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero__meta {
  font-size: var(--t-sm);
  color: var(--c-muted);
}
.breadcrumb {
  font-size: var(--t-xs);
  color: var(--c-muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.breadcrumb a {
  color: var(--c-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Partners Grid ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.partner-card {
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--c-bg);
  transition: box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}
.partner-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--c-brand);
}
.partner-card h3 { font-size: var(--t-md); margin-bottom: 8px; }
.partner-card p { font-size: var(--t-sm); color: var(--c-ink2); margin-bottom: 14px; line-height: 1.6; }
.partner-card a {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Stories ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.story-card { display: block; color: var(--c-ink); }
.story-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--c-surface2);
}
.story-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.story-card:hover .story-card__img img { transform: scale(1.04); }
.story-card__cat {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 4px;
}
.story-card__title {
  font-family: var(--f-display);
  font-size: var(--t-md);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color var(--duration) var(--ease);
}
.story-card:hover .story-card__title { color: var(--c-brand); }
.story-card__excerpt {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── Story Article ── */
.article { max-width: 740px; margin: 0 auto; }
.article__hero {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.article__body p {
  margin-bottom: 20px;
  font-size: var(--t-base);
  color: var(--c-ink2);
  line-height: 1.8;
}
.article__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 32px 0;
}
@media (max-width: 600px) {
  .article__photos { grid-template-columns: repeat(2, 1fr); }
}
.article__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.article__notes {
  border-left: 3px solid var(--c-brand);
  background: var(--c-surface);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 32px;
}
.article__notes h3 { font-size: var(--t-md); margin-bottom: 12px; }
.article__notes ul { list-style: disc; padding-left: 20px; }
.article__notes li {
  font-size: var(--t-sm);
  color: var(--c-ink2);
  padding: 3px 0;
  line-height: 1.6;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-photo-wrap {
  background: var(--c-surface2);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: var(--t-sm);
  text-align: center;
  padding: 20px;
}
.about-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  border-left: 3px solid var(--c-brand);
  padding-left: 18px;
  margin: 20px 0;
  color: var(--c-ink);
  line-height: 1.5;
}
.about-bio p {
  font-size: var(--t-sm);
  color: var(--c-ink2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-contact {
  border-left: 3px solid var(--c-brand);
  padding: 14px 18px;
  margin-top: 24px;
  background: var(--c-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-contact p { font-size: var(--t-sm); margin-bottom: 6px; }
.about-contact a { color: var(--c-link); text-decoration: underline; text-underline-offset: 2px; }
.about-steps { max-width: 680px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-hairline);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--c-brand);
  color: var(--c-brand);
  font-family: var(--f-display);
  font-size: var(--t-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__body h3 { font-size: var(--t-md); margin-bottom: 6px; }
.step__body p { font-size: var(--t-sm); color: var(--c-ink2); line-height: 1.7; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--c-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: var(--t-base);
}
.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  margin-top: 40px;
  overflow: hidden;
}
.contact-bar a {
  text-align: center;
  padding: 18px;
  font-size: var(--t-sm);
  font-weight: 500;
  border-right: 1px solid var(--c-hairline);
  transition: background var(--duration) var(--ease);
}
.contact-bar a:last-child { border-right: none; }
.contact-bar a:hover { background: var(--c-surface); }
.contact-bar a.whatsapp { color: var(--c-wa); font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__brand img {
  width: 32px; height: 32px;
  border-radius: 50%;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 16px;
  color: #fff;
}
.footer__tagline {
  font-size: var(--t-sm);
  line-height: 1.65;
}
.footer__heading {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: #fff; }
.footer__contact p {
  font-size: var(--t-sm);
  margin-bottom: 8px;
}
.footer__contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: var(--t-xs); }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--c-brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: 8px; }

/* ── Print ── */
@media print {
  .nav, .wa-fab, .hero__nav, .filters { display: none !important; }
  .hero { height: auto; min-height: 200px; }
  body { font-size: 12pt; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
