/* SOMARA SERVICES LTD — Event catering & facilities support */
:root {
  --ink: #0c1220;
  --ink-soft: #1a2438;
  --slate: #3d4a5c;
  --steel: #6b7a8c;
  --mist: #e8edf3;
  --panel: #f4f6f9;
  --line: #c8d0db;
  --signal: #ff5c35;
  --signal-deep: #e04520;
  --signal-soft: #ff8a6b;
  --teal: #1a7a78;
  --teal-soft: #2a9a97;
  --white: #ffffff;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 4.5rem;
  --max: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--panel);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Atmosphere: cool grid wash ——— */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(26, 122, 120, 0.05) 0%, transparent 42%),
    linear-gradient(320deg, rgba(255, 92, 53, 0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(12, 18, 32, 0.015) 48px,
      rgba(12, 18, 32, 0.015) 49px
    ),
    var(--panel);
  pointer-events: none;
}

/* ——— Nav ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(244, 246, 249, 0.98);
  box-shadow: 0 1px 0 rgba(12, 18, 32, 0.08);
}

.site-header.is-scrolled .logo,
.site-header.solid .logo,
.site-header.is-scrolled .nav-links a,
.site-header.solid .nav-links a,
.site-header.is-scrolled .nav-toggle,
.site-header.solid .nav-toggle {
  color: var(--ink);
}

.nav-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s, transform 0.35s var(--ease);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo span {
  color: var(--signal);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--signal-soft);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.solid .nav-links a:hover,
.site-header.is-scrolled .nav-links a[aria-current="page"],
.site-header.solid .nav-links a[aria-current="page"] {
  color: var(--signal-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, box-shadow 0.35s;
}

.btn-primary {
  background: var(--signal);
  color: var(--white);
  box-shadow: 8px 8px 0 rgba(12, 18, 32, 0.15);
}

.btn-primary:hover {
  background: var(--signal-deep);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(12, 18, 32, 0.18);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--signal-soft);
  color: var(--signal-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroDrift 20s var(--ease) forwards;
}

@keyframes heroDrift {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 18, 32, 0.88) 0%, rgba(12, 18, 32, 0.45) 48%, rgba(12, 18, 32, 0.25) 70%),
    linear-gradient(180deg, rgba(12, 18, 32, 0.35) 0%, transparent 35%, rgba(12, 18, 32, 0.9) 100%);
}

.hero-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--signal), var(--teal));
  z-index: 2;
  transform: scaleY(0);
  transform-origin: top;
  animation: railGrow 1.1s var(--ease) 0.2s forwards;
}

@keyframes railGrow {
  to {
    transform: scaleY(1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 10vh, 6rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal-soft);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: slideUp 0.9s var(--ease) 0.1s forwards;
}

.hero-eyebrow::before {
  content: "";
  width: 2rem;
  height: 3px;
  background: var(--signal);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: slideUp 1s var(--ease) 0.2s forwards;
}

.hero-brand em {
  font-style: normal;
  color: var(--signal);
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin-top: 0.55rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  max-width: 22ch;
  line-height: 1.25;
  margin: 1.35rem 0 0.9rem;
  opacity: 0;
  animation: slideUp 0.95s var(--ease) 0.38s forwards;
}

.hero-lede {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.95s var(--ease) 0.5s forwards;
}

.hero-content .btn-group {
  opacity: 0;
  animation: slideUp 0.95s var(--ease) 0.65s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: slideUp 0.9s var(--ease) 1s forwards;
}

.hero-scroll-bar {
  width: 3rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero-scroll-bar i {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--signal);
  animation: scrollSlide 1.8s ease-in-out infinite;
}

@keyframes scrollSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(280%);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero .hero-media img {
  animation: heroDrift 14s var(--ease) forwards;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) 3.25rem;
}

.page-hero .hero-eyebrow {
  opacity: 1;
  animation: none;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.page-hero p {
  margin-top: 0.85rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.25rem, 10vw, 7rem) var(--gutter);
  position: relative;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-deep);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.section-label::before {
  content: "";
  width: 1.25rem;
  height: 3px;
  background: var(--signal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 40rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section--ink {
  background:
    linear-gradient(145deg, var(--ink-soft) 0%, var(--ink) 100%);
  color: var(--white);
}

.section--ink .section-label {
  color: var(--signal-soft);
}

.section--ink .section-label::before {
  background: var(--signal);
}

.section--ink .section-title {
  color: var(--white);
}

.section--ink .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.section--mist {
  background: var(--mist);
}

.section--split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 860px) {
  .section--split {
    grid-template-columns: 1fr 1fr;
  }

  .section--split.reverse > :first-child {
    order: 2;
  }
}

.split-visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.split-visual:hover img {
  transform: scale(1.04);
}

.split-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--signal);
  z-index: 1;
}

/* ——— Dual service band ——— */
.dual-band {
  display: grid;
  gap: 0;
  margin-top: -1px;
}

