/* ==========================================================================
   Unique Holidays — design system
   Palette sampled directly from the brand logo:
   navy #002352 · blue #0080D8 · sky #29CFFD · orange #FE9D38
   ========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
/* Copperplate script, self-hosted. Used only as the accent word inside a
   headline — the way the reference sites set one word of a serif statement in
   calligraphy. A fallback serif italic would read as emphasis, not lettering. */
@font-face {
  font-family: "Pinyon Script";
  src: url("../fonts/pinyon-script-latin.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2039-203A;
}

:root {
  --navy:        #002352;
  --navy-800:    #04264F;
  --navy-600:    #0B4B8F;
  --blue:        #0080D8;
  --blue-400:    #29A9F0;
  --sky:         #29CFFD;
  --sky-100:     #E4F6FE;
  --orange:      #FE9D38;
  --orange-600:  #F2733C;
  --sand:        #FFE3B0;

  --ink:         #0E1B2C;
  --body:        #46586E;
  --muted:       #6B7C92;
  --line:        #E3EAF2;
  --line-soft:   #EEF3F8;
  --surface:     #FFFFFF;
  --surface-2:   #F4F8FC;

  --grad-brand:  linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  --grad-warm:   linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
  /* The deep ground for flat dark sections. Sampled from the reference
     recording: #330A24. Navy stays the ink colour for type and buttons. */
  --deep:        #330A24;
  --deep-600:    #4A122F;
  --deep-400:    #5E1A3D;
  --grad-deep:   linear-gradient(150deg, var(--deep) 0%, var(--deep-600) 58%, var(--deep-400) 100%);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(0, 35, 82, .05), 0 3px 10px rgba(0, 35, 82, .045);
  --sh-md: 0 2px 6px rgba(0, 35, 82, .05), 0 12px 34px rgba(0, 35, 82, .085);
  --sh-lg: 0 6px 18px rgba(0, 35, 82, .07), 0 30px 70px rgba(0, 35, 82, .13);
  --sh-cta: 0 12px 28px rgba(242, 115, 60, .32);

  --container: 1180px;
  --gutter: 22px;

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, .8, .26, 1);
  --ease-soft: cubic-bezier(.33, .72, .24, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 800; letter-spacing: -.028em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -.026em; }
h3 { font-size: clamp(1.16rem, 1.8vw, 1.42rem); letter-spacing: -.014em; }
p  { margin: 0 0 1rem; }
a  { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange-600); }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip-link {
  position: fixed; left: 50%; top: 10px; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 11px 22px;
  border-radius: var(--r-pill); z-index: 200;
  clip-path: inset(50%); pointer-events: none;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  box-shadow: var(--sh-md);
}
.skip-link:focus { clip-path: none; pointer-events: auto; color: #fff; }

/* ------------------------------------------------------------- structure -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 9.5vw, 132px); position: relative; }
.section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 44% at 88% 4%, rgba(41, 207, 253, .055), transparent 62%),
    radial-gradient(44% 40% at 6% 96%, rgba(254, 157, 56, .045), transparent 64%);
}
.section > .container { position: relative; z-index: 1; }
.section--soft { background: var(--surface-2); position: relative; }
.section--soft::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 52% at 12% 0%, rgba(41, 207, 253, .10), transparent 62%),
    radial-gradient(48% 48% at 92% 100%, rgba(254, 157, 56, .075), transparent 64%);
}
.section--soft > .container { position: relative; z-index: 1; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--grad-warm);
}
.section-head--center .eyebrow::before { display: none; }
.section-head p { font-size: 1.07rem; color: var(--muted); margin-bottom: 0; line-height: 1.8; }

.lede { font-size: 1.12rem; color: var(--body); }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--sh-cta); }
.btn-primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(242, 115, 60, .42); }

.btn-brand { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px rgba(11, 132, 222, .3); }
.btn-brand:hover { color: #fff; }

.btn-outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-light:hover { background: #fff; color: var(--navy); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-sm); border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand img { width: 46px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.28rem;
  letter-spacing: -.02em; color: var(--navy);
}
.brand-name span { color: var(--blue); }
.brand-tag {
  font-size: .61rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-weight: 500;
}

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  display: block; padding: 10px 15px; border-radius: var(--r-pill); white-space: nowrap;
  font-family: var(--font-head); font-weight: 500; font-size: .94rem; color: var(--ink);
}
.nav-list a:hover { background: var(--sky-100); color: var(--blue); }
.nav-list a[aria-current="page"] { color: var(--blue); background: var(--sky-100); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--navy);
}
.header-phone svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%;
  background: var(--sky-100); color: var(--blue); flex: none; }
.header-phone:hover { color: var(--blue); }

.nav-cta-mobile { display: none; }
.nav-cta-mobile .btn { width: 100%; margin-top: 14px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 13px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex: none;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative; transition: background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-deep);
  color: #fff; padding-block: clamp(52px, 7vw, 88px) clamp(76px, 9vw, 116px);
}
.hero::before {
  content: ""; position: absolute; inset: auto -10% -55% -10%; height: 70%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(41, 207, 253, .28), transparent 70%);
  pointer-events: none;
}
.hero-swoosh {
  position: absolute; right: -8%; top: -14%; width: 66%; min-width: 560px;
  opacity: .14; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 66px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--orange) 10%, var(--sand) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; max-width: 52ch; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 16px 7px 8px; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 500; color: #fff; margin-bottom: 22px;
}
.hero-pill b {
  background: var(--grad-warm); color: #fff; font-weight: 700;
  padding: 3px 12px; border-radius: var(--r-pill); font-size: .76rem;
  font-family: var(--font-head); letter-spacing: .04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero-stats div strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.75rem; color: #fff; line-height: 1.1;
}
.hero-stats div span { font-size: .84rem; color: rgba(255, 255, 255, .7); }

/* hero collage */
.hero-art { position: relative; }
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); border: 3px solid rgba(255, 255, 255, .18);
}
.collage figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); }
.collage figcaption {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(4, 38, 79, .74); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  padding: 5px 13px; border-radius: var(--r-pill);
}
.collage .tall { grid-row: span 2; }
.collage .tall img { min-height: 320px; object-position: 50% 76%; }
.collage .short img { height: 152px; }

