/* ============================================================
   HAZINART LIMITED — Shared Stylesheet
   ============================================================ */

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

:root {
  --ink:       #0f0f0f;
  --ink-mid:   #3a3a3a;
  --ink-low:   #737373;
  --rule:      #d0ccc8;
  --sand:      #f4f1ec;
  --cream:     #faf8f4;
  --gold:      #b8965a;
  --gold-text: #856432; /* darkened gold for text — 5.2:1 on --cream */
  --nav-h:     76px;
  --px:        clamp(24px, 8vw, 100px);
  --py:        clamp(48px, 6vw, 80px);

  /* Easing */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--nav-h) + 4px);
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  padding-top: calc(env(safe-area-inset-top, 0px) + var(--nav-h) + 3px);
}

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

/* ── TOP RULE ── */
.top-rule {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  z-index: 1002;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ink) 0%, var(--gold) 55%, transparent 100%);
  transform-origin: left;
  animation: drawRule 1.4s var(--ease-out-expo) both;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; /* починаємо з самого верху — фон покриває safe area */
  left: 0;
  right: 0;
  z-index: 1001; /* вище за grain overlay (z-index 999) */
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--px);
  /* висота = safe area + nav-h + 3px (top-rule) */
  height: calc(env(safe-area-inset-top, 0px) + var(--nav-h) + 3px);
  /* вміст починається нижче safe area + top-rule */
  padding-top: calc(env(safe-area-inset-top, 0px) + 3px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  animation: fadeIn 0.7s 0.3s var(--ease-out-expo) both;
}

.nav-links {
  animation: fadeIn 0.7s 0.4s var(--ease-out-expo) both;
}

.nav-toggle {
  animation: fadeIn 0.7s 0.4s var(--ease-out-expo) both;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.logo-sub {
  font-size: 8px;
  font-weight: 200;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-low);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

nav a:hover { color: var(--ink); }
nav a:hover::after,
nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--ink); }

nav a.nav-news {
  padding: 7px 18px;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, color 0.2s;
}

nav a.nav-news::after { display: none; }

nav a.nav-news:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-mobile {
  display: flex;
  position: fixed;
  inset: 0;
  top: calc(env(safe-area-inset-top, 0px) + var(--nav-h) + 3px);
  background: var(--cream);
  z-index: 1000;
  padding: 48px var(--px) 40px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease-out-expo),
              transform 0.22s var(--ease-out-expo),
              visibility 0s 0.22s;
}

.nav-mobile.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s var(--ease-out-expo),
              transform 0.22s var(--ease-out-expo),
              visibility 0s;
}

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.18s, padding-left 0.18s;
  opacity: 0;
  transform: translateY(8px);
  transition: color 0.18s, padding-left 0.18s,
              opacity 0.3s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo);
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open a:nth-child(1) { transition-delay: 0.06s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.10s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.14s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.18s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.22s; }

.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* ── SECTION BASE ── */
.section {
  padding: var(--py) var(--px);
  border-top: 1px solid var(--rule);
}

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* Headings */
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(42px, 6.5vw, 88px); max-width: 14ch; }
h2 { font-size: clamp(30px, 4vw, 54px); max-width: 20ch; }

h1 em, h2 em {
  font-style: italic;
  color: var(--ink-mid);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  text-wrap: balance;
}

.body-text {
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--ink-mid);
  overflow-wrap: break-word;
}

/* Two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.two-col.align-center { align-items: center; }

/* Photo placeholder (filler state) */
.photo-placeholder {
  background: var(--sand);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--rule);
  opacity: 0.6;
  pointer-events: none;
}

.photo-placeholder-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-low);
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  line-height: 2;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .js-ready .reveal                     { opacity: 1; transform: none; }
  .js-ready .eyebrow.reveal .eyebrow-line { transform: scaleX(1); }
  .js-ready .eyebrow.reveal .eyebrow-text { opacity: 1; }
  .js-ready .approach-list .approach-item { opacity: 1; transform: none; }
  .js-ready .about-grid .site-photo,
  .js-ready .two-col .site-photo         { clip-path: inset(0 0 0% 0); }
  .nav-mobile, .nav-mobile a              { transition: none !important; }
}

