:root {
  --blue: #102542;
  --coral: #f87060;
  --grey: #cdd7d6;
  --beige: #b3a394;
  --white: #ffffff;
  --deep: #0a192e;
  --light: #f4f7f6;
  --mid: #5a6a7a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--blue);
  cursor: none;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: all 0.4s;
  background: transparent;
}
nav.scrolled {
  background: var(--blue);
  padding: 14px 60px;
  box-shadow: 0 6px 30px rgba(16, 37, 66, 0.25);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
}
.nav-logo .sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-top: 1px;
}
.logo-diamond {
  width: 15px;
  height: 15px;
  background: var(--coral);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.act::after {
  width: 100%;
}
.btn-book {
  cursor: none;
  border: 2px solid var(--coral);
  padding: 10px 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--coral);
  color: var(--white);
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-book:hover {
  background: transparent;
  color: var(--coral);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--blue);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  cursor: none;
}
.mob-nav a:hover {
  color: var(--coral);
}
.mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--white);
  cursor: none;
}

/* Shared utilities */
.sec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--coral);
}
.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sec-h2 em {
  color: var(--coral);
  font-style: italic;
}
.btn-primary {
  cursor: none;
  padding: 13px 32px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--coral);
}
.btn-outline {
  cursor: none;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.38);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Carousel */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-shape-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 68px 100px;
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--coral);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--coral);
  font-style: italic;
}
.hero p {
  font-size: 16px;
  color: rgba(205, 215, 214, 0.87);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.carousel-dots {
  position: absolute;
  bottom: 34px;
  left: 68px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: none;
  border: none;
  transition: all 0.35s;
}
.cdot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--coral);
}
.carousel-arrows {
  position: absolute;
  bottom: 26px;
  right: 60px;
  z-index: 20;
  display: flex;
  gap: 10px;
}
.carr {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 18px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carr:hover {
  border-color: var(--coral);
  background: var(--coral);
}
.cprog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.08);
}
.cprog-bar {
  height: 100%;
  background: var(--coral);
  width: 0;
  transition: width linear;
}

/* Stats bar */
.stats-bar {
  background: var(--blue);
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-item .n span {
  color: var(--coral);
}
.stat-item .l {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* About section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-img {
  background: linear-gradient(160deg, rgba(16, 37, 66, 0.2) 0%, rgba(16, 37, 66, 0.05) 100%),
    url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=900&q=80') center/cover no-repeat;
  min-height: 480px;
}
.about-content {
  padding: 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.checklist {
  list-style: none;
  margin-bottom: 30px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--blue);
  padding: 9px 0;
  border-bottom: 1px solid var(--grey);
}
.checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--grey);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.asr-item {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--grey);
}
.asr-item:last-child {
  border-right: none;
}
.asr-item .an {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
.asr-item .an span {
  color: var(--coral);
}
.asr-item .al {
  font-size: 10px;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  line-height: 1.4;
}

/* Excellence section */
.excellence-section {
  padding: 96px 60px;
  background: var(--white);
}
.excellence-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.excellence-top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blue);
}
.excellence-top p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey);
  border-radius: 4px;
  overflow: hidden;
}
.metric {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--grey);
  transition: background 0.3s;
}
.metric:last-child {
  border-right: none;
}
.metric:hover {
  background: var(--blue);
}
.metric:hover .metric-num,
.metric:hover .metric-lbl {
  color: var(--white);
}
.metric-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(248, 112, 96, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  transition: color 0.3s;
}
.metric-num span {
  color: var(--coral);
}
.metric-lbl {
  font-size: 11px;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  transition: color 0.3s;
}
.philosophy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey);
  margin-top: 1px;
}
.phil-card {
  background: var(--white);
  padding: 50px 50px;
  transition: background 0.3s;
}
.phil-card:hover {
  background: var(--light);
}
.phil-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.phil-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 14px;
}
.phil-card p {
  color: var(--mid);
  font-size: 14px;
  line-height: 1.78;
}

/* Services section */
.services-section {
  padding: 96px 60px;
  background: var(--light);
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services-top p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.services-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.service-featured {
  background: var(--blue);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.service-featured::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(248, 112, 96, 0.12);
  border-radius: 50%;
}
.sf-num {
  font-size: 60px;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: auto;
}
.service-featured h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.service-featured p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.sf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
}
.sf-tag::after {
  content: '→';
  font-size: 14px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grey);
  border-radius: 4px;
  overflow: hidden;
}
.service-list-item {
  background: var(--white);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: none;
  transition: background 0.3s, padding-left 0.3s;
}
.service-list-item:hover {
  background: var(--blue);
  padding-left: 38px;
}
.service-list-item:hover .sli-title,
.service-list-item:hover .sli-arrow {
  color: var(--white);
}
.service-list-item:hover .sli-num {
  color: var(--coral);
}
.sli-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 2px;
  min-width: 28px;
  transition: color 0.3s;
}
.sli-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--blue);
  flex: 1;
  margin-left: 14px;
  transition: color 0.3s;
}
.sli-arrow {
  color: var(--beige);
  font-size: 18px;
  transition: color 0.3s;
}

