/* Alpha Publishing Studio — Global Styles */

:root {
  --ink: #10233a;
  --ink-soft: #31475f;
  --ink-muted: #5b6f84;
  --paper: #f3f6f8;
  --paper-deep: #e7eef2;
  --surface: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b5a54;
  --accent-soft: #d9f1ee;
  --gold: #b08d4f;
  --border: rgba(16, 35, 58, 0.12);
  --shadow: 0 18px 50px rgba(16, 35, 58, 0.08);
  --shadow-soft: 0 10px 30px rgba(16, 35, 58, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-offset: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fafb 0%, var(--paper) 40%, #eef3f6 100%);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
}

.btn-secondary:hover {
  background: #18314d;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: var(--accent-soft);
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.75rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d9f1ee;
}

.text-center {
  text-align: center;
}

.section-followup {
  margin-top: 2rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.section-head p {
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 251, 0.9);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.header-top {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0;
}

.header-top-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.header-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-contact:hover {
  color: #fff;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-contact i {
  font-size: 0.78rem;
  opacity: 0.9;
}

.header-social a,
.footer-social a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-social a:hover,
.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.header-social a i,
.footer-social a i,
.header-social a .fa-brands,
.footer-social a .fa-brands {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  font-size: 15px !important;
  display: block !important;
  text-align: center !important;
}

.footer-social {
  margin-top: 1rem;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  /* height: 48px;*/
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.brand-logo-light {
  /* height: 52px; */
  /* max-width: 240px; */
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #155e75);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list > li > a {
  display: inline-block;
  padding: 0.65rem 0.8rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.is-active {
  color: var(--ink);
  background: rgba(15, 118, 110, 0.08);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 230px;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.dropdown a:hover {
  background: var(--paper);
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(11, 26, 43, 0.82) 0%, rgba(18, 48, 71, 0.72) 48%, rgba(15, 95, 90, 0.68) 100%),
    url("../images/hero/hero-bg.jpg") center center / cover no-repeat;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: center;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(176, 141, 79, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(11, 26, 43, 0.18), rgba(11, 26, 43, 0.45));
  pointer-events: none;
  animation: atmosphereDrift 18s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 3.25rem;
}

.hero-brand {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}

.hero-copy h1 {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2.35rem, 4.6vw, 3.85rem);
  max-width: 14ch;
  margin-bottom: 1.2rem;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(176, 141, 79, 0.22), transparent 40%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 8% 18%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(2deg);
  animation: framePulse 8s ease-in-out infinite;
}

.hero-manuscript {
  position: relative;
  width: min(100%, 380px);
  padding: 2.4rem 2rem 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(4px);
  animation: manuscriptRise 9s ease-in-out infinite;
}

.hero-manuscript-label {
  display: block;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-manuscript-title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.hero-manuscript-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  max-width: 28ch;
}

@keyframes atmosphereDrift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes framePulse {
  0%, 100% { opacity: 0.45; transform: rotate(2deg) scale(1); }
  50% { opacity: 0.8; transform: rotate(1.4deg) scale(1.01); }
}

@keyframes manuscriptRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Trust metrics — editorial band, not cards */
.trust-band {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-metrics li {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-metrics li:last-child {
  border-right: 0;
}

.trust-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.trust-metrics span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* Homepage editorial layouts */
.home-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.home-split-compact {
  align-items: center;
}

.home-split-intro h2 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  max-width: 14ch;
}

.home-split-intro p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.service-index {
  border-top: 1px solid var(--border);
}

.service-index-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1.4fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0.25rem;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s var(--ease), background 0.25s var(--ease);
}

.service-index-item:hover {
  padding-left: 0.65rem;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.05), transparent 55%);
}

.service-index-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.service-index-copy {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-index-action {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.25s var(--ease);
}

.service-index-item:hover .service-index-action {
  transform: translateX(5px);
}

.home-why {
  background:
    linear-gradient(145deg, #0d1c2e 0%, #123047 48%, #0f4f4c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.home-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(176, 141, 79, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.home-why .container {
  position: relative;
  z-index: 1;
}

.why-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-top .eyebrow {
  color: #9fd8d2;
}

.why-top h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  max-width: 14ch;
  margin-bottom: 0;
}

.why-top-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  max-width: 34rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-item {
  padding: 1.6rem 1.75rem 1.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.why-item:nth-child(3n) {
  border-right: 0;
}

.why-item:nth-child(n+4) {
  border-bottom: 0;
  padding-top: 1.9rem;
}

.why-item:nth-child(3n+1) {
  padding-left: 0;
}

.why-item:nth-child(3n) {
  padding-right: 0;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.why-item-number {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.why-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  max-width: 28ch;
}

.why-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reason-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.reason-list li:first-child {
  border-top: 1px solid var(--border);
}

.reason-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
}

.reason-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.reason-list p {
  margin: 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 0.7rem;
  right: 0.7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
}

.process-timeline li {
  position: relative;
  padding-top: 0.25rem;
  list-style: none;
}

.process-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-timeline h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.process-timeline p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.home-genres {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 118, 110, 0.07), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(176, 141, 79, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(243, 246, 248, 0.2));
}

.genres-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.25rem;
}

.genres-intro h2 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  max-width: 14ch;
}

