:root {
  --navy-1: #03101e;
  --navy-2: #061a30;
  --navy-3: #0a2542;
  --navy-4: #122f50;
  --gold-1: #f1d894;
  --gold-2: #d8b56a;
  --gold-3: #a37e34;
  --paper: #f5efe2;
  --paper-2: #ece2cd;
  --ink: #0a1628;
  --ink-2: #2a3a52;
  --muted: #6b7488;
  --line: rgba(10, 22, 40, 0.12);
  --line-light: rgba(241, 216, 148, 0.22);
  --line-strong: rgba(241, 216, 148, 0.4);
  --shadow-soft: 0 24px 70px rgba(10, 22, 40, 0.12);
  --shadow-deep: 0 50px 140px rgba(3, 16, 30, 0.5);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --container-w: min(1640px, calc(100% - 48px));
  --pad-x: max(28px, calc((100vw - 1640px) / 2));
  --section-y: clamp(96px, 9vw, 160px);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 8% -10%, rgba(216, 181, 106, 0.18), transparent 60%),
    radial-gradient(1100px 700px at 100% 0%, rgba(10, 37, 66, 0.12), transparent 60%),
    linear-gradient(180deg, #f8f2e6 0%, #efe6d2 100%);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--gold-1);
  color: var(--navy-1);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container-w);
  padding: 10px 14px 10px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(3, 16, 30, 0.78);
  box-shadow: 0 28px 80px rgba(3, 16, 30, 0.32);
  color: var(--paper);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: padding 0.25s ease, background 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(3, 16, 30, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 148, 0.4);
  border-radius: 14px;
  background: var(--navy-1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.brand-mark img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-text strong {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.brand-text small {
  color: rgba(245, 239, 226, 0.62);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  color: rgba(245, 239, 226, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold-1);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-1);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(241, 216, 148, 0.22);
  border-radius: 999px;
  background: rgba(241, 216, 148, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(245, 239, 226, 0.7);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang a:hover {
  color: var(--gold-1);
}

.lang a.is-active {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--navy-1);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn.big {
  height: 64px;
  padding: 0 30px;
  font-size: 1.04rem;
}

.btn-primary {
  background:
    linear-gradient(135deg, #fff5cf 0%, var(--gold-1) 38%, var(--gold-2) 70%, var(--gold-3) 100%);
  box-shadow:
    0 18px 50px rgba(216, 181, 106, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #170f02;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 64px rgba(216, 181, 106, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-primary i,
.card-link i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
  color: var(--gold-1);
}

.btn-primary i::after,
.card-link i::after {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.btn-primary:hover i::after,
.card-link:hover i::after {
  transform: translateX(2px);
}

.btn-ghost {
  border: 1px solid rgba(241, 216, 148, 0.32);
  background: rgba(245, 239, 226, 0.06);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--gold-1);
  background: rgba(241, 216, 148, 0.12);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 140px var(--pad-x) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 181, 106, 0.22), transparent 30rem),
    radial-gradient(circle at 80% 4%, rgba(18, 47, 80, 0.6), transparent 36rem),
    radial-gradient(circle at 96% 78%, rgba(241, 216, 148, 0.16), transparent 32rem),
    linear-gradient(155deg, var(--navy-1) 0%, var(--navy-2) 42%, var(--navy-3) 100%);
  color: var(--paper);
  isolation: isolate;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 216, 148, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 216, 148, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.65;
  animation: float 14s ease-in-out infinite;
}

.hero-glow-1 {
  top: -10%;
  right: -8%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(241, 216, 148, 0.55), transparent 65%);
}

.hero-glow-2 {
  bottom: -25%;
  left: -10%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(18, 47, 80, 0.85), transparent 65%);
  animation-delay: -6s;
}

.hero-rings {
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(241, 216, 148, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(241, 216, 148, 0.1) 0 1px, transparent 1px 60px);
  opacity: 0.55;
  animation: spin 80s linear infinite;
}

.hero-watermark {
  position: absolute;
  right: -4%;
  top: 6%;
  width: 54vw;
  max-width: 980px;
  opacity: 0.05;
  filter: brightness(1.6) saturate(1.4);
  pointer-events: none;
  user-select: none;
  animation: float 18s ease-in-out infinite;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 90px);
  color: rgba(245, 239, 226, 0.74);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 216, 148, 0.32);
  border-radius: 999px;
  background: rgba(241, 216, 148, 0.08);
  color: var(--gold-1);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.badge i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-1);
  box-shadow: 0 0 16px var(--gold-1);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: rgba(245, 239, 226, 0.62);
}

