/* ===== VARIABLES ===== */
:root {
  --teal-deep:   #135054;
  --teal-bright: #369E98;
  --teal-muted:  #698F8D;
  --cream:       #EEECE0;
  --white:       #FFFFFF;
  --dark:        #0d1f21;
  --font-head:   'Anton', sans-serif;
  --font-body:   'Montserrat', sans-serif;
  --font-brush:  'Permanent Marker', cursive;
  --radius:      8px;
  --transition:  0.35s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 8px;
}
.label--light { color: var(--teal-bright); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 0.98rem;
  font-weight: 500;
  color: #4a5568;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.accent-brush {
  font-family: var(--font-brush);
  color: var(--teal-bright);
  font-size: 0.85em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--teal {
  background: var(--teal-bright);
  color: var(--white);
  border-color: var(--teal-bright);
}
.btn--teal:hover { background: #2c8079; border-color: #2c8079; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-teal {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn--outline-teal:hover { background: var(--teal-deep); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(238,236,224,0.5);
}
.btn--outline-light:hover { background: rgba(238,236,224,0.1); border-color: var(--cream); }

.btn--cream {
  background: var(--cream);
  color: var(--teal-deep);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--white); border-color: var(--white); }

.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 32px;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: padding var(--transition);
}
.nav.scrolled { padding: 4px 32px; }

/* AAS logo (top-left) */
.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;          /* logo left, push menu to the right */
  transition: transform var(--transition);
}
.nav__logo:hover { transform: scale(1.03); }
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav.scrolled .nav__logo-img { height: 44px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: clamp(8px, 7vw, 120px);  /* shift menu toward center-right */
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav__link:hover { opacity: 1; color: var(--teal-bright); }

.nav__cta {
  background: var(--teal-bright);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--white); color: var(--teal-deep); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 100px 24px 60px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 57%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 31, 33, 0.92) 0%,
    rgba(13, 31, 33, 0.6) 45%,
    rgba(13, 31, 33, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__eyebrow {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--teal-bright);
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero__title .accent-brush {
  display: block;
  font-size: 0.7em;
  color: var(--teal-bright);
  letter-spacing: 0;
}
.hero__sub {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(238,236,224,0.85);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero__number {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: rgba(238,236,224,0.5);
}

/* stagger delays */
.hero__content .reveal-up:nth-child(1) { transition-delay: 0.1s; }
.hero__content .reveal-up:nth-child(2) { transition-delay: 0.2s; }
.hero__content .reveal-up:nth-child(3) { transition-delay: 0.3s; }
.hero__content .reveal-up:nth-child(4) { transition-delay: 0.4s; }
.hero__content .reveal-up:nth-child(5) { transition-delay: 0.5s; }

/* ===== METRICS (enlarged) ===== */
.metrics {
  background: var(--teal-deep);
  padding: 44px 24px;
  border-top: 1px solid rgba(238,236,224,0.08);
}
.metrics__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  gap: 6px;
}
.metric + .metric {
  border-left: 1px solid rgba(238,236,224,0.16);
}
.metric__num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--teal-bright);
  letter-spacing: 0.02em;
}
.metric span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,236,224,0.7);
  text-align: center;
}

/* ===== SERVICES (slide decks) ===== */
.services {
  padding: 96px 0;
  background: var(--cream);
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
  margin-bottom: 48px;
}
.svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc--rev .svc__text { order: 2; }
.svc--rev .svc__deck { order: 1; }

/* scroll-in animation (text lines + deck slide in together) */
.js .svc__anim {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js .svc--rev .svc__anim { transform: translateX(30px); }
.js .svc__deck {
  opacity: 0;
  transform: translateX(52px) scale(0.97);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: 0.12s;
}
.js .svc--rev .svc__deck { transform: translateX(-52px) scale(0.97); }
.svc.in-view .svc__anim { opacity: 1; transform: translateX(0); }
.svc.in-view .svc__deck { opacity: 1; transform: translateX(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .js .svc__anim,
  .js .svc__deck { transition: none; opacity: 1; transform: none; }
}

.svc__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--teal-deep);
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.svc__copy {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--teal-bright);
  max-width: 440px;
  margin-bottom: 22px;
}
.svc__points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.svc__points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.svc__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-bright);
  font-weight: 800;
}

/* deck / carousel */
.svc__deck {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 26px 60px rgba(19,80,84,0.28);
}
.svc__slides { position: absolute; inset: 0; }
.svc__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s ease;
}
.svc__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.svc__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--teal-deep);
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
}
.svc__deck:hover .svc__nav { opacity: 1; }
.svc__nav:hover { background: var(--white); }
.svc__nav--prev { left: 14px; }
.svc__nav--next { right: 14px; }