.genres-intro p {
  max-width: 34rem;
}

.genres-hint {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.genre-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem 1.5rem;
  align-content: flex-start;
  padding-top: 0.35rem;
}

.genre-chip {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.15rem 1.35rem 0.15rem 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.25;
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.genre-chip em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.genre-chip::after {
  content: "·";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-52%);
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
}

.genre-chip:last-child::after {
  content: none;
}

.genre-chip:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.genre-chip.is-active {
  color: var(--ink);
}

.genre-chip.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 1.35rem;
  bottom: -0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.genres-showcase {
  margin-bottom: 0.75rem;
}

.genres-active-label {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.genres-active-label strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.portfolio-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.portfolio-tab:hover {
  color: var(--ink);
  border-color: rgba(15, 118, 110, 0.35);
}

.portfolio-tab.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.portfolio-panels {
  margin-top: 0.5rem;
}

.portfolio-panel[hidden] {
  display: none;
}

.book-carousel {
  position: relative;
  padding: 0.5rem 0 1rem;
  user-select: none;
  touch-action: pan-y;
}

.book-carousel-viewport {
  overflow: hidden;
  cursor: grab;
}

.book-carousel.is-dragging .book-carousel-viewport {
  cursor: grabbing;
}

.book-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.book-slide {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(150px, 16vw, 210px);
}

.book-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 36px rgba(16, 35, 58, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  pointer-events: none;
}

.book-carousel:not(.is-dragging) .book-slide:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 44px rgba(16, 35, 58, 0.24);
}

.book-carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 9vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.book-carousel-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(243, 246, 248, 0) 100%);
}

.book-carousel-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(243, 246, 248, 0) 100%);
}

.home-portfolio {
  overflow: hidden;
}

.portfolio-strip {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.portfolio-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.portfolio-row.reverse .portfolio-visual {
  order: 2;
}

.portfolio-row .portfolio-visual {
  height: 280px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.portfolio-copy h3 {
  font-size: 1.75rem;
}

.portfolio-copy p {
  margin: 0;
  max-width: 34rem;
  font-size: 1.05rem;
}

.home-testimonials {
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 211, 102, 0.08), transparent 28%),
    linear-gradient(180deg, transparent, rgba(15, 118, 110, 0.04));
  overflow: hidden;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 320px);
  gap: 2.5rem 3rem;
  align-items: center;
}

.testimonials-copy {
  max-width: 560px;
}

.testimonials-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  max-width: 14ch;
}

.testimonials-lead {
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.testimonial-carousel {
  margin-bottom: 1.35rem;
}

.testimonial-carousel-track {
  position: relative;
  min-height: 168px;
}

.testimonial-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1rem;
}

.testimonial-slide footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-slide strong {
  color: var(--ink);
}