.hero-badge {
  margin-top: 16px; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--r-md);
  padding: 14px 18px; backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 13px;
}
.hero-badge .icon {
  width: 40px; height: 40px; border-radius: 12px; flex: none; color: #fff;
  background: var(--grad-brand); display: grid; place-items: center;
}
.hero-badge .icon svg { width: 20px; height: 20px; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: .95rem; color: #fff; }
.hero-badge > span:last-child > span { font-size: .78rem; color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------- search widget -- */
.search-wrap { margin-top: -58px; position: relative; z-index: 20; }
.search-card {
  background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: 22px; display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr) auto; align-items: end;
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field > label {
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
}
.field select, .field input, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; background: var(--surface); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C92' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px; cursor: pointer;
}
.field :is(select, input, textarea):focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 132, 222, .13);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ----------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* destination tile */
.dest-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  min-height: 322px; color: #fff; isolation: isolate;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 64%; z-index: -2; transition: transform .6s var(--ease);
}
.dest-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0, 35, 82, 0) 0%,
              rgba(0, 35, 82, .28) 34%, rgba(0, 35, 82, .74) 64%,
              rgba(0, 35, 82, .95) 100%);
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card:hover { color: #fff; }
.dest-body {
  position: absolute; inset: auto 0 0 0; padding: 20px;
  text-shadow: 0 1px 3px rgba(0, 18, 40, .55);
}
.dest-body h3 { color: #fff; margin: 0 0 5px; font-size: 1.2rem; }
.dest-body p {
  margin: 0; font-size: .84rem; line-height: 1.55; color: rgba(255, 255, 255, .88);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  line-clamp: 2; overflow: hidden;
}
.dest-price {
  display: flex; align-items: baseline; gap: 6px; margin-top: 12px;
  font-family: var(--font-head); font-size: .8rem; color: rgba(255, 255, 255, .86);
}
.dest-price b { font-size: 1.08rem; color: var(--orange); }
.dest-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255, 255, 255, .92); color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: .73rem;
  padding: 5px 13px; border-radius: var(--r-pill);
}
.dest-card--tall { min-height: 420px; }