.svc__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.svc__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.svc__dot.is-active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}

.services__note {
  text-align: center;
  font-size: 0.95rem;
  color: #4a5568;
}
.services__note a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== HOW IT WORKS ===== */
.hiw {
  background: var(--teal-deep);
  padding: 90px 0;
}
.hiw .section-title { color: var(--cream); }
.hiw .label { color: var(--teal-bright); }
.hiw__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hiw__step {
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  padding: 8px 16px;
}
.hiw__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-bright);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1;
}
.hiw__step h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hiw__step p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(238,236,224,0.72);
  max-width: 220px;
  margin: 0 auto;
}
.hiw__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hiw__cta-note {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-bright);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 90px 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-bottom: 36px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: rgba(19,80,84,0.08);
}
.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.gallery__ig {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gallery__ig p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--white);
}
.about__img-col {
  overflow: hidden;
}
.about__img-col img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.about__img-col:hover img { transform: scale(1.04); }
.about__content {
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.about__content .section-title { color: var(--teal-deep); }
.about__content p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #4a5568;
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.about__list li {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-deep);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ===== ABOUT PAGE — FOUNDER ===== */
.founder {
  background: var(--cream);
  padding: 168px 24px 128px;
}
.founder__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: start;
  background: #f3f4f2;
  border: 1px solid rgba(19,80,84,0.07);
  border-radius: 0;
  padding: 56px;
  box-shadow: 0 30px 70px rgba(19,80,84,0.10);
}
.founder__photo {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(19,80,84,0.16);
}
.founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder__photo--empty {
  border: 2px dashed rgba(19,80,84,0.25);
  box-shadow: none;
}
.founder__photo-hint {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  color: var(--teal-muted);
}
.founder__photo--empty .founder__photo-hint { display: flex; }
.founder__photo-hint svg { width: 54px; height: 54px; opacity: 0.6; }
.founder__photo-hint span { font-size: 0.85rem; font-weight: 600; line-height: 1.7; }
.founder__photo-hint code {
  font-size: 0.78rem;
  background: rgba(19,80,84,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--teal-deep);
}
.founder__content { padding-top: 56px; }
.founder__content .label { color: var(--teal-bright); }
.founder__content .section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--teal-bright);
  margin-bottom: 46px;
}
.founder__content > p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #3c4a4b;
  margin-bottom: 22px;
  max-width: 520px;
}
.founder__sign {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 0.82rem;
  color: #3c4a4b;
  margin: 6px 0 28px;
}
@media (max-width: 860px) {
  .founder { padding: 124px 16px 84px; }
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    border-radius: 0;
  }
  .founder__photo { width: 100%; max-width: 380px; margin: 0 auto; }
  .founder__content { padding-top: 0; }
  .founder__content > p { max-width: none; }
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 90px 0;
  background: var(--teal-deep);
}
.reviews .section-title { color: var(--cream); }
.reviews .label { color: var(--teal-bright); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.review {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(238,236,224,0.1);
  border-radius: 14px;
  padding: 30px 28px;
}
.review__profile {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), #2c8079);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.review__avatar svg { width: 30px; height: 30px; }
.review__who { display: flex; flex-direction: column; line-height: 1.25; }
.review__who strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--cream);
}
.review__who span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.review__stars {
  font-size: 1.05rem;
  color: var(--teal-bright);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(238,236,224,0.85);
  font-style: italic;
  margin-bottom: 0;
}
.reviews__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}
.accent-turq { display: block; color: var(--teal-bright); font-weight: 700; font-size: 1.18rem; margin-top: 8px; }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0d3538 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: 'AAS';
  position: absolute;
  font-family: var(--font-head);
  font-size: 28vw;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.cta-block__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-block__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cta-block__inner h2 .accent-brush {
  display: block;
  font-size: 0.55em;
  color: var(--teal-bright);
}
.cta-block__inner p {
  font-size: 1rem;
  color: rgba(238,236,224,0.75);
  max-width: 440px;
  line-height: 1.6;
}