.testimonial-slide span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.testimonial-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonial-nav:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(16, 35, 58, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--accent);
}

.testimonials-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shell {
  width: min(100%, 290px);
  aspect-ratio: 9 / 18.2;
  max-height: 560px;
  border-radius: 34px;
  padding: 11px;
  background: linear-gradient(160deg, #22272b, #0f1215 55%, #1a1f24);
  box-shadow:
    0 24px 48px rgba(16, 35, 58, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #0b141a;
  flex: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wa-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.85rem 0.2rem;
  background: #008069;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  flex-shrink: 0;
}

.wa-status-icons {
  display: inline-flex;
  gap: 0.35rem;
  font-size: 0.62rem;
}

.wa-thread {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  opacity: 0;
}

.wa-thread.is-active {
  display: flex;
  opacity: 1;
  animation: waThreadIn 0.45s ease;
}

@keyframes waThreadIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem 0.65rem;
  background: #008069;
  color: #fff;
  flex-shrink: 0;
}

.wa-back {
  font-size: 0.85rem;
  opacity: 0.95;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #054d3b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.wa-header-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}

.wa-header-copy strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-header-copy span {
  font-size: 0.68rem;
  opacity: 0.88;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  opacity: 0.95;
}

.wa-chat {
  flex: 1;
  padding: 0.7rem 0.55rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 0;
  overflow: hidden;
  background-color: #e5ddd5;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(229, 221, 213, 0.95), rgba(229, 221, 213, 0.95));
  background-size: 18px 18px, auto;
}

.wa-day {
  align-self: center;
  background: #ffffffd9;
  color: #54656f;
  font-size: 0.66rem;
  padding: 0.22rem 0.55rem;
  border-radius: 7px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.2rem;
}

.wa-row {
  display: flex;
  width: 100%;
}

.wa-row.is-in {
  justify-content: flex-start;
}

.wa-row.is-out {
  justify-content: flex-end;
}

.wa-bubble {
  position: relative;
  max-width: 86%;
  padding: 0.42rem 0.55rem 0.28rem;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.wa-row.is-in .wa-bubble {
  background: #fff;
  border-radius: 0 8px 8px 8px;
}

.wa-row.is-out .wa-bubble {
  background: #d9fdd3;
  border-radius: 8px 0 8px 8px;
}

.wa-row.is-in .wa-bubble::before,
.wa-row.is-out .wa-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.wa-row.is-in .wa-bubble::before {
  left: -6px;
  border-width: 0 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.wa-row.is-out .wa-bubble::before {
  right: -6px;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent transparent #d9fdd3;
}

.wa-bubble p {
  margin: 0 0 0.2rem;
  color: #111b21;
  font-size: 0.76rem;
  line-height: 1.4;
}

.wa-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  width: 100%;
  color: #667781;
  font-size: 0.58rem;
}

.wa-row.is-out .wa-meta i {
  color: #53bdeb;
  font-size: 0.62rem;
}

.wa-composer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.45rem 0.5rem;
  background: #f0f2f5;
  color: #54656f;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.wa-input {
  flex: 1;
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: #667781;
  font-size: 0.74rem;
}

.wa-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #008069;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-feature {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.testimonial-feature blockquote {
  margin: 0;
}

.testimonial-feature p {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.testimonial-feature footer,
.testimonial-quotes footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-feature strong,
.testimonial-quotes strong {
  color: var(--ink);
}

.testimonial-feature span,
.testimonial-quotes span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.testimonial-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.testimonial-quotes blockquote {
  margin: 0;
}

.testimonial-quotes p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.faq-stack {
  border-top: 1px solid var(--border);
}

.faq-stack .faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.faq-stack .faq-question {
  padding-left: 0;
  padding-right: 0;
}

.faq-stack .faq-answer {
  padding-left: 0;
  padding-right: 0;
}

/* Service cards */
.services-grid,
.features-grid,
.process-grid,
.genres-grid,
.portfolio-grid,
.blog-grid,
.faq-grid,
.contact-layout,
.page-grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.feature-card,
.genre-card,
.portfolio-card,
.blog-card,
.testimonial-card,
.faq-item,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.25rem;
}

.service-card p {
  min-height: 4.8em;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Why choose us */
.why-section {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.04), transparent 30%),
    linear-gradient(90deg, rgba(16, 35, 58, 0.02), transparent);
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 1.8rem;
}

