/* ==========================================================================
   OlayTrans — Public Site Styles
   Maritime logistics · KKTC corporate B2B
   Fonts: Poppins (corporate UI)
   Palette: white / snow / navy / ocean / steel / accent teal
   ========================================================================== */

/* --- Custom properties --------------------------------------------------- */

:root {
  --white: #FFFFFF;
  --snow: #F5F7FA;
  --mist: #EEF3F7;
  --horizon: #E4EDF4;
  --navy: #0B1F3A;
  --ocean: #1B4F72;
  --steel: #5B6B7C;
  --line: #E6EBF0;
  --accent: #0E6B8A;

  --navy-soft: rgba(11, 31, 58, 0.06);
  --ocean-soft: rgba(27, 79, 114, 0.08);
  --accent-soft: rgba(14, 107, 138, 0.12);
  --accent-dim: rgba(14, 107, 138, 0.35);
  --steel-muted: #4A5A6B;
  --steel-light: #6B7C8D;

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --header-h: 4.75rem;
  --container: 90rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration: 0.45s;
  --duration-fast: 0.25s;
  --duration-slow: 0.55s;

  color-scheme: light;
}

/* --- Reset & base -------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--accent-soft);
  color: var(--navy);
}

/* --- Skip link ----------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-sm);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04),
              0 8px 32px rgba(11, 31, 58, 0.06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: var(--space-md);
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  z-index: 110;
  justify-self: start;
}

.brand__mark {
  color: var(--accent);
  font-size: 1.35em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand__name {
  color: var(--navy);
  letter-spacing: 0.14em;
}

.brand__tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.brand--logo {
  gap: 0;
}

.brand__logo {
  display: block;
  height: clamp(2.25rem, 4.5vw, 2.75rem);
  width: auto;
  max-width: min(12.5rem, 42vw);
  object-fit: contain;
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-bar__inner {
  width: min(1120px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-bar__item {
  background: var(--white);
  padding: 1.35rem 1.25rem;
  text-align: center;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.trust-bar__item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

@media (max-width: 720px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
  }
}

/* Footer — defined in footer section below */

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  z-index: 110;
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast);
}

.menu-toggle:hover {
  border-color: var(--ocean);
  background: var(--snow);
}

.menu-toggle__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 1px;
  transition:
    transform var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Navigation */
.site-nav {
  display: contents;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  grid-column: 2;
  justify-self: center;
}

.site-nav__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
  grid-column: 3;
  justify-self: end;
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
}

.site-nav__link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color var(--duration-fast);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--navy);
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
  transform: scaleX(1);
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lang-switch__btn {
  color: var(--steel-light);
  transition: color var(--duration-fast);
}

.lang-switch__btn:hover,
.lang-switch__btn.is-active {
  color: var(--ocean);
}

.lang-switch__sep {
  color: var(--line);
  font-weight: 400;
}

/* Phone CTA */
.phone-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--snow);
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    transform var(--duration-fast) var(--ease-out);
}

.phone-cta:hover {
  border-color: var(--ocean);
  background: var(--white);
  transform: translateY(-1px);
}

.phone-cta__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
}

.phone-cta__number {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.phone-cta__arrow {
  display: none;
}

/* --- Main layout --------------------------------------------------------- */

.site-main {
  min-height: calc(100dvh - var(--header-h));
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-md) var(--gutter) 0;
  font-size: 0.8125rem;
  color: var(--steel-light);
}

.breadcrumbs a {
  transition: color var(--duration-fast);
}

.breadcrumbs a:hover {
  color: var(--ocean);
}

/* --- Typography utilities ------------------------------------------------ */

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.section--dark .eyebrow,
.statement .eyebrow {
  color: var(--accent);
}

.section--mist .eyebrow {
  color: var(--accent);
}

.body-copy {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--steel-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ocean);
  transition:
    color var(--duration-fast),
    gap var(--duration-fast);
}

.text-link:hover {
  color: var(--accent);
  gap: 0.75rem;
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background var(--duration-fast),
    border-color var(--duration-fast),
    color var(--duration-fast),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.18);
}

.btn--ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--ghost:hover {
  border-color: var(--ocean);
  background: var(--navy-soft);
}

.section--dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.section--dark .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.statement .btn--primary {
  background: var(--navy);
  color: var(--white);
}

.statement .btn--primary:hover {
  background: var(--ocean);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.16);
}

.site-footer__cta .btn--primary {
  background: var(--navy);
  color: var(--white);
}

.site-footer__cta .btn--primary:hover {
  background: var(--ocean);
}

.site-footer__cta .btn--ghost,
.site-footer__cta-ghost {
  border-color: rgba(11, 31, 58, 0.22);
  color: var(--navy);
  background: transparent;
}