@media (min-width: 800px) {
  .dual-band {
    grid-template-columns: 1fr 1fr;
  }
}

.dual-panel {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.dual-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.dual-panel:hover img {
  transform: scale(1.06);
}

.dual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.2) 10%, rgba(12, 18, 32, 0.92) 100%);
  z-index: 1;
}

.dual-panel--teal::after {
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.15) 10%, rgba(12, 40, 42, 0.94) 100%);
}

.dual-copy {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem 2.25rem;
  width: 100%;
}

.dual-copy .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-soft);
  margin-bottom: 0.55rem;
}

.dual-panel--teal .dual-copy .tag {
  color: #7ed4d1;
}

.dual-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.dual-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  max-width: 34ch;
  margin-bottom: 1.25rem;
}

.dual-copy .link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 0.2rem;
  transition: color 0.25s, border-color 0.25s;
}

.dual-copy .link:hover {
  color: var(--signal-soft);
}

/* ——— Offer / service list ——— */
.offer-list {
  display: grid;
  gap: 0;
}

.offer-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.85rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.35s var(--ease), background 0.35s;
}

.offer-item:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-item:hover {
  padding-left: 0.65rem;
}

@media (min-width: 700px) {
  .offer-item {
    grid-template-columns: 3.5rem 14rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.offer-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.offer-item p {
  color: var(--slate);
  max-width: 38rem;
}

/* ——— Service blocks (services page) ——— */
.service-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 800px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-block {
  background: var(--white);
  padding: 1.85rem 1.65rem 2rem;
  border-left: 4px solid var(--signal);
  box-shadow: 0 1px 0 rgba(12, 18, 32, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 18, 32, 0.08);
}

.service-block--teal {
  border-left-color: var(--teal);
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.service-block .note {
  font-size: 0.92rem;
  color: var(--steel);
  margin-bottom: 1.15rem;
}

.service-block ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(200, 208, 219, 0.7);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.service-block ul li .tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  align-self: center;
}

.service-block--teal ul li .tag {
  color: var(--teal);
}

.service-intro {
  margin-bottom: 3rem;
}

/* ——— Statement ——— */
.statement {
  text-align: left;
  padding: clamp(4rem, 10vw, 6.5rem) var(--gutter);
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--signal), var(--teal));
}

.statement-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .statement-inner {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: end;
  }
}

.statement .mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--signal);
  letter-spacing: -0.04em;
}

.statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 22ch;
  margin-bottom: 1rem;
}

.statement cite {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ——— About details ——— */
.detail-row {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .detail-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.detail-row > div {
  position: relative;
  padding-top: 1.15rem;
  border-top: 3px solid var(--signal);
}

.detail-row > div:nth-child(2) {
  border-top-color: var(--teal);
}

.detail-row > div:nth-child(3) {
  border-top-color: var(--ink);
}

.detail-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.detail-row p {
  color: var(--slate);
  font-size: 0.98rem;
}

.company-line {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--slate);
}

.company-line strong {
  color: var(--ink);
  font-weight: 700;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.contact-list {
  margin-top: 2rem;
}

.contact-list li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}

.contact-list li:hover {
  padding-left: 0.35rem;
}

.contact-list .label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.35rem;
}

.contact-list a,
.contact-list span.value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s;
}

.contact-list a:hover {
  color: var(--signal-deep);
}

.contact-aside {
  background:
    linear-gradient(155deg, var(--ink-soft), var(--ink));
  color: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.contact-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--signal), var(--teal));
}