.feature-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Process */
.process-section {
  background: var(--ink);
  color: #fff;
}

.process-section .section-head h2,
.process-section .section-head .eyebrow {
  color: #fff;
}

.process-section .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  padding: 1.7rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(15, 118, 110, 0.9);
  font-weight: 700;
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

/* Genres */
.genres-grid {
  grid-template-columns: repeat(4, 1fr);
}

.genre-card {
  padding: 1.4rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.95)),
    linear-gradient(135deg, var(--paper-deep), #fff);
}

.genre-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.genre-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* Portfolio */
.portfolio-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-visual {
  height: 210px;
  background:
    linear-gradient(145deg, rgba(16, 35, 58, 0.85), rgba(15, 118, 110, 0.75)),
    radial-gradient(circle at 30% 20%, rgba(176, 141, 79, 0.45), transparent 45%);
  position: relative;
}

.portfolio-visual.tone-2 {
  background:
    linear-gradient(145deg, rgba(21, 94, 117, 0.9), rgba(16, 35, 58, 0.8)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), transparent 40%);
}

.portfolio-visual.tone-3 {
  background:
    linear-gradient(145deg, rgba(11, 90, 84, 0.92), rgba(16, 35, 58, 0.78)),
    radial-gradient(circle at 40% 70%, rgba(176, 141, 79, 0.35), transparent 45%);
}

.portfolio-visual.tone-4 {
  background:
    linear-gradient(145deg, rgba(49, 71, 95, 0.95), rgba(15, 118, 110, 0.65)),
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.16), transparent 40%);
}

.portfolio-spine {
  position: absolute;
  left: 18%;
  top: 18%;
  bottom: 18%;
  width: 42%;
  border-radius: 4px 10px 10px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.portfolio-body h3 {
  font-size: 1.15rem;
}

.portfolio-body p {
  margin: 0;
  font-size: 0.92rem;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(15, 118, 110, 0.05));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.8rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.author-meta strong {
  display: block;
  color: var(--ink);
}

.author-meta span {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  padding: 4.5rem 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 35, 58, 0.96), rgba(15, 118, 110, 0.88)),
    radial-gradient(circle at right top, rgba(176, 141, 79, 0.28), transparent 35%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 16ch;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cta-actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

/* FAQ */
.faq-grid {
  grid-template-columns: 1fr 1fr;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-answer {
  display: block;
  animation: fadeUp 0.35s ease;
}

/* Page hero */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(16, 35, 58, 0.94), rgba(15, 118, 110, 0.78)),
    radial-gradient(circle at 85% 15%, rgba(176, 141, 79, 0.28), transparent 30%);
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  max-width: 14ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: #fff;
}

/* Content layouts */
.content-block {
  max-width: 760px;
}