.site-footer__cta .btn--ghost:hover,
.site-footer__cta-ghost:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 58, 0.05);
  color: var(--navy);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* --- Hero (homepage) ----------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - var(--header-h));
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--snow) 0%, var(--white) 42%, var(--white) 100%);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Soft horizon gradient + light sky */
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 31, 58, 0.04) 0%,
      transparent 18%),
    radial-gradient(ellipse 80% 50% at 50% 100%,
      rgba(14, 107, 138, 0.06) 0%,
      transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%,
      rgba(27, 79, 114, 0.05) 0%,
      transparent 50%),
    linear-gradient(180deg, var(--snow) 0%, var(--white) 65%);
}

/* Subtle paper texture — very light */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: multiply;
}

.hero__geometry {
  position: absolute;
  inset: 0;
}

/* Abstract wave / horizon lines */
.hero__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(14, 107, 138, 0.25) 20%,
    rgba(27, 79, 114, 0.35) 50%,
    rgba(14, 107, 138, 0.2) 80%,
    transparent 100%);
}

.hero__line--a {
  top: 32%;
  left: -5%;
  width: 70%;
  transform: rotate(-2deg);
}

.hero__line--b {
  bottom: 28%;
  right: -8%;
  width: 55%;
  transform: rotate(1.5deg);
  opacity: 0.7;
}

.hero__arc {
  position: absolute;
  bottom: 18%;
  right: 6%;
  width: clamp(10rem, 22vw, 18rem);
  height: clamp(5rem, 10vw, 8rem);
  border: 1px solid rgba(27, 79, 114, 0.15);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.6;
}

.hero__arc::before {
  content: "";
  position: absolute;
  inset: 1.25rem 1.25rem 0;
  border: 1px solid rgba(14, 107, 138, 0.12);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__panel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
}

.hero__ship {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero__facts dt {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero__facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    order: -1;
    max-width: 28rem;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 var(--space-md);
}

.hero__lead {
  max-width: 36rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--steel-muted);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-light);
}

.hero__scroll-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* --- Sections ------------------------------------------------------------ */

.section {
  padding: var(--space-2xl) var(--gutter);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
  border-block: none;
}

.section--dark .section__title,
.section--dark .split__title {
  color: var(--white);
}

/* Soft maritime mist — replaces heavy navy bands */
.section--mist {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 35%),
    linear-gradient(135deg, #F7FAFC 0%, var(--mist) 48%, var(--horizon) 100%);
  color: var(--navy);
  overflow: hidden;
}

.section--mist::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 107, 138, 0.18), transparent);
  pointer-events: none;
}

.section--mist .section__title,
.section--mist .split__title {
  color: var(--navy);
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: var(--space-xl);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.section__head .section__title {
  margin-bottom: 0;
}

.section__head .eyebrow {
  margin-bottom: var(--space-sm);
}

/* Intro section */
.intro {
  background: var(--white);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.split__body {
  padding-top: 0.25rem;
}

/* --- Service strip (home preview) ---------------------------------------- */

.services-preview {
  position: relative;
}

.services-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 107, 138, 0.28), transparent);
}

.service-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.service-strip__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  transition: background var(--duration-fast);
}

.service-strip__item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.service-strip__index {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.service-strip__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.service-strip__content p {
  font-size: 0.9375rem;
  color: var(--steel-muted);
  max-width: 36rem;
  line-height: 1.6;
}

.service-strip__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast);
}

.service-strip__link:hover {
  border-color: var(--accent);
  background: var(--white);
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* --- Gallery mosaic (home preview) --------------------------------------- */

.gallery-preview {
  background: var(--snow);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gallery-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-mosaic__item--featured {
  grid-row: span 1;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}

.gallery-mosaic__item:hover img {
  transform: scale(1.03);
}

.gallery-mosaic__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.88));
}

.gallery-mosaic__item figcaption span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.25rem;
}

.gallery-mosaic__item figcaption strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* --- Statement band ------------------------------------------------------ */

.statement {
  position: relative;
  padding: var(--space-2xl) var(--gutter);
  background:
    radial-gradient(ellipse 80% 70% at 12% 20%, rgba(14, 107, 138, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 80%, rgba(27, 79, 114, 0.06), transparent 50%),
    linear-gradient(180deg, #FBFCFD 0%, var(--mist) 100%);
  color: var(--navy);
  border-block: 1px solid rgba(11, 31, 58, 0.06);
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(28rem, 60%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(14, 107, 138, 0.35), transparent);
  pointer-events: none;
}

.statement--compact {
  padding-block: var(--space-xl);
}

.statement__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
}

.statement__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 16ch;
}

.statement__action p {
  font-size: 1.0625rem;
  color: var(--steel-muted);
  margin-bottom: var(--space-md);
  line-height: 1.65;
  max-width: 36ch;
}