/* ===== READY TO BOOK (steps + CTA combined) ===== */
.book {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0d3538 100%);
  padding: 104px 24px;
  text-align: center;
}
.book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/aas-logo.png') no-repeat center / min(760px, 80%);
  opacity: 0.07;
  pointer-events: none;
}
.book__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}
.book__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 6px 0 14px;
}
.book__title .accent-brush {
  display: block;
  font-size: 0.55em;
  color: var(--teal-bright);
}
.book__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(238,236,224,0.75);
  max-width: 440px;
  margin: 0 auto 52px;
}
.book__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.book__step {
  flex: 1 1 220px;
  max-width: 270px;
  text-align: center;
  padding: 4px 12px;
}
.book__step .hiw__num { margin: 0 auto 16px; }
.book__step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.book__step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(238,236,224,0.72);
  max-width: 210px;
  margin: 0 auto;
}
.book__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.book__note {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-bright);
  margin-top: 18px;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
  background: var(--cream);
  padding: 150px 24px 100px;
}
.gallery-page__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 14px;
}
.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(19,80,84,0.08);
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card__tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.gallery-page__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
}
.gallery-page__cta-note {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* ===== BOOKING PAGE ===== */
.booking {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0d3538 100%);
  padding: 150px 24px 100px;
}
.booking__inner {
  max-width: 720px;
  margin: 0 auto;
}
.booking__head {
  text-align: center;
  margin-bottom: 44px;
}
.booking__head h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.booking__head p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(238,236,224,0.8);
  max-width: 540px;
  margin: 0 auto;
}
.booking__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(238,236,224,0.1);
  border-radius: 16px;
  padding: 36px;
}
.booking__group { margin-bottom: 30px; }
.booking__group:last-of-type { margin-bottom: 22px; }
.booking__group-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(238,236,224,0.14);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.field label .req { color: var(--teal-bright); }
.field label .opt {
  color: rgba(238,236,224,0.55);
  font-weight: 600;
  font-size: 0.76rem;
}
.field input,
.field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa3a3; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(54,158,152,0.28);
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.booking__submit { margin-top: 6px; }
.booking__submit .btn { width: 100%; }
.booking__note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(238,236,224,0.7);
}
.booking__note a { color: var(--teal-bright); font-weight: 700; }
.booking__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(54,158,152,0.4);
  border-radius: 16px;
  padding: 48px 32px;
}
.booking__status svg { width: 52px; height: 52px; color: var(--teal-bright); }
.booking__status h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.booking__status p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(238,236,224,0.8);
  max-width: 420px;
}
.booking__status a { color: var(--teal-bright); font-weight: 700; }
.booking__status.is-error { border-color: rgba(220,120,120,0.5); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 64px 24px 0;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(238,236,224,0.08);
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer__logo img { height: 70px; width: auto; }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(238,236,224,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* social / contact channels */
.social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(238,236,224,0.82);
  width: fit-content;
  transition: color var(--transition);
}
.social__item:hover { color: var(--white); }
.ig-glyph {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}
.social__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 1px;
  color: var(--teal-bright);
  transition: color var(--transition);
}
.social__item:hover .social__icon { color: var(--cream); }
.btn--ig { gap: 12px; }
.btn--ig .ig-glyph { width: 30px; height: 30px; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238,236,224,0.35);
  margin-bottom: 6px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(238,236,224,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--teal-bright); }
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(238,236,224,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; gap: 28px; }
  .svc--rev .svc__text,
  .svc--rev .svc__deck { order: 0; }
  .svc__deck { max-width: 460px; width: 100%; }
  .svc__text { max-width: 480px; }

  .about { grid-template-columns: 1fr; }
  .about__img-col { height: 320px; }
  .about__content { padding: 48px 28px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery__item--wide { grid-column: span 2; }

  .metric { padding: 8px 32px; }
}

@media (max-width: 720px) {
  .nav { padding: 8px 18px; }
  .nav__menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    margin-right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__menu.open { display: flex; }
  .nav__link { font-size: 1.1rem; }
  .nav__burger { display: flex; }
  .nav__logo-img { height: 44px; }

  .hero { padding: 100px 20px 50px; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }

  .svc__nav { opacity: 1; background: rgba(255,255,255,0.82); }

  .hiw__steps { flex-direction: column; align-items: center; gap: 24px; }
  .hiw__step { max-width: 320px; }

  .book { padding: 80px 20px; }
  .book__steps { flex-direction: column; align-items: center; gap: 26px; margin-bottom: 40px; }
  .book__step { max-width: 320px; }

  .gallery-page { padding: 116px 16px 72px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .booking { padding: 112px 16px 70px; }
  .booking__form { padding: 24px 20px; }
  .booking__grid { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide,
  .gallery__item--tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }

  .metrics { padding: 36px 20px; }
  .metrics__inner { grid-template-columns: 1fr; gap: 6px; }
  .metric { padding: 16px 24px; }
  .metric + .metric {
    border-left: none;
    border-top: 1px solid rgba(238,236,224,0.12);
  }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .cta-block__inner { gap: 16px; }
  .btn--lg { width: 100%; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__content { padding: 36px 20px; }
  .metric__num { font-size: clamp(2.8rem, 13vw, 3.6rem); }
}