/* package card */
.pkg-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .45s var(--ease-soft);
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.pkg-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-warm); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  padding: 5px 13px; border-radius: var(--r-pill); letter-spacing: .03em;
}
.pkg-rating {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255, 255, 255, .94); color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  padding: 5px 11px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
}
.pkg-rating svg { width: 13px; height: 13px; color: var(--orange); }
.pkg-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-where {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted); margin-bottom: 8px;
}
.pkg-where svg { width: 14px; height: 14px; color: var(--blue); }
.pkg-body h3 { font-size: 1.16rem; margin-bottom: 10px; }
.pkg-body > p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.pkg-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.pkg-meta li {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-2); color: var(--body);
  font-size: .78rem; padding: 5px 11px; border-radius: var(--r-pill);
}
.pkg-meta svg { width: 13px; height: 13px; color: var(--blue); }
.pkg-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price small { display: block; font-size: .72rem; color: var(--muted); line-height: 1.4; }
.price strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy);
}
.price s { font-size: .8rem; color: var(--muted); margin-left: 6px; font-weight: 400; }

/* feature / value cards */
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; height: 100%;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .45s var(--ease-soft);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.feature .icon {
  width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center;
  background: var(--sky-100); color: var(--blue); margin-bottom: 20px;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature:nth-child(2n) .icon { background: #FFF1E1; color: var(--orange-600); }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: .93rem; color: var(--muted); margin: 0; }

/* numbered steps */
.step { position: relative; padding-left: 74px; }
.step .num {
  position: absolute; left: 0; top: 0;
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(11, 132, 222, .28);
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------ stats band -- */
.stats-band {
  background: var(--grad-deep); color: #fff; border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 46px); position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; right: -60px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(41, 207, 253, .3), transparent 68%);
}
.stats-grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stats-grid div + div { border-left: 1px solid rgba(255, 255, 255, .16); }
.stats-grid strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1;
}
.stats-grid span { font-size: .87rem; color: rgba(255, 255, 255, .74); }

/* ---------------------------------------------------------- testimonials -- */
.slider { position: relative; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex; transition: transform .5s var(--ease);
}
.slide { flex: 0 0 100%; padding: 4px; }
.quote {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(30px, 4.4vw, 52px); text-align: center; box-shadow: var(--sh-md);
}
.quote::before {
  content: "\201C"; position: absolute; left: 50%; top: -6px; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 800; font-size: 8rem; line-height: 1;
  color: var(--sky-100); pointer-events: none; user-select: none;
}
.quote > * { position: relative; }
.quote .stars { display: inline-flex; gap: 3px; color: var(--orange); margin-bottom: 18px; }
.quote .stars svg { width: 19px; height: 19px; }
.quote blockquote {
  margin: 0 0 24px; font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.75; color: var(--ink); font-weight: 400;
}
.quote-person { display: inline-flex; align-items: center; gap: 13px; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.quote-person strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .97rem; }
.quote-person > span:not(.avatar) span { font-size: .82rem; color: var(--muted); }
.quote-person .avatar { color: #fff; }

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--surface); color: var(--navy); cursor: pointer; display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.slider-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line); cursor: pointer; transition: all .25s var(--ease);
}
.slider-dots button[aria-selected="true"] { background: var(--orange); width: 26px; border-radius: 5px; }