/* --- Page hero (inner pages) --------------------------------------------- */

.page-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--gutter) var(--space-lg);
  background: linear-gradient(180deg, var(--snow) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 18ch;
  margin-bottom: var(--space-md);
}

.page-hero__lead {
  max-width: 42rem;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: var(--steel-muted);
}

.page-hero--gallery .page-hero__title {
  max-width: 14ch;
}

/* --- Values grid (about) ------------------------------------------------- */

.values__grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-lg);
}

.values__item {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(11, 31, 58, 0.1);
}

.values__index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.values__item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.values__item p {
  font-size: 0.9375rem;
  color: var(--steel-muted);
  line-height: 1.65;
}

/* --- About hero (single image) ------------------------------------------- */

.about-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 12ch;
  margin: 0 0 var(--space-md);
}

.about-hero__lead {
  max-width: 36rem;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: var(--steel-muted);
  margin: 0;
}

.about-hero__media {
  position: relative;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  box-shadow:
    0 1px 0 rgba(11, 31, 58, 0.06),
    0 28px 56px -30px rgba(11, 31, 58, 0.4);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

.about-hero:hover .about-hero__media img {
  transform: scale(1.06);
}

.about-hero__frame {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.about-hero:not(:has(.about-hero__media)) .about-hero__inner {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__title {
    max-width: none;
  }
}

.prose__content--about {
  max-width: 46rem;
}

/* --- Content blocks (home + reusable) ------------------------------------ */

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ablock {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.ablock--alt {
  background: linear-gradient(180deg, var(--snow) 0%, var(--white) 100%);
}

.ablock__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 16ch;
  margin: 0 0 var(--space-md);
}

.ablock__title--lg {
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.ablock__title--light {
  color: var(--white);
}

.ablock__body {
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--steel-muted);
}

.ablock__body--wide {
  max-width: 44rem;
}

.ablock__body--light {
  color: rgba(255, 255, 255, 0.88);
}

.ablock__body p {
  margin: 0 0 0.85rem;
}

.ablock__body p:last-child {
  margin-bottom: 0;
}

.ablock__cta {
  margin-top: var(--space-md);
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* Split */
.ablock__split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.ablock--split-left .ablock__split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.ablock--split-left .ablock__split-copy {
  order: 2;
}

.ablock--split-left .ablock__split-media {
  order: 1;
}

.ablock__split-media {
  position: relative;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  box-shadow:
    0 1px 0 rgba(11, 31, 58, 0.06),
    0 24px 48px -28px rgba(11, 31, 58, 0.35);
}

.ablock__split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-out);
}

.ablock:hover .ablock__split-media img {
  transform: scale(1.06);
}

.ablock__split-frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

/* Cinema */
.ablock--cinema {
  padding: 0;
  min-height: clamp(22rem, 62vh, 36rem);
  display: grid;
  align-items: end;
}

.ablock__cinema-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ablock__cinema-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.ablock--cinema.reveal.is-visible .ablock__cinema-media img,
.ablock--cinema:hover .ablock__cinema-media img {
  transform: scale(1.1);
}

.ablock__cinema-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.15) 0%, rgba(11, 31, 58, 0.72) 100%),
    linear-gradient(90deg, rgba(11, 31, 58, 0.45) 0%, transparent 55%);
}

.ablock__cinema-copy {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
}

/* Duo */
.ablock--duo {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.ablock__duo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.ablock__duo-fig {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 5 / 4;
  background: var(--mist);
}

.ablock__duo-fig:last-child {
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
  aspect-ratio: 4 / 5;
}

.ablock__duo-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out);
}

.ablock:hover .ablock__duo-fig img {
  transform: scale(1.04);
}

.ablock__duo-copy {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

/* Quote */
.ablock--quote {
  background:
    linear-gradient(135deg, var(--navy) 0%, #123456 55%, var(--ocean) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.ablock__quote-inner {
  max-width: 48rem;
  text-align: center;
}

.ablock--quote .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.ablock__quote-text {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ablock--quote .ablock__body {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.ablock--quote .btn--primary {
  background: var(--white);
  color: var(--navy);
}

.ablock--quote .btn--primary:hover {
  background: var(--snow);
}

/* Text / editorial */
.ablock__text-inner {
  max-width: 46rem;
}

.ablock__editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.ablock__editorial-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: var(--mist);
  box-shadow: 0 28px 50px -32px rgba(11, 31, 58, 0.4);
}

.ablock__editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .ablock__split-grid,
  .ablock--split-left .ablock__split-grid,
  .ablock__editorial-grid,
  .ablock__duo-grid {
    grid-template-columns: 1fr;
  }

  .ablock--split-left .ablock__split-copy,
  .ablock--split-left .ablock__split-media {
    order: initial;
  }

  .ablock__duo-fig:last-child {
    margin-top: 0;
    aspect-ratio: 5 / 4;
  }

  .ablock__title,
  .ablock__title--lg {
    max-width: none;
  }
}

/* --- Service list (services page) ---------------------------------------- */

.service-page {
  background: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background var(--duration-fast);
}

.service-list__item:hover {
  background: var(--navy-soft);
}

.service-list__index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.25rem;
}

.service-list__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-list__title-link,
.service-strip__title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast);
}