.content-block h2 {
  margin-top: 2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.panel-soft {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-thumb {
  height: 180px;
  background:
    linear-gradient(145deg, rgba(16, 35, 58, 0.88), rgba(15, 118, 110, 0.7));
}

.blog-thumb.tone-a {
  background: linear-gradient(145deg, #155e75, #10233a);
}

.blog-thumb.tone-b {
  background: linear-gradient(145deg, #0f766e, #31475f);
}

.blog-thumb.tone-c {
  background: linear-gradient(145deg, #10233a, #b08d4f);
}

.blog-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.blog-meta {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.info-card {
  padding: 1.6rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.15rem;
}

.contact-form,
.quote-form {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta-band {
  background:
    linear-gradient(135deg, #0d1c2e, #124a52 60%, #0f766e);
  padding: 3.5rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.footer-cta-copy p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin-bottom: 0;
}

.footer-cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.footer-cta-actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

.footer-main {
  background: #0b1726;
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.brand-footer .brand-name {
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 28rem;
}

.footer-domain {
  color: var(--gold) !important;
  font-weight: 600;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: inline-block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-list li {
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  background: #08121d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* Promo marquee */
.promo-marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.promo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.promo-marquee:hover .promo-marquee-track {
  animation-play-state: paused;
}

.promo-marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 0;
  white-space: nowrap;
}

.promo-marquee-group span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.02em;
  padding: 0 0.35rem;
  color: rgba(255, 255, 255, 0.88);
}

.promo-marquee-group span[aria-hidden="true"],
.promo-marquee-group span:nth-child(even) {
  color: var(--gold);
  font-size: 0.85rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sticky side CTAs */
.side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

.side-cta-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 1.15rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: filter 0.2s ease, padding 0.2s ease;
}

.side-cta-btn i {
  font-size: 0.9rem;
}

.side-cta-quote {
  background: var(--accent);
}

.side-cta-call {
  background: var(--ink);
}

.side-cta-btn:hover {
  filter: brightness(1.08);
  padding-block: 1.3rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 1.7rem;
  line-height: 1;
}

/* Service detail extras */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.highlight-box {
  padding: 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-inner,
  .home-split,
  .genres-layout,
  .split-layout,
  .contact-layout,
  .footer-grid,
  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
    gap: 2rem;
  }

  .why-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
  }

  .why-item {
    padding: 1.5rem 1.35rem;
  }

  .why-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.35rem;
  }

  .why-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .why-item:nth-child(2n+1) {
    padding-left: 0;
  }

  .why-item:nth-child(n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-item:nth-child(n+5) {
    border-bottom: 0;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
  }

  .process-timeline::before {
    display: none;
  }

  .services-grid,
  .genres-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

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

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .nav-cta {
    display: inline-flex;
    width: 100%;
  }

  .hero-inner,
  .home-split,
  .genres-layout,
  .testimonials-layout,
  .trust-metrics,
  .features-grid,
  .process-grid,
  .process-timeline,
  .testimonials-grid,
  .testimonial-quotes,
  .faq-grid,
  .blog-grid,
  .service-highlights,
  .portfolio-row,
  .portfolio-row.reverse,
  .split-layout,
  .contact-layout,
  .footer-grid,
  .form-grid,
  .two-col-list {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cta-panel h2,
  .footer-cta-copy h2 {
    max-width: none;
  }

  .cta-actions,
  .footer-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .trust-metrics li {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-metrics li:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .service-index-item {
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
  }

  .service-index-copy {
    grid-column: 1 / -1;
  }

  .portfolio-row.reverse .portfolio-visual {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .testimonials-phone {
    order: 2;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonials-copy {
    max-width: none;
    width: 100%;
  }

  .phone-shell {
    width: min(100%, 260px);
    max-height: 500px;
  }

  .header-top {
    display: block;
  }

  .header-top-inner {
    justify-content: space-between;
  }

  .header-top-contacts .header-contact:last-child {
    display: none;
  }

  .side-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding: 3.75rem 0;
  }

  .services-grid,
  .genres-grid,
  .portfolio-grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .trust-metrics li:nth-child(odd) {
    border-right: 0;
  }

  .brand-logo {
    height: 42px;
  }

  .cta-panel,
  .footer-cta-inner,
  .contact-form,
  .quote-form,
  .panel-soft {
    padding: 1.35rem;
  }

  .footer-cta-band {
    padding: 2.5rem 0;
  }

  .cta-band {
    padding: 3rem 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions,
  .footer-cta-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .cta-actions .btn,
  .footer-cta-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float i {
    font-size: 1.45rem;
  }

  .header-top-contacts {
    gap: 0.75rem;
  }

  .genre-flow li {
    font-size: 1.25rem;
  }

  .genre-chip {
    font-size: 1.3rem;
  }

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

  .why-item,
  .why-item:nth-child(3n),
  .why-item:nth-child(2n),
  .why-item:nth-child(n+4),
  .why-item:nth-child(n+5) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 0;
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .why-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