/* --------------------------------------------------------------- filters -- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 34px;
}
.chip {
  font-family: var(--font-head); font-weight: 500; font-size: .88rem;
  padding: 9px 19px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--body);
  cursor: pointer; transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip[aria-pressed="true"] {
  background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600;
}
.filter-count { margin-left: auto; font-size: .88rem; color: var(--muted); }

/* Services we offer, listed as plain pills (not buttons — nothing to press). */
.svc-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.svc-list li {
  font-family: var(--font-head); font-weight: 500; font-size: .88rem;
  padding: 9px 19px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--body);
}
.svc-note {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 30px 0 0; font-family: var(--font-head); font-weight: 500;
  font-size: .9rem; color: var(--muted); text-align: center;
}
.svc-note svg { width: 18px; height: 18px; color: #8b5cf6; flex: none; }

.is-hidden { display: none !important; }

.empty-state {
  text-align: center; padding: 60px 20px; color: var(--muted);
  border: 1.5px dashed var(--line); border-radius: var(--r-lg);
}

/* ------------------------------------------------------------- page hero -- */
.page-hero {
  background: var(--grad-deep); color: #fff; position: relative; overflow: hidden;
  padding-block: clamp(44px, 6vw, 74px);
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; bottom: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 207, 253, .26), transparent 68%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, .82); max-width: 62ch; margin: 0; font-size: 1.05rem; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .85rem; color: rgba(255, 255, 255, .68); margin-bottom: 16px;
}
.crumbs a { color: rgba(255, 255, 255, .9); }
.crumbs a:hover { color: var(--orange); }
.crumbs span[aria-hidden] { opacity: .5; }

/* ------------------------------------------------------------------- faq -- */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: 19px 56px 19px 22px; position: relative; line-height: 1.5;
}
.faq-q::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-a { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: .95rem; }

/* -------------------------------------------------------------- cta band -- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--grad-deep); color: #fff;
  padding: clamp(36px, 6vw, 66px); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 50% 120%, rgba(41, 207, 253, .3), transparent 66%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 56ch; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----------------------------------------------------------------- forms -- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field .error {
  font-size: .8rem; color: #D8452F; min-height: 1.1em; display: none;
}
.field.is-invalid .error { display: block; }
.field.is-invalid :is(input, select, textarea) { border-color: #E9836F; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .87rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--blue); }

.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; text-align: center; }

.form-success {
  display: none; background: #ECFAF1; border: 1.5px solid #B7E7C9;
  color: #16663C; border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 22px;
  font-size: .95rem;
}
.form-success.is-visible { display: block; }

/* -------------------------------------------------------------- contact --- */
.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; height: 100%;
}
.info-card .icon {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: var(--sky-100); color: var(--blue); margin-bottom: 16px;
}
.info-card .icon svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 1.03rem; margin-bottom: 6px; }
.info-card p, .info-card a { font-size: .93rem; color: var(--muted); margin: 0; }
.info-card a:hover { color: var(--blue); }

.map-embed {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface-2); min-height: 320px;
  display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-embed svg { width: 46px; height: 46px; margin-inline: auto; color: var(--blue); }
.map-embed h3 { margin-bottom: 4px; }

/* ----------------------------------------------------------------- about -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split img { border-radius: var(--r-xl); box-shadow: var(--sh-md); width: 100%; }

.tick-list li {
  position: relative; padding-left: 34px; margin-bottom: 13px; font-size: .96rem;
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 21px; height: 21px; border-radius: 50%; background: var(--sky-100);
}
.tick-list li::after {
  content: ""; position: absolute; left: 7px; top: 10px;
  width: 7px; height: 4px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.team-card { text-align: center; }
.team-card .avatar { width: 92px; height: 92px; font-size: 1.7rem; margin: 0 auto 16px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card p { font-size: .86rem; color: var(--muted); margin: 0; }

.logo-showcase {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line);
}
.logo-showcase img { width: auto; max-width: 280px; height: auto; border-radius: 0; box-shadow: none; }


/* ---------------------------------------------------------------- footer -- */
.site-footer { background: var(--deep); color: rgba(255, 255, 255, .74); margin-top: 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px;
  padding-block: clamp(46px, 6vw, 72px) 44px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: var(--sky); }