.hero-title {
  margin: 0 0 clamp(40px, 6vw, 80px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(60px, 10vw, 178px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero-title .line {
  display: block;
}

.hero-title em {
  position: relative;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-1);
}

.hero-title em::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 6%;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(241, 216, 148, 0.6), transparent);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: rgba(245, 239, 226, 0.78);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: clamp(56px, 6vw, 90px) 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(241, 216, 148, 0.18);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-stats b {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 76px);
  font-weight: 600;
  line-height: 0.9;
  color: var(--gold-1);
  letter-spacing: -0.04em;
}

.hero-stats small {
  color: rgba(245, 239, 226, 0.6);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

/* ---------- Marquee ---------- */
.marquee {
  width: 100%;
  margin: clamp(56px, 7vw, 110px) 0 0;
  padding: 26px 0;
  overflow: hidden;
  border-block: 1px solid var(--line-light);
  background: linear-gradient(90deg, var(--navy-1), var(--navy-3), var(--navy-1));
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
  color: rgba(245, 239, 226, 0.78);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.marquee-track i {
  color: var(--gold-1);
  font-style: normal;
}

/* ---------- Sections ---------- */
.section {
  width: var(--container-w);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 980px;
  margin-bottom: clamp(48px, 5vw, 80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3));
}

h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.section-head p {
  max-width: 720px;
  color: var(--ink-2);
  font-size: 1.18rem;
}

/* ---------- Bento services ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 2.4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  grid-column: span 2;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(10, 22, 40, 0.18);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-3);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-meta span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(241, 216, 148, 0.16);
  color: var(--gold-3);
  font-size: 0.7rem;
}

.card p {
  max-width: 520px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: inherit;
  font-weight: 700;
}

.card-link i {
  display: grid;
  place-items: center;
  color: var(--gold-1);
}

.card-hero {
  grid-column: span 4;
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 0%, rgba(241, 216, 148, 0.25), transparent 22rem),
    linear-gradient(150deg, var(--navy-1), var(--navy-3) 70%, var(--navy-4));
  color: var(--paper);
  border-color: rgba(241, 216, 148, 0.18);
}

.card-hero h3,
.card-dark h3,
.card-hero .card-link {
  color: var(--paper);
}

.card-hero p,
.card-dark p {
  color: rgba(245, 239, 226, 0.74);
}

.card-hero h3 {
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.95;
  margin-top: clamp(80px, 12vw, 200px);
}

.card-hero::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -22%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(241, 216, 148, 0.16) 0 1px, transparent 1px 38px);
  opacity: 0.6;
  animation: spin 100s linear infinite;
}

.card-light {
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 216, 148, 0.18), transparent 14rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(245, 239, 226, 0.75));
}

.card-gold {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.32), transparent 12rem),
    linear-gradient(135deg, var(--gold-1), var(--gold-2) 60%, var(--gold-3));
  border-color: rgba(255, 255, 255, 0.4);
  color: #1a1206;
}

.card-gold .card-meta,
.card-gold h3,
.card-gold p {
  color: #1a1206;
}

.card-gold .card-meta span {
  background: rgba(0, 0, 0, 0.16);
  color: #1a1206;
  border-color: rgba(0, 0, 0, 0.25);
}

.card-dark {
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 216, 148, 0.18), transparent 14rem),
    linear-gradient(160deg, var(--navy-2), var(--navy-3));
  color: var(--paper);
  border-color: rgba(241, 216, 148, 0.18);
}

.card-dark .card-meta {
  color: var(--gold-1);
}

.card-dark h3 {
  color: var(--paper);
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-grid article {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.why-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(10, 22, 40, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.why-num {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-3);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.why-grid h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.why-grid p {
  margin: 0;
  color: var(--ink-2);
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  position: relative;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}

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

.steps li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(216, 181, 106, 0.6);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-3);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

/* ---------- Cases ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(10, 22, 40, 0.16);
}

.case-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--gold-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-card header small {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: none;
  font-size: 0.82rem;
}

.case-card h3 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.02em;
}

.case-card p {
  margin: 0;
  color: var(--ink-2);
}

.case-card ul {
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.case-card ul li::before {
  content: "·";
  color: var(--gold-3);
  display: inline-block;
  width: 14px;
  font-weight: 800;
}

/* ---------- Quote ---------- */
.quote {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  width: 100%;
  margin: 0 auto;
  padding: clamp(80px, 7vw, 130px) var(--pad-x);
  background:
    radial-gradient(circle at 80% 0%, rgba(241, 216, 148, 0.2), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(18, 47, 80, 0.4), transparent 22rem),
    linear-gradient(135deg, var(--navy-1), var(--navy-2) 55%, var(--navy-3));
  color: var(--paper);
}

.quote figure {
  margin: 0;
}

.quote blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.quote blockquote::before {
  content: "“";
  display: block;
  font-size: 1.4em;
  line-height: 0.6;
  color: var(--gold-1);
}

.quote figcaption strong {
  color: var(--gold-1);
  font-weight: 700;
}

.quote figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(245, 239, 226, 0.7);
  font-size: 0.92rem;
}