/* Real photos */
.site-photo {
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.site-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(10%) saturate(82%) brightness(0.96);
}

/* ── HERO ── */
.hero {
  min-height: calc(100svh - var(--nav-h) - 3px);
  padding: clamp(40px, 5vw, 64px) var(--px) var(--py);
  display: grid;
  grid-template-columns: 55fr 55fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: drawLine 1s 0.4s var(--ease-out-expo) both;
}

.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-text);
  animation: fadeIn 0.7s 0.75s var(--ease-out-expo) both;
}

.hero h1 {
  margin-bottom: clamp(20px, 3vh, 32px);
  animation: fadeUp 1s 0.5s var(--ease-out-expo) both;
}

.hero-body {
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.88;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: clamp(32px, 5vh, 52px);
  animation: fadeIn 0.8s 0.75s var(--ease-out-expo) both;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeIn 0.7s 0.95s var(--ease-out-expo) both;
}

.hero-meta-item {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-low);
}

.hero-meta-divider {
  width: 1px;
  height: 14px;
  background: var(--rule);
  flex-shrink: 0;
}

.hero-image {
  align-self: stretch;
  animation: clipReveal 1.3s 0.35s var(--ease-out-expo) both;
}

.hero-scroll {
  display: none;
}

/* ── ABOUT ── */
.about-editorial {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 44px);
  margin-bottom: clamp(40px, 6vh, 64px);
}

.about-top-row {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vh, 14px);
}

.about-top-row .eyebrow {
  margin-bottom: 0;
}

.about-headline {
  max-width: 22ch;
}

.about-body-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}


/* Horizontal stats strip */
.about-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-strip-cell {
  padding: clamp(20px, 3vh, 32px) 0 clamp(20px, 3vh, 32px) clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--rule);
}

.about-strip-cell:first-child { padding-left: 0; }
.about-strip-cell:last-child { border-right: none; }

.strip-number {
  font-family: 'Cormorant Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.strip-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-low);
  line-height: 1.6;
}

/* ── INVESTMENT APPROACH ── */
.approach-intro {
  margin-bottom: clamp(40px, 6vh, 64px);
  max-width: 680px;
}

.approach-list {
  border-top: 1px solid var(--rule);
}

.approach-item {
  display: grid;
  grid-template-columns: 72px 1fr 2fr;
  gap: 0 clamp(24px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--rule);
}

.approach-num {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.25em;
  color: var(--ink-low);
}

.approach-title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 0;
}

.approach-desc {
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--ink-mid);
}


/* ── CYPRUS ── */
.cyprus-image {
  height: 100%;
  min-height: 380px;
}

/* ── CONTACT ── */
.contact-info-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 24px;
}

.contact-info-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.contact-info-key {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-low);
  padding-top: 2px;
}

.contact-info-val {
  font-size: clamp(16px, 1.3vw, 17px);
  color: var(--ink);
  line-height: 1.65;
}

a.contact-info-val {
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}

a.contact-info-val:hover { color: var(--gold); }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 11px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-textarea {
  resize: none;
  min-height: 110px;
  overflow-wrap: break-word;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 30px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  border-radius: 0;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.form-submit-arrow {
  display: inline-block;
}

/* ── FORM SUCCESS ── */
[data-fs-success] {
  animation: formSuccess 1.2s ease forwards;
}

@keyframes formSuccess {
  0%   { opacity: 0; transform: translateY(12px); }
  40%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: clamp(28px, 4vh, 44px) var(--px);
}

.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-reg {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.18em;
  color: var(--ink-low);
}

.footer-copy {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--ink-low);
}

.footer-disclaimer {
  font-size: 10px;
  font-weight: 200;
  color: var(--ink-low);
  line-height: 1.75;
  max-width: 680px;
}

/* ── NEWS PAGE ── */
.page-header {
  padding: clamp(64px, 9vw, 112px) var(--px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}

.page-header h1 {
  margin-top: clamp(20px, 3vh, 32px);
  margin-bottom: clamp(12px, 2vh, 20px);
}

.page-header-sub {
  font-size: clamp(16px, 1.3vw, 17px);
  color: var(--ink-mid);
  max-width: 480px;
  line-height: 1.75;
}

.news-grid {
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.news-card {
  background: var(--cream);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  background: var(--sand);
}

.news-card-image {
  aspect-ratio: 3/2;
  margin-bottom: 8px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-card-tag {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid currentColor;
}

.news-card-date {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-low);
}

.news-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0;
  transition: color 0.2s;
}

.news-card:hover h3 { color: var(--gold); }

.news-card-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
  flex: 1;
}