.site-footer .brand-tag { color: rgba(255, 255, 255, .55); }
.footer-about p { font-size: .93rem; margin: 20px 0 22px; max-width: 40ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .09); color: #fff;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.socials a:hover { background: var(--grad-warm); transform: translateY(-3px); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-head); color: #fff; font-size: 1rem; font-weight: 600;
  margin: 0 0 20px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255, 255, 255, .74); font-size: .93rem; }
.footer-col a:hover { color: var(--orange); }

.footer-contact li {
  display: flex; gap: 12px; margin-bottom: 15px; font-size: .93rem; line-height: 1.55;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; margin-top: 3px; }
.footer-contact a { color: rgba(255, 255, 255, .74); }
.footer-contact a:hover { color: var(--orange); }

.newsletter { display: flex; gap: 8px; margin-top: 18px; }
.newsletter input {
  flex: 1; min-width: 0; border-radius: var(--r-pill); border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08); color: #fff; padding: 12px 18px; font-size: .9rem;
  font-family: var(--font-body);
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter input:focus { outline: none; border-color: var(--sky); background: rgba(255, 255, 255, .13); }
.newsletter .btn { padding: 12px 22px; }
.newsletter-msg { font-size: .82rem; color: var(--sky); margin: 10px 0 0; min-height: 1.2em; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a { color: rgba(255, 255, 255, .74); }
.footer-bottom a:hover { color: var(--orange); }

/* floating WhatsApp / call action */
.float-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.float-actions a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--sh-md); transition: transform .22s var(--ease);
}
.float-actions a:hover { transform: scale(1.08); color: #fff; }
.float-wa { background: #25D366; }
.float-call { background: var(--grad-brand); }
.float-actions svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------- scroll reveal -- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------- breakpoints -- */
@media (max-width: 1080px) {
  .search-card { grid-template-columns: repeat(2, 1fr); }
  .search-card .field-submit { grid-column: 1 / -1; }
  .header-phone span { display: none; }
  .nav-list a { padding: 10px 11px; font-size: .9rem; }
}

@media (max-width: 940px) {
  .header-phone span { display: none; }
  .nav-cta-mobile { display: block; }
  .nav-list li.nav-cta-mobile + li,
  .nav-list li.nav-cta-mobile { border-top: 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 560px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .split { grid-template-columns: 1fr; }
  .split .split-media { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }
  .stats-grid div:nth-child(odd) { border-left: 0; }
  .stats-grid div:nth-child(3) { border-left: 0; }

  .nav {
    position: fixed; inset: 76px 0 auto; margin: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav.is-open { max-height: 70vh; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 20px; }
  .nav-list a { padding: 14px 12px; border-radius: var(--r-sm); font-size: 1rem; }
  .nav-list li + li { border-top: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; order: 3; }
  .header-inner { justify-content: space-between; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-actions > .btn-primary { display: none; }
  .header-phone { display: none; }
  .header-actions { gap: 8px; }
  .brand img { width: 40px; }
  .brand-name { font-size: 1.12rem; }
  .header-inner { min-height: 68px; gap: 10px; }
  .nav { top: 68px; }
  .grid-4, .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .search-card { grid-template-columns: 1fr; margin-top: 0; padding: 18px; }
  .search-wrap { margin-top: -34px; }
  .collage .short img { height: 118px; }
  .collage .tall img { min-height: 250px; }
  .hero-stats { gap: 22px; }
  .hero-stats div strong { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom ul { justify-content: center; gap: 16px; }
  .step { padding-left: 0; padding-top: 66px; }
  .step .num { width: 48px; height: 48px; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { width: 100%; }
  .float-actions { right: 12px; bottom: 12px; }
  .float-actions a { width: 46px; height: 46px; }
}

/* ------------------------------------------------------------------ print -- */
@media print {
  .site-header, .site-footer, .float-actions, .hero-art, .btn { display: none !important; }
  body { color: #000; }
}