.contact-aside::after {
  content: "S";
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.contact-aside > * {
  position: relative;
  z-index: 1;
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* ——— CTA ——— */
.cta-band {
  padding: clamp(3.75rem, 8vw, 5.25rem) var(--gutter);
  background: var(--signal);
  color: var(--white);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -5%;
  top: -40%;
  width: 40%;
  height: 180%;
  background: var(--signal-deep);
  transform: skewX(-12deg);
  opacity: 0.35;
  pointer-events: none;
}

.cta-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
}

.cta-band .btn-primary {
  background: var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.cta-band .btn-primary:hover {
  background: var(--ink-soft);
  color: var(--white);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.25rem var(--gutter) 1.75rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.75rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.footer-brand span {
  color: var(--signal);
}

.footer-inner h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-soft);
  margin-bottom: 1rem;
}

.footer-inner a {
  display: block;
  padding: 0.28rem 0;
  transition: color 0.25s, transform 0.25s;
}

.footer-inner a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 2.5rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ——— Tablet ——— */
@media (max-width: 900px) {
  .section {
    padding: clamp(3.25rem, 8vw, 5rem) var(--gutter);
  }

  .section-title {
    max-width: 22ch;
  }

  .dual-panel {
    min-height: 22rem;
  }

  .split-visual,
  .split-visual img {
    min-height: 18rem;
  }

  .cta-band::after {
    width: 55%;
    opacity: 0.25;
  }
}

/* ——— Mobile ——— */
@media (max-width: 760px) {
  :root {
    --nav-h: 4rem;
    --gutter: 1.15rem;
  }

  .site-header {
    overflow: visible;
  }

  .nav-inner {
    position: relative;
    z-index: 1002;
    width: 100%;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.14em;
    position: relative;
    z-index: 1002;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    z-index: 1000;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    padding: calc(var(--nav-h) + 1rem) var(--gutter) 2rem;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.25rem;
    letter-spacing: 0.16em;
    color: var(--white) !important;
    padding: 0.55rem 0;
    background: none !important;
    box-shadow: none !important;
    clip-path: none !important;
    width: auto;
    max-width: none;
  }

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

  .site-header.is-scrolled .nav-toggle,
  .site-header.solid .nav-toggle {
    color: var(--ink);
  }

  .site-header:has(.nav-links.is-open) {
    z-index: 1001;
    background: transparent;
    box-shadow: none;
  }

  .site-header:has(.nav-links.is-open) .nav-toggle,
  .site-header:has(.nav-links.is-open) .logo {
    color: var(--white);
  }

  .site-header:has(.nav-links.is-open) .logo span {
    color: var(--signal);
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  body.menu-open main,
  body.menu-open .site-footer {
    visibility: hidden;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
  }

  .hero-rail {
    width: 4px;
  }

  .hero-content {
    padding: 0 var(--gutter) clamp(2.75rem, 8vh, 4rem);
    padding-top: calc(var(--nav-h) + 1rem);
  }

  .hero-brand {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    word-break: break-word;
  }

  .hero-brand em {
    font-size: 0.38em;
    letter-spacing: 0.18em;
    margin-top: 0.4rem;
  }

  .hero-headline {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    max-width: none;
    margin: 1.1rem 0 0.75rem;
  }

  .hero-lede {
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .btn {
    padding: 0.9rem 1.35rem;
    font-size: 0.68rem;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
  }

  .btn-primary {
    box-shadow: 5px 5px 0 rgba(12, 18, 32, 0.15);
  }

  .page-hero {
    min-height: 42vh;
    min-height: 42dvh;
  }

  .page-hero-content {
    padding: 0 var(--gutter) 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .page-hero p {
    font-size: 0.98rem;
    max-width: none;
  }

  .section {
    padding: 3.25rem var(--gutter);
  }

  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    max-width: none;
  }

  .section-text {
    font-size: 0.98rem;
    max-width: none;
  }

  .section--split {
    gap: 1.75rem;
  }

  .split-visual,
  .split-visual img {
    min-height: 14rem;
  }

  .dual-panel {
    min-height: 20rem;
  }

  .dual-copy {
    padding: 1.5rem 1.25rem 1.85rem;
  }

  .dual-copy h3 {
    font-size: 1.45rem;
  }

  .dual-copy p {
    max-width: none;
    font-size: 0.95rem;
  }

  .offer-item {
    padding: 1.5rem 0;
    gap: 0.45rem;
  }

  .offer-item:hover {
    padding-left: 0;
  }

  .offer-item h3 {
    font-size: 1.15rem;
  }

  .service-block {
    padding: 1.5rem 1.2rem 1.65rem;
  }

  .service-block h2 {
    font-size: 1.3rem;
  }

  .service-block ul li {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .service-intro {
    margin-bottom: 2rem;
  }

  .statement {
    padding: 3.25rem var(--gutter);
  }

  .statement .mark {
    font-size: clamp(3.25rem, 18vw, 4.5rem);
  }

  .statement blockquote {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    max-width: none;
  }

  .detail-row {
    gap: 1.65rem;
    margin-top: 2.25rem;
  }

  .company-line {
    margin-top: 2.25rem;
  }

  .contact-layout {
    gap: 2rem;
  }

  .contact-list a,
  .contact-list span.value {
    font-size: 1.05rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-aside {
    clip-path: none;
    padding: 1.75rem 1.35rem;
  }

  .contact-aside::after {
    font-size: 8rem;
  }

  .contact-aside .btn {
    width: 100%;
  }

  .cta-band {
    padding: 3rem var(--gutter);
  }

  .cta-band::after {
    display: none;
  }

  .cta-inner {
    gap: 1.35rem;
  }

  .cta-band h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .cta-band p {
    max-width: none;
    font-size: 0.95rem;
  }

  .cta-band .btn-primary {
    width: 100%;
  }

  .site-footer {
    padding: 2.75rem var(--gutter) 1.5rem;
  }

  .footer-brand {
    font-size: 1.15rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
  }
}

/* ——— Small phones ——— */
@media (max-width: 400px) {
  .hero-brand {
    font-size: 2.15rem;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .btn {
    letter-spacing: 0.1em;
    padding: 0.85rem 1.1rem;
  }

  .dual-panel {
    min-height: 18.5rem;
  }

  .page-hero {
    min-height: 38vh;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