.service-list__title-link:hover,
.service-strip__title-link:hover {
  color: var(--accent);
}

.service-list__content .text-link {
  margin-top: 0.75rem;
}

.service-list__content p {
  color: var(--steel-muted);
  max-width: 40rem;
  line-height: 1.65;
}

.service-list__detail {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--steel-light);
  line-height: 1.65;
}

.service-list__detail p {
  margin-bottom: 0.5rem;
}

.service-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--ocean);
  background: var(--white);
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    color var(--duration-fast),
    transform var(--duration-fast) var(--ease-out);
}

.service-list__link:hover {
  border-color: var(--ocean);
  background: var(--ocean-soft);
  color: var(--navy);
  transform: translate(2px, -2px);
}

/* --- Service detail ------------------------------------------------------ */

.service-detail {
  background: var(--white);
  padding-top: 0;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.service-detail__icon {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.service-detail__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--steel-muted);
}

.service-detail__body h2,
.service-detail__body h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
  line-height: 1.2;
}

.service-detail__body p {
  margin: 0 0 1rem;
}

.service-detail__body ul,
.service-detail__body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.service-detail__body li {
  margin-bottom: 0.4rem;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-detail__aside {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.service-detail__card,
.service-detail__related {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #FBFDFF 0%, var(--mist) 100%);
}

.service-detail__card-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.service-detail__card-text {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--steel-muted);
}

.service-detail__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.service-detail__related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--duration-fast);
}

.service-detail__related-list li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-detail__related-list a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-detail__aside {
    position: static;
  }
}

/* --- Gallery grid (gallery page) ----------------------------------------- */

.gallery-page {
  background: var(--snow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.gallery-grid__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gallery-grid__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--line);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.gallery-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}

.gallery-grid__item:hover .gallery-grid__media img {
  transform: scale(1.03);
}

.gallery-grid__caption span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.gallery-grid__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.gallery-grid__caption p {
  font-size: 0.9375rem;
  color: var(--steel-light);
  line-height: 1.6;
}

/* --- Contact page -------------------------------------------------------- */

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  align-items: start;
}

.contact-page__intro {
  padding-top: var(--space-sm);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-info__item dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 0.35rem;
}

.contact-info__item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-info__item a {
  transition: color var(--duration-fast);
}

.contact-info__item a:hover {
  color: var(--accent);
}

.contact-page__form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.04);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition:
    border-color var(--duration-fast),
    box-shadow var(--duration-fast),
    background var(--duration-fast);
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--steel-light);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px var(--ocean-soft);
  background: var(--white);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: rgba(200, 60, 60, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 60, 60, 0.1);
}

/* Flash messages */
.flash {
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.flash--success {
  background: rgba(34, 140, 90, 0.08);
  border-color: rgba(34, 140, 90, 0.3);
  color: #1a6b45;
}

.flash--error {
  background: rgba(200, 60, 60, 0.08);
  border-color: rgba(200, 60, 60, 0.3);
  color: #a83232;
}

.flash--warning {
  background: rgba(180, 130, 40, 0.08);
  border-color: rgba(180, 130, 40, 0.35);
  color: #8a6520;
}

/* Prose (CMS body) */
.prose__content {
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--steel-muted);
}

.prose__content h2,
.prose__content h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: var(--space-lg) 0 var(--space-sm);
}

.prose__content p {
  margin-bottom: var(--space-sm);
}

.prose__content a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.prose__content a:hover {
  color: var(--accent);
}