/* Features section */
.features-section {
  padding: 96px 60px;
  background: var(--white);
}
.features-sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.features-sec-head p {
  font-size: 15px;
  color: var(--beige);
  max-width: 500px;
  margin: 12px auto 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  padding: 40px 34px;
  border: 1px solid var(--grey);
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--coral);
  transition: width 0.3s;
}
.feat-card:hover {
  box-shadow: 0 20px 50px rgba(16, 37, 66, 0.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.feat-card:hover::after {
  width: 100%;
}
.feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(248, 112, 96, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 12px;
}
.feat-card p {
  color: var(--mid);
  font-size: 13px;
  line-height: 1.78;
}

/* Pricing section */
.pricing-section {
  padding: 96px 60px;
  background: var(--blue);
}
.pricing-sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-sec-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.pricing-sec-head p {
  color: var(--grey);
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 46px 38px;
  position: relative;
  transition: all 0.3s;
}
.price-card.featured {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.03);
}
.price-card:hover:not(.featured) {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.price-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}
.price-card.featured .price-tag {
  color: rgba(255, 255, 255, 0.82);
}
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 12px;
  font-weight: 400;
}
.price-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.82);
}
.price-features {
  list-style: none;
  margin-bottom: 34px;
}
.price-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.95);
}
.btn-price {
  width: 100%;
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  cursor: none;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}
.btn-price:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.price-card.featured .btn-price {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.price-card.featured .btn-price:hover {
  background: var(--deep);
}

/* Blog section */
.blog-section {
  padding: 96px 60px;
  background: var(--light);
}
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.blog-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--blue);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(16, 37, 66, 0.12);
  transform: translateY(-4px);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-body {
  padding: 28px 28px 32px;
}
.blog-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-meta {
  font-size: 11px;
  color: var(--beige);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta::before {
  content: '—';
}

/* Booking section */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
}
.booking-left {
  background: var(--blue);
  padding: 96px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.booking-left > p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.booking-features {
  list-style: none;
}
.booking-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.bf-icon {
  width: 42px;
  height: 42px;
  background: rgba(248, 112, 96, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.bf-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.bf-text p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}
.booking-right {
  padding: 80px 68px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 34px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.input-group {
  margin-bottom: 22px;
}
.input-group label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 9px;
  color: var(--beige);
  font-weight: 600;
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--grey);
  padding: 11px 0;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  background: transparent;
  color: var(--blue);
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--coral);
}
.input-group select {
  cursor: none;
  appearance: none;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
  cursor: none;
  transition: all 0.3s;
  margin-top: 6px;
}
.submit-btn:hover {
  background: transparent;
  color: var(--coral);
}

/* Testimonials section */
.testi-section {
  padding: 96px 60px;
  background: var(--light);
}
.testi-sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.testi-sec-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 10px;
}
.testi-sec-head p {
  font-size: 14px;
  color: var(--beige);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  padding: 40px 34px;
  border-radius: 4px;
  transition: all 0.3s;
}
.testi-card:hover {
  box-shadow: 0 20px 50px rgba(16, 37, 66, 0.1);
}
.testi-quote {
  font-size: 52px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--coral);
  line-height: 0.7;
  margin-bottom: 14px;
}
.stars {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 26px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.testi-role {
  font-size: 11px;
  color: var(--beige);
  margin-top: 2px;
}

/* App section */
.app-section {
  padding: 96px 60px;
  background: var(--blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-content .sec-label {
  color: var(--coral);
}
.app-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.app-content > p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.app-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
}
.app-store-btn:hover {
  border-color: var(--coral);
  background: rgba(248, 112, 96, 0.1);
}
.asb-icon {
  font-size: 22px;
}
.asb-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.asb-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.app-contact {
  display: flex;
  gap: 36px;
}
.app-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aci-icon {
  width: 42px;
  height: 42px;
  background: rgba(248, 112, 96, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.aci-label {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.aci-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}
.app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mockup {
  width: 260px;
  height: 460px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.app-mockup::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: linear-gradient(160deg, rgba(248, 112, 96, 0.2) 0%, rgba(16, 37, 66, 0.8) 100%);
  border-radius: 28px;
}
.app-mockup-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}
.ami-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.ami-sub {
  font-size: 11px;
  color: var(--grey);
  line-height: 1.5;
}
.ami-stars {
  margin-top: 28px;
  font-size: 11px;
  color: var(--coral);
}

/* CTA strip */
.cta-strip {
  background: var(--coral);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.cta-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.87);
}
.btn-cta-dark {
  padding: 15px 36px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-cta-dark:hover {
  background: var(--deep);
}

/* Footer */
footer {
  background: var(--deep);
  color: var(--white);
  padding: 72px 60px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 34px;
}
.fb p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 268px;
}
.fb address {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}
.fc h4 {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--coral);
  margin-bottom: 16px;
}
.fc ul {
  list-style: none;
}
.fc ul li {
  margin-bottom: 9px;
}
.fc ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  cursor: none;
  transition: color 0.25s;
}
.fc ul li a:hover {
  color: var(--white);
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hours-list li:last-child {
  border-bottom: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 10px;
}
.foot-soc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.foot-soc a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.foot-soc a:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.22s;
}
.reveal-d3 {
  transition-delay: 0.34s;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-main-grid {
    grid-template-columns: 1fr;
  }
  .booking-section {
    grid-template-columns: 1fr;
  }
  .app-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .app-visual {
    display: none;
  }
  .excellence-top,
  .services-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  nav {
    padding: 14px 20px;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .metrics-row,
  .pricing-grid,
  .features-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-row,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stats-bar {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 45%;
  }
  .about-stats-row {
    display: none;
  }
  .hero-content {
    padding: 120px 24px 80px;
  }
  .carousel-dots {
    left: 24px;
  }
  .carousel-arrows {
    right: 24px;
  }
  .excellence-section,
  .services-section,
  .features-section,
  .pricing-section,
  .blog-section,
  .testi-section,
  .app-section,
  .cta-strip,
  .booking-left,
  .booking-right {
    padding-left: 24px;
    padding-right: 24px;
  }
  footer {
    padding: 52px 24px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .metrics-row,
  .pricing-grid,
  .features-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}