.quote-side {
  display: grid;
  gap: 18px;
}

.quote-side a {
  display: block;
  padding: 24px;
  border: 1px solid rgba(241, 216, 148, 0.22);
  border-radius: var(--radius-md);
  background: rgba(241, 216, 148, 0.07);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.quote-side a:hover {
  border-color: var(--gold-1);
  background: rgba(241, 216, 148, 0.14);
  transform: translateY(-2px);
}

.quote-side b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  color: var(--gold-1);
  letter-spacing: -0.02em;
}

.quote-side small {
  color: rgba(245, 239, 226, 0.62);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.team-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(241, 216, 148, 0.28), transparent 16rem),
    radial-gradient(circle at 80% 80%, rgba(18, 47, 80, 0.36), transparent 18rem),
    linear-gradient(135deg, var(--navy-1), var(--navy-3));
  box-shadow: var(--shadow-deep);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(241, 216, 148, 0.18);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.team-card img {
  width: min(85%, 340px);
  filter: drop-shadow(0 24px 60px rgba(241, 216, 148, 0.3));
}

.team-text .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.team-text .chips li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(241, 216, 148, 0.1);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-list details[open] {
  border-color: var(--gold-2);
  background: rgba(255, 255, 255, 0.92);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
}

.faq-list summary i::before {
  width: 12px;
  height: 1.5px;
}

.faq-list summary i::after {
  width: 1.5px;
  height: 12px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-list details[open] summary i {
  border-color: var(--gold-2);
  background: var(--gold-1);
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  opacity: 0;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---------- Booking ---------- */
.booking {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.booking-text p {
  max-width: 460px;
  margin-bottom: 24px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 2.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(241, 216, 148, 0.16), transparent 18rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 226, 0.82));
  box-shadow: var(--shadow-soft);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label.full,
.booking-form button.full,
.booking-form .form-message {
  grid-column: 1 / -1;
}

.booking-form span {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-form input,
.booking-form select {
  height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(216, 181, 106, 0.18);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--gold-3);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  width: var(--container-w);
  margin: 40px auto 0;
  padding: 60px 0 50px;
  border-top: 1px solid var(--line);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.04rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.site-footer a {
  display: block;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--ink);
}

.footer-brand .brand-text strong {
  color: var(--ink);
}

.footer-brand .brand-text small {
  color: var(--muted);
}

.footer-brand .brand-mark {
  background: var(--navy-1);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

/* ---------- Animations ---------- */
@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -28px, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .why-grid,
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card,
  .card-hero {
    grid-column: auto;
    grid-row: auto;
  }

  .card-hero h3 {
    margin-top: 80px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote,
  .team,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --container-w: min(100% - 24px, 1640px);
    --pad-x: 16px;
    --section-y: clamp(72px, 14vw, 110px);
  }

  .site-header {
    top: 10px;
    border-radius: 22px;
    padding: 12px;
  }

  .lang {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: clamp(48px, 13vw, 84px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marquee {
    margin-top: clamp(40px, 10vw, 64px);
    padding: 16px 0;
  }

  .booking-form,
  .booking-form button.full {
    grid-template-columns: 1fr;
  }

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

  .case-card {
    padding: 28px 24px;
  }

  .faq-list summary {
    padding: 20px 22px;
    font-size: 18px;
  }

  .faq-list p {
    padding: 0 22px 22px;
  }
}