.prose__content ul,
.prose__content ol {
  margin: var(--space-sm) 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.prose__content li {
  margin-bottom: 0.35rem;
}

/* Empty state */
.empty-state {
  padding: var(--space-xl) 0;
  font-size: 1rem;
  color: var(--steel-light);
  font-style: italic;
}

.section--dark .empty-state {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  background:
    linear-gradient(180deg, #F4F8FB 0%, #EAF1F6 100%);
  color: var(--steel-muted);
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}

.site-footer__cta {
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(14, 107, 138, 0.07), transparent 55%),
    linear-gradient(180deg, #FBFDFF 0%, #F3F7FA 100%);
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
  color: var(--navy);
}

.site-footer__cta-inner {
  width: min(1120px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__cta .eyebrow {
  color: var(--accent);
}

.site-footer__cta-title {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

.site-footer__cta-text {
  margin: 0;
  max-width: 42ch;
  color: var(--steel-muted);
  line-height: 1.6;
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__main {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.site-footer__inner {
  width: min(1120px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--navy);
  text-decoration: none;
}

.site-footer__brand--logo {
  gap: 0;
}

.site-footer__logo {
  display: block;
  height: clamp(2.5rem, 5vw, 3.25rem);
  width: auto;
  max-width: min(14rem, 70vw);
  object-fit: contain;
}

.site-footer__brand .brand__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  background: rgba(14, 107, 138, 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
}

.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.site-footer__brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--steel);
}

.site-footer__note {
  margin: 0 0 1.25rem;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--steel-muted);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ocean);
  background: rgba(255, 255, 255, 0.65);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
  background: var(--white);
  border-color: rgba(14, 107, 138, 0.35);
  color: var(--accent);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.site-footer__links a {
  color: var(--steel-muted);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__contact li {
  display: grid;
  gap: 0.15rem;
}

.site-footer__contact span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.site-footer__bottom {
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  padding: 0.85rem 0 0.55rem;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: var(--steel);
}

/* AltunSoft signature — compact, delicate (light theme) */
.as-signature {
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(11, 31, 58, 0.07);
  padding: 0.95rem var(--gutter) 1.25rem;
  text-align: center;
}

.as-signature__inner {
  width: min(36rem, 100%);
  margin-inline: auto;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}

.as-signature__by {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 22rem);
}

.as-signature__by::before,
.as-signature__by::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  opacity: 0.9;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(11, 31, 58, 0.16) 50%,
    transparent
  );
}

.as-signature__credit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.as-signature__label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.4);
}

.as-signature__brand {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.35s var(--ease-out);
}

.as-signature__brand:hover,
.as-signature__brand:focus-visible {
  color: var(--accent);
}

.as-signature__note {
  margin: 0;
  max-width: 34rem;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(11, 31, 58, 0.42);
}

.as-signature__note a {
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 107, 138, 0.28);
  transition:
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.as-signature__note a:hover,
.as-signature__note a:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(14, 107, 138, 0.7);
}