.news-card-more {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-low);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.2s;
}

.news-card:hover .news-card-more { color: var(--gold); }

/* Article page */
.article-header {
  padding: clamp(64px, 9vw, 112px) var(--px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  max-width: calc(var(--px) + 740px + var(--px));
}

.article-header h1 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 680px;
  margin: clamp(16px, 2.5vh, 28px) 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-meta-item {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-low);
}

.article-meta-divider {
  width: 1px;
  height: 12px;
  background: var(--rule);
}

.article-body {
  padding: clamp(40px, 6vw, 72px) var(--px);
  max-width: calc(var(--px) + 720px + var(--px));
}

.article-body p {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 660px;
  margin-bottom: 24px;
}

.article-image {
  aspect-ratio: 16/7;
  margin: clamp(28px, 4vw, 52px) 0;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-low);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.article-back:hover { color: var(--gold); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes drawRule {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes clipReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

/* ── SCROLL REVEALS ── */

/* Base: headings and blocks rise up */
.reveal {
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
  will-change: opacity, transform;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible,
.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Eyebrow: container is trigger only — children animate independently */
.js-ready .eyebrow.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.eyebrow-line {
  transform-origin: left;
}

.js-ready .eyebrow.reveal .eyebrow-line {
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out-expo);
}

.eyebrow.reveal.visible .eyebrow-line {
  transform: scaleX(1);
}

.js-ready .eyebrow.reveal .eyebrow-text {
  opacity: 0;
  transition: opacity 0.65s var(--ease-out-expo) 0.35s;
}

.eyebrow.reveal.visible .eyebrow-text {
  opacity: 1;
}

/* Approach list: container is trigger — items stagger in */
.js-ready .approach-list.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js-ready .approach-list .approach-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 90ms + 0.1s);
}

.approach-list.reveal.visible .approach-item {
  opacity: 1;
  transform: none;
}


/* Photos: clip-path wipe from below on scroll reveal */
.js-ready .about-grid .site-photo,
.js-ready .two-col .site-photo {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out-expo);
}

.about-grid.reveal.visible .site-photo,
.two-col.reveal.visible .site-photo {
  clip-path: inset(0 0 0% 0);
}

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
}

/* ── PLACEHOLDERS ── */
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-low);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: unset;
    padding-bottom: 32px;
  }
  .hero-body { margin-bottom: 0; }
  .hero-image { aspect-ratio: 16/9; align-self: auto; }
  .about-strip { grid-template-columns: 1fr 1fr; }
  .about-strip-cell:nth-child(1),
  .about-strip-cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .about-strip-cell:nth-child(2) { border-right: none; }
  .about-strip-cell:nth-child(3) { padding-left: 0; }
  .about-strip-cell:nth-child(4) { }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .cyprus-image { aspect-ratio: 4/3; height: auto; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-body-cols { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr 1fr; }
  .about-strip-cell { padding-left: 0; }
  .about-strip-cell:nth-child(2) { border-right: none; padding-left: 20px; }
  .about-strip-cell:nth-child(3) { border-bottom: none; }
  .about-strip-cell:nth-child(4) { border-bottom: none; padding-left: 20px; }

  /* Approach — stack vertically, body text at accessible size */
  .approach-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .approach-num   { grid-column: 1; grid-row: 1; }
  .approach-title { grid-column: 1; grid-row: 2; margin-bottom: 4px; }
  .approach-desc  { grid-column: 1; grid-row: 3; font-size: 16px; line-height: 1.75; }

  /* Cyprus — show image below text on mobile */
  .cyprus-image { display: block; margin-top: 0; width: 100%; height: auto; min-height: unset; aspect-ratio: 4/3; overflow: hidden; }
  .cyprus-image img { position: static; width: 100%; height: 100%; object-fit: cover; }

  /* Contact — tighten spacing, consistent form field gaps */
  .contact-info-rows { margin-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 20px; }

  .news-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 12px; }
}