@media (max-width: 480px) {
  .as-signature {
    padding-block: 0.85rem 1.05rem;
  }

  .as-signature__by {
    width: 100%;
    gap: 0.55rem;
  }

  .as-signature__credit {
    white-space: normal;
    justify-content: center;
  }

  .as-signature__note {
    font-size: 0.64rem;
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__cta-inner {
    align-items: flex-start;
  }
}


/* --- Scroll reveal ------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero never starts blank — content must be readable without waiting for JS */
.hero .eyebrow,
.hero .hero__title,
.hero .hero__lead,
.hero .hero__actions {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }

/* --- Page enter transition ----------------------------------------------- */

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-main {
  /* no fade-in — avoids washed-out first paint */
}

/* --- Homepage header over cinematic hero -------------------------------- */

.page-index:has(.hs) .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .brand__name,
.page-index:has(.hs) .site-header:not(.is-scrolled) .brand__tag,
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav__link,
.page-index:has(.hs) .site-header:not(.is-scrolled) .lang-switch__btn {
  color: rgba(255, 255, 255, 0.94);
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav__link.is-active,
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav__link:hover {
  color: #fff;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .menu-toggle__bar {
  background: #fff;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta {
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  padding: 0.15rem 0;
  gap: 0.2rem;
  align-items: flex-end;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta__label {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.16em;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta__number {
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s ease;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta:hover {
  background: transparent;
  border: 0;
  transform: none;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta:hover .phone-cta__number {
  border-bottom-color: #fff;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .phone-cta__arrow {
  display: none;
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .brand__logo {
  /* Orijinal renkler korunur; koyu logo koyu zeminde okunsun diye hafif ışık halesi */
  filter:
    drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.55))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

/* Scrolled: solid bar + navy text (overrides sticky defaults while fixed) */
.page-index:has(.hs) .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04),
              0 8px 32px rgba(11, 31, 58, 0.06);
}

.page-index:has(.hs) .site-header.is-scrolled .brand__name,
.page-index:has(.hs) .site-header.is-scrolled .brand__tag,
.page-index:has(.hs) .site-header.is-scrolled .site-nav__link,
.page-index:has(.hs) .site-header.is-scrolled .lang-switch__btn {
  color: var(--navy);
}

.page-index:has(.hs) .site-header.is-scrolled .site-nav__link {
  color: var(--steel);
}

.page-index:has(.hs) .site-header.is-scrolled .site-nav__link.is-active,
.page-index:has(.hs) .site-header.is-scrolled .site-nav__link:hover {
  color: var(--navy);
}

.page-index:has(.hs) .site-header.is-scrolled .menu-toggle__bar {
  background: var(--navy);
}

.page-index:has(.hs) .site-header.is-scrolled .brand__logo {
  filter: none;
}

.page-index:has(.hs) .site-header.is-scrolled .phone-cta {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.page-index:has(.hs) .site-header.is-scrolled .phone-cta__label,
.page-index:has(.hs) .site-header.is-scrolled .phone-cta__number,
.page-index:has(.hs) .site-header.is-scrolled .phone-cta__arrow {
  color: inherit;
}

/* Mobile drawer: white panel → navy text even if header is transparent */
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav.is-open .site-nav__link,
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav.is-open .lang-switch__btn,
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta__label,
.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta__number {
  color: var(--navy);
}

.page-index:has(.hs) .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

/* First-paint hero header --------------------------------------------------
   `has-hero-header` is emitted server-side, so these styles are ready before
   the slider DOM finishes parsing. This prevents the white-to-transparent
   header flash that a `:has(.hs)`-only selector can cause. */
.page-index.has-hero-header .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) {
  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 33, 0.8) 0%,
      rgba(4, 18, 33, 0.56) 62%,
      rgba(4, 18, 33, 0) 100%
    );
  border-color: transparent;
  box-shadow: none;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .brand--logo {
  position: relative;
  padding: 0.2rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .brand__logo {
  height: clamp(2.1rem, 3.75vw, 2.4rem);
  max-width: min(12.75rem, 42vw);
  filter:
    brightness(1.6)
    saturate(1.08)
    contrast(1.06)
    drop-shadow(0 2px 5px rgba(0, 0, 0, 0.92));
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .brand__name,
.page-index.has-hero-header .site-header:not(.is-scrolled) .brand__tag,
.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav__link,
.page-index.has-hero-header .site-header:not(.is-scrolled) .lang-switch__btn {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 9px rgba(1, 14, 27, 0.56);
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav__link.is-active,
.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav__link:hover {
  color: #fff;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav__link::after {
  height: 1px;
  background: #a9dfed;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .lang-switch__sep {
  color: rgba(255, 255, 255, 0.42);
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(4, 18, 33, 0.24);
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .menu-toggle__bar {
  background: #fff;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta {
  min-width: 10.25rem;
  padding: 0.12rem 0 0.12rem 0.85rem;
  gap: 0.18rem;
  align-items: flex-end;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta__label {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.14em;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta__number {
  padding-bottom: 0;
  border-bottom: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.15;
  text-shadow: 0 1px 9px rgba(1, 14, 27, 0.56);
  transition: color var(--duration-fast);
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta:hover {
  border: 0;
  border-left: 1px solid rgba(169, 223, 237, 0.9);
  background: transparent;
  transform: none;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta:hover .phone-cta__number {
  color: #a9dfed;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .phone-cta__arrow {
  display: none;
}

.page-index.has-hero-header .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  box-shadow:
    0 1px 0 rgba(11, 31, 58, 0.04),
    0 8px 32px rgba(11, 31, 58, 0.06);
}

.page-index.has-hero-header .site-header.is-scrolled .brand--logo {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-index.has-hero-header .site-header.is-scrolled .brand__logo {
  height: clamp(2.25rem, 4.5vw, 2.75rem);
  max-width: min(12.5rem, 42vw);
  filter: none;
}

.page-index.has-hero-header .site-header.is-scrolled .brand__name,
.page-index.has-hero-header .site-header.is-scrolled .brand__tag,
.page-index.has-hero-header .site-header.is-scrolled .site-nav__link,
.page-index.has-hero-header .site-header.is-scrolled .lang-switch__btn {
  color: var(--navy);
  text-shadow: none;
}

.page-index.has-hero-header .site-header.is-scrolled .site-nav__link {
  color: var(--steel);
}

.page-index.has-hero-header .site-header.is-scrolled .site-nav__link.is-active,
.page-index.has-hero-header .site-header.is-scrolled .site-nav__link:hover {
  color: var(--navy);
}

.page-index.has-hero-header .site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.page-index.has-hero-header .site-header.is-scrolled .menu-toggle__bar {
  background: var(--navy);
}

.page-index.has-hero-header .site-header.is-scrolled .phone-cta {
  min-width: 0;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
}

.page-index.has-hero-header .site-header.is-scrolled .phone-cta__label,
.page-index.has-hero-header .site-header.is-scrolled .phone-cta__number,
.page-index.has-hero-header .site-header.is-scrolled .phone-cta__arrow {
  color: inherit;
  text-shadow: none;
}

.page-index.has-hero-header .site-header.is-scrolled .phone-cta__number {
  font-size: 0.9375rem;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav.is-open .site-nav__link,
.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav.is-open .lang-switch__btn,
.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta__label,
.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta__number {
  color: var(--navy);
  text-shadow: none;
}

.page-index.has-hero-header .site-header:not(.is-scrolled) .site-nav.is-open .phone-cta {
  min-width: 0;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 960px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    grid-column: auto;
    justify-self: auto;
  }

  .site-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity var(--duration-fast) var(--ease-out),
      visibility var(--duration-fast);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__links {
    flex-direction: column;
    gap: var(--space-lg);
    grid-column: auto;
    justify-self: auto;
  }

  .site-nav__link {
    font-size: 1.125rem;
  }

  .site-nav__meta {
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    grid-column: auto;
    justify-self: auto;
  }

  .phone-cta {
    align-items: center;
    padding: var(--space-md) var(--space-lg);
  }

  .split,
  .statement__inner,
  .contact-page,
  .gallery-mosaic,
  .values__grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic__item img {
    min-height: 14rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero__scroll-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .service-strip__item,
  .service-list__item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .service-strip__link,
  .service-list__link {
    justify-self: start;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .statement__action .btn {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .hero__content {
    padding-left: 0;
  }

  .gallery-mosaic__item--featured img {
    min-height: 22rem;
  }
}

/* --- Horizon hero slider ------------------------------------------------- */

.hs {
  --hs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hs-duration: 1100ms;
  position: relative;
  min-height: min(100vh, 920px);
  height: min(100vh, 920px);
  overflow: hidden;
  background: #071525;
  color: #fff;
  isolation: isolate;
}

.hs__stage {
  position: absolute;
  inset: 0;
}

.hs__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--hs-duration) var(--hs-ease),
    visibility var(--hs-duration) var(--hs-ease);
}

.hs__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hs__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7.5s linear;
  filter: saturate(1.05) contrast(1.04);
}

.hs__slide.is-active .hs__img {
  transform: scale(1);
}

.hs__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 21, 37, 0.92) 0%, rgba(7, 21, 37, 0.62) 38%, rgba(7, 21, 37, 0.18) 68%, rgba(7, 21, 37, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 21, 37, 0.72) 0%, transparent 42%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(14, 107, 138, 0.18), transparent 55%);
  pointer-events: none;
}

.hs__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hs__frame-line {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.hs__frame-line--t {
  top: calc(var(--header-h) + 0.75rem);
}

.hs__frame-line--b {
  bottom: 5.75rem;
}

.hs__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: min(44rem, calc(100% - 2 * var(--gutter)));
  margin-left: max(var(--gutter), calc((100% - 90rem) / 2 + var(--gutter)));
  padding: calc(var(--header-h) + 4rem) 0 7.5rem;
}

.hs__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(18px);
}

.hs__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.hs__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fd4e8;
}

.hs__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(2.35rem, 5.6vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(28px);
  max-width: 12ch;
}

.hs__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(22px);
}

.hs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(18px);
}

.hs__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.2rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.35s var(--hs-ease),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.hs__cta--primary {
  background: #fff;
  color: var(--navy);
}

.hs__cta--primary:hover {
  transform: translateY(-2px);
  background: #e8f4fa;
  color: var(--navy);
}

.hs__cta--primary i {
  transition: transform 0.35s var(--hs-ease);
}

.hs__cta--primary:hover i {
  transform: translateX(3px);
}

.hs__cta--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hs__cta--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hs__slide.is-active .hs__meta,
.hs__slide.is-active .hs__title,
.hs__slide.is-active .hs__lead,
.hs__slide.is-active .hs__actions {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s var(--hs-ease),
    transform 0.8s var(--hs-ease);
}

.hs__slide.is-active .hs__meta { transition-delay: 0.18s; }
.hs__slide.is-active .hs__title { transition-delay: 0.28s; }
.hs__slide.is-active .hs__lead { transition-delay: 0.4s; }
.hs__slide.is-active .hs__actions { transition-delay: 0.52s; }

.hs__rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 0 max(var(--gutter), calc((100% - 90rem) / 2 + var(--gutter)));
  background: linear-gradient(0deg, rgba(7, 21, 37, 0.75), transparent);
}

.hs__progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hs__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7ec8e3, #fff);
  transform-origin: left center;
}

.hs.is-playing .hs__progress-bar {
  animation: hs-progress linear forwards;
  animation-duration: var(--hs-autoplay, 7000ms);
}

@keyframes hs-progress {
  from { width: 0%; }
  to { width: 100%; }
}

.hs__rail-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.hs__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.25s ease;
}

.hs__nav:hover,
.hs__nav:focus-visible {
  color: #fff;
  outline: none;
}

.hs__nav em {
  font-style: normal;
}

.hs__pager {
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.hs__pager-sep {
  margin: 0 0.35rem;
  opacity: 0.4;
}

.hs__ticks {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}

.hs__tick {
  width: 2rem;
  height: 2px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.35s var(--hs-ease);
}

.hs__tick.is-active {
  width: 2.75rem;
  background: #fff;
}

.hs__tick:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .hs {
    min-height: 86vh;
    height: auto;
    min-height: 86vh;
  }

  .hs__copy {
    width: calc(100% - 2 * var(--gutter));
    margin-left: var(--gutter);
    padding-bottom: 6.5rem;
  }

  .hs__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hs__frame-line--b {
    bottom: 5rem;
  }

  .hs__rail-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
  }

  .hs__nav em {
    display: none;
  }

  .hs__ticks {
    display: none;
  }

  .hs__pager {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs__img,
  .hs__slide,
  .hs__meta,
  .hs__title,
  .hs__lead,
  .hs__actions,
  .hs__progress-bar {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .hs__slide:not(.is-active) {
    opacity: 0 !important;
  }
}

/* ——— WhatsApp contact dock ———
   A quiet, premium contact control: WhatsApp stays recognisable without
   competing with the page's primary CTAs. */
.wa-float {
  --wa: #22C56E;
  --wa-deep: #087A4A;
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 3.4rem;
  padding: 0.38rem 0.48rem 0.38rem 0.42rem;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 30px -18px rgba(11, 31, 58, 0.35),
    0 3px 8px rgba(11, 31, 58, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  isolation: isolate;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.wa-float::after {
  content: "↗";
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.48rem;
  color: var(--steel);
  background: var(--snow);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-float:hover,
.wa-float:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 22px 40px -22px rgba(11, 31, 58, 0.58);
}

.wa-float:hover::after,
.wa-float:focus-visible::after {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translate(1px, -1px);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(14, 107, 138, 0.28);
  outline-offset: 3px;
}

.wa-float__glow {
  position: absolute;
  z-index: -1;
  right: 0.75rem;
  bottom: -0.45rem;
  width: 55%;
  height: 45%;
  border-radius: 50%;
  background: rgba(34, 197, 110, 0.23);
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.wa-float:hover .wa-float__glow,
.wa-float:focus-visible .wa-float__glow {
  opacity: 0;
}

.wa-float__pulse {
  position: absolute;
  z-index: 0;
  left: 1.78rem;
  top: 0.67rem;
  width: 0.42rem;
  height: 0.42rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 2px rgba(34, 197, 110, 0.15);
  pointer-events: none;
}

.wa-float__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.68rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--wa) 0%, var(--wa-deep) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 8px 14px -8px rgba(8, 122, 74, 0.78);
  flex-shrink: 0;
  transition:
    border-radius 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-float:hover .wa-float__icon,
.wa-float:focus-visible .wa-float__icon {
  border-radius: 50%;
  transform: rotate(-6deg) scale(1.04);
}

.wa-float__icon svg {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.16));
}

.wa-float__text {
  position: relative;
  z-index: 1;
  padding-left: 0.06rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.35s ease;
}

@media (max-width: 560px) {
  .wa-float {
    width: 3.42rem;
    min-width: 3.42rem;
    min-height: 3.42rem;
    padding: 0.42rem;
    border-radius: 0.95rem;
    justify-content: center;
  }

  .wa-float::after,
  .wa-float__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .wa-float__pulse {
    left: 2.16rem;
    top: 0.54rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-float::after,
  .wa-float__glow,
  .wa-float__icon,
  .wa-float__text {
    transition: none;
  }
}

/* Admin Site Metinleri iframe preview — only activated by a same-origin
   postMessage from the management panel, never during normal browsing. */
[data-text-preview].is-text-studio-preview-focus {
  outline: 3px solid #f2be4a !important;
  outline-offset: -3px;
  animation: text-studio-preview-pulse 1.25s ease-in-out 3;
}

.text-studio-public-badge {
  position: fixed;
  z-index: 2147483647;
  display: grid;
  width: min(280px, calc(100vw - 24px));
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 30, 25, 0.94);
  box-shadow: 0 10px 28px rgba(5, 20, 17, 0.32);
  font-family: var(--font-body);
  pointer-events: none;
}

.text-studio-public-badge strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.25;
}

.text-studio-public-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.35;
}

.text-studio-public-badge--technical {
  border-color: rgba(242, 190, 74, 0.65);
  background: rgba(71, 49, 10, 0.95);
}

@keyframes text-studio-preview-pulse {
  0%,
  100% {
    outline-color: #f2be4a;
  }
  50% {
    outline-color: rgba(242, 190, 74, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-text-preview].is-text-studio-preview-focus {
    animation: none;
  }
}
