/* =========================================================
   CAITLIN AT BRILLIANT TRAVEL — COMPLETE HOMEPAGE
   ========================================================= */
:root {
  --brand-pink: #c6005c;
  --brand-pink-dark: #980047;
  --brand-blush: #f3b6cf;
  --white: #fff;
  --off-white: #fbf8f7;
  --soft-pink: #fff4f8;
  --text-dark: #241f21;
  --text-medium: #676064;
  --border: rgba(36, 31, 33, 0.11);
  --header-height: 88px;
  --page-width: 1440px;
  --page-padding: 52px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--text-dark);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  border: 0;
}
ul {
  list-style: none;
}
.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-width));
  margin-inline: auto;
}
.narrow-container {
  max-width: 1080px;
}
.section {
  padding: 112px 0;
}
.eyebrow {
  margin-bottom: 13px;
  color: var(--brand-pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.section-copy,
.section-lead {
  color: var(--text-medium);
  font-weight: 400;
  line-height: 1.9;
}
.section-lead {
  max-width: 790px;
  margin: 24px auto 0;
  font-size: 17px;
}
.section-copy {
  max-width: 660px;
  margin-top: 18px;
}
.center-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 54px;
}
.center-heading .section-copy {
  margin: 18px auto 0;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--brand-pink);
  font-size: 18px;
}
.section-divider span {
  width: 72px;
  height: 1px;
  background: var(--brand-pink);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 29px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 0.25s ease;
}
.button-primary {
  border: 1px solid var(--brand-pink);
  background: var(--brand-pink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(198, 0, 92, 0.22);
}
.button-primary:hover {
  background: var(--brand-pink-dark);
  border-color: var(--brand-pink-dark);
  transform: translateY(-2px);
}
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.button-outline:hover {
  background: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.text-link {
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 700;
}
.text-link span {
  margin-left: 7px;
  transition: margin 0.2s;
}
.text-link:hover span {
  margin-left: 12px;
}

/* Header */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(36, 31, 33, 0.06);
  box-shadow: 0 10px 32px rgba(36, 31, 33, 0.055);
  backdrop-filter: blur(16px);
}
.nav-container {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 36px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-subtitle {
  margin-top: 6px;
  color: var(--brand-pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
nav {
  justify-self: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  position: relative;
  padding: 14px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--brand-pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-pink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-button {
  justify-self: end;
  min-width: 160px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 999px;
  background: var(--brand-pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(198, 0, 92, 0.18);
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* Hero and About split */
.hero-about {
  min-height: calc(100svh - var(--header-height));
  margin-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--off-white);
}

.hero-panel {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2b2226;
}

.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  animation: heroReveal 1.4s ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 20, 24, 0.25),
    rgba(30, 20, 24, 0.48)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 650px);
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero-content h1 span {
  display: block;
  margin-top: 15px;
  color: var(--brand-blush);
  font-style: italic;
  font-weight: 600;
}

.hero-tagline {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.3vw, 18px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.about-panel {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(50px, 6vw, 90px);
  background: var(--off-white);
}

.about-panel-inner {
  width: min(100%, 640px);
  margin: 0 auto;
}

.about-panel h2 {
  font-size: clamp(44px, 4.5vw, 68px);
}

.about-panel h2 em {
  display: block;
  color: var(--brand-pink);
  font-weight: 500;
}

.about-lead {
  max-width: 600px;
  margin-top: 24px;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.85;
}

.compact-benefits {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.compact-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.compact-benefit > span {
  padding-top: 2px;
  color: var(--brand-pink);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
}

.compact-benefit h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}

.compact-benefit p {
  margin-top: 5px;
  color: var(--text-medium);
  font-size: 12px;
  line-height: 1.6;
}

.about-link {
  display: inline-block;
  margin-top: 25px;
}

/* Featured carousel */
.featured-section {
  background: var(--white);
}
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.carousel-shell {
  position: relative;
  max-width: 1640px;
  margin: auto;
  padding: 0 68px;
}
.deals-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.deals-carousel::-webkit-scrollbar {
  display: none;
}
.deal-card {
  flex: 0 0 clamp(286px, 22vw, 330px);
  min-height: 590px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--white);
  scroll-snap-align: start;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(36, 31, 33, 0.1);
}
.deal-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #ddd;
}
.deal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 8, 10, 0.85),
    rgba(12, 8, 10, 0.08) 70%
  );
}
.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.deal-card:hover .deal-image img {
  transform: scale(1.05);
}
.deal-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.deal-title-overlay {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
}
.deal-title-overlay h3 {
  font-size: 19px;
  line-height: 1.15;
}
.deal-rating {
  margin-top: 5px;
  color: #ffd000;
  font-size: 13px;
}
.deal-rating strong {
  margin-left: 7px;
  color: #fff;
  font-size: 11px;
}
.deal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 23px 19px 19px;
}
.deal-content h4 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}
.deal-details {
  display: grid;
  gap: 6px;
}
.deal-details p {
  font-size: 12px;
  color: #514a4e;
}
.deal-details strong {
  color: var(--text-dark);
}
.deal-footer {
  margin-top: auto;
  padding-top: 20px;
}
.deal-price {
  color: var(--brand-pink);
  font-size: 22px;
  font-weight: 700;
}
.deal-price span {
  color: var(--text-medium);
  font-size: 10px;
}
.deal-note {
  margin-top: 8px;
  color: var(--text-medium);
  font-size: 9px;
  line-height: 1.5;
}
.deal-link {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--brand-pink);
  border-radius: 999px;
  color: var(--brand-pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.deal-link:hover {
  background: var(--brand-pink);
  color: #fff;
}
.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-pink);
  font-size: 33px;
  box-shadow: 0 8px 22px rgba(36, 31, 33, 0.14);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(198, 0, 92, 0.22);
  cursor: pointer;
}
.carousel-dot.active {
  width: 25px;
  background: var(--brand-pink);
}
.deals-note {
  max-width: 900px;
  margin: 25px auto 0;
  padding: 0 24px;
  color: var(--text-medium);
  font-size: 10px;
  text-align: center;
}

/* Holiday types */
.holiday-types-section {
  background: var(--off-white);
}
.holiday-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.holiday-type-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 22px;
  background: #333;
}
.holiday-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 16, 0.78),
    rgba(20, 12, 16, 0.05) 65%
  );
}
.holiday-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.holiday-type-card:hover img {
  transform: scale(1.06);
}
.holiday-type-card > span {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 24px;
  color: #fff;
}
.holiday-type-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 600;
}
.holiday-type-card small {
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Why book */
.why-book-section {
  background: var(--white);
}
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.split-image {
  position: relative;
}
.split-image > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 25px;
}
.experience-badge {
  position: absolute;
  right: -30px;
  bottom: 38px;
  max-width: 245px;
  padding: 24px;
  border-radius: 18px;
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(198, 0, 92, 0.25);
}
.experience-badge strong,
.experience-badge span {
  display: block;
}
.experience-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}
.experience-badge span {
  margin-top: 3px;
  font-size: 11px;
}
.split-content > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-medium);
  line-height: 1.9;
}
.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
}
.check-list li {
  position: relative;
  padding-left: 31px;
  font-size: 14px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-pink);
  font-weight: 700;
}

/* Reviews */
.reviews-section {
  background: var(--soft-pink);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 35px;
  border: 1px solid rgba(198, 0, 92, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}
.featured-review {
    transform: none;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}
.review-stars {
  color: var(--brand-pink);
  letter-spacing: 0.1em;
}
.review-card blockquote {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.35;
}
.review-card figcaption {
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
}
.review-card figcaption span {
  display: block;
  margin-top: 3px;
  color: var(--text-medium);
  font-weight: 400;
}

/* Suppliers */
.suppliers-section {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.suppliers-heading {
  text-align: center;
  color: var(--text-medium);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.supplier-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 55px;
  margin-top: 26px;
}
.supplier-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: #554e51;
}

/* Social */
.social-section {
  background: var(--off-white);
}
.social-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.social-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  font-size: 12px;
  font-weight: 700;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.social-grid img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 16px;
}
.social-grid img:nth-child(2),
.social-grid img:nth-child(3) {
  height: 215px;
}

/* Contact */
.contact-section {
  padding: 100px 0;
  background: var(--brand-pink);
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 65px;
  border-radius: 28px;
  background: #fff;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 23px;
  color: var(--text-medium);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
}
.contact-details a {
  color: var(--brand-pink);
  font-weight: 700;
}
.contact-details span {
  color: var(--text-medium);
  font-size: 12px;
}
.contact-form {
  display: grid;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--off-white);
  padding: 14px 15px;
  color: var(--text-dark);
  outline: none;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(198, 0, 92, 0.09);
}
.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

/* Footer */
.footer-protection{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:12px;
}

.footer-protection a{
    display:flex;
    align-items:center;
}

.footer-protection img{
    height:42px;
    width:auto;
    transition:opacity .25s ease, transform .25s ease;
}

.footer-protection img:hover{
    opacity:.85;
    transform:translateY(-2px);
}

.site-footer {
  padding: 65px 0 25px;
  background: #241f21;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}
.footer-grid p {
  color: var(--brand-blush);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
.footer-grid a:hover {
  color: var(--brand-blush);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  :root {
    --page-padding: 32px;
  }
  .nav-container {
    grid-template-columns: auto 1fr auto;
  }
  .nav-links {
    gap: 23px;
  }
  .benefit-grid,
  .review-grid {
    gap: 16px;
  }
  .split-layout {
    gap: 45px;
  }
  .experience-badge {
    right: 20px;
  }
  .contact-card {
    gap: 45px;
    padding: 50px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 80px;
    --page-padding: 23px;
  }
  .section {
    padding: 85px 0;
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
  }
  .nav-button {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    z-index: 4;
  }
  nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s;
  }
  .menu-open nav,
  nav.active {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .nav-links a {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    letter-spacing: 0;
    text-transform: none;
  }
  .logo {
    z-index: 4;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }
  .holiday-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-layout,
  .social-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .split-image > img {
    height: 520px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .featured-review {
    transform: none;
  }
  .social-layout {
    gap: 40px;
  }
  .contact-card {
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    row-gap: 35px;
  }
}
@media (max-width: 620px) {
  :root {
    --page-padding: 19px;
  }
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }
  .hero-buttons .button {
    width: 100%;
  }
  .section {
    padding: 70px 0;
  }
  h2 {
    font-size: 44px;
  }
  .benefit-card {
    padding: 28px 24px;
  }
  .carousel-shell {
    padding: 0 20px;
  }
  .carousel-arrow {
    display: none;
  }
  .deal-card {
    flex-basis: calc(100vw - 58px);
    max-width: 340px;
  }
  .deal-supplier{

    margin-bottom:16px;

    padding-bottom:14px;

    border-bottom:1px solid rgba(198,0,92,.08);

}

.supplier-label{

    display:block;

    margin-bottom:4px;

    color:#888;

    font-size:9px;

    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

}

.supplier-name{

    display:block;

    font-family:"Cormorant Garamond",serif;

    font-size:22px;

    font-weight:600;

    color:#C6005C;

}
  .holiday-type-grid {
    grid-template-columns: 1fr;
  }
  .holiday-type-card {
    min-height: 310px;
  }
  .split-image > img {
    height: 430px;
  }
  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -35px 18px 0;
  }
  .social-grid img,
  .social-grid img:nth-child(2),
  .social-grid img:nth-child(3) {
    height: 185px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 30px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .supplier-list {
    gap: 20px 30px;
  }
  .supplier-list span {
    font-size: 21px;
  }
}

/* Hero and About responsive layout */
@media (max-width: 1050px) {
  .hero-about {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .about-panel {
    min-height: auto;
  }

  .hero-panel {
    min-height: 620px;
  }

  .about-panel {
    padding: 70px var(--page-padding);
  }
}

@media (max-width: 620px) {
  .hero-about {
    margin-top: var(--header-height);
  }

  .hero-panel {
    min-height: 590px;
  }

  .hero-content {
    width: min(100% - 38px, 520px);
  }

  .hero-content h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .about-panel {
    padding: 55px 22px 60px;
  }

  .about-panel h2 {
    font-size: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   Homepage refinements
   ========================================================= */

/* The opening panels no longer use small eyebrow headings. */
.hero-content h1 {
  margin-top: 0;
}

.about-panel h2 {
  margin-top: 0;
}

.about-link {
  margin-top: 28px;
}

/* Suppliers now divide the opening section from the deals. */
.suppliers-section {
  position: relative;
  z-index: 2;
}

/* Featured deals heading and enquiry link. */
.featured-heading {
  max-width: 850px;
  margin-bottom: 50px;
  text-align: center;
}

.featured-heading .section-copy {
  margin: 18px auto 0;
}

.featured-enquiry {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* Why book section without the large photograph. */
.why-book-inner {
  max-width: 940px;
}

.why-book-inner .split-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.why-book-inner .split-content > p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.why-book-inner .check-list {
  width: min(100%, 650px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

/* Slim social media divider banner. */
.social-section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--soft-pink);
}

.social-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 6vw, 90px);
}

.social-banner > p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.1;
}

.social-banner .social-links {
  flex-shrink: 0;
  margin-top: 0;
}

.social-banner .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .featured-heading {
    margin-bottom: 38px;
  }

  .social-banner {
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  .social-section {
    padding: 22px 0;
  }

  .social-banner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .social-banner .social-links {
    justify-content: center;
  }
}


/* =========================================================
   Spacing and alternating section colours
   ========================================================= */

/* Reduce the large gaps between full content sections. */
.section {
  padding: 78px 0;
}

/* Keep the page rhythm alternating between white and pastel pink. */
.featured-section {
  background: var(--white);
}

.suppliers-section {
  padding: 30px 0;
  background: var(--soft-pink);
  border-top: 1px solid rgba(198, 0, 92, 0.1);
  border-bottom: 1px solid rgba(198, 0, 92, 0.1);
}

.why-book-section {
  background: var(--white);
}

.reviews-section {
  background: var(--soft-pink);
}

.social-section {
  background: var(--white);
}

/* Tighten spacing inside individual sections. */
.featured-heading {
  margin-bottom: 34px;
}

.deals-carousel {
  padding-bottom: 22px;
}

.featured-enquiry {
  margin-top: 8px;
}

.deals-note {
  margin-top: 18px;
}

.center-heading {
  margin-bottom: 38px;
}

.why-book-inner .check-list {
  margin-top: 24px;
  margin-bottom: 28px;
}

.supplier-list {
  gap: 18px 48px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .section {
    padding: 64px 0;
  }

  .featured-heading {
    margin-bottom: 30px;
  }

  .center-heading {
    margin-bottom: 32px;
  }

  .suppliers-section {
    padding: 26px 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 52px 0;
  }

  .featured-heading {
    margin-bottom: 24px;
  }

  .center-heading {
    margin-bottom: 26px;
  }

  .suppliers-section {
    padding: 22px 0;
  }

  .supplier-list {
    gap: 14px 26px;
    margin-top: 15px;
  }
}


/* =========================================================
   Final homepage refinements
   ========================================================= */

/* Keep the About call-to-action vertically balanced. */
.about-link {
  min-height: 48px;
  margin-top: 22px;
  padding: 13px 25px;
  line-height: 1;
}

/* Continuously scrolling supplier marquee. */
.suppliers-section {
  overflow: hidden;
  padding: 24px 0 26px;
}

.suppliers-heading {
  padding: 0 var(--page-padding);
}

.supplier-marquee {
  position: relative;
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
}

.supplier-marquee::before,
.supplier-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(35px, 7vw, 110px);
  pointer-events: none;
}

.supplier-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--soft-pink), transparent);
}

.supplier-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--soft-pink), transparent);
}

.supplier-track {
  display: flex;
  width: max-content;
  animation: supplierScroll 28s linear infinite;
}

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

.supplier-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  padding-right: clamp(38px, 5vw, 78px);
}

.supplier-group span {
  white-space: nowrap;
  color: #554e51;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
}

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

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

/* Reviews now follow the supplier strip directly. */
.reviews-section {
  background: var(--white);
}

/* Slim social strip styled in the same language as suppliers. */
.social-section {
  padding: 24px 0 26px;
  background: var(--soft-pink);
  border-top: 1px solid rgba(198, 0, 92, 0.1);
  border-bottom: 1px solid rgba(198, 0, 92, 0.1);
}

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

.social-heading {
  color: var(--text-medium);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 54px;
  margin-top: 15px;
}

.social-platforms a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #554e51;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease;
}

.social-platforms a:hover {
  color: var(--brand-pink);
}

.social-platforms a span {
  color: var(--brand-pink);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

@media (max-width: 620px) {
  .about-link {
    width: auto;
  }

  .suppliers-section,
  .social-section {
    padding: 21px 0 23px;
  }

  .supplier-track {
    animation-duration: 22s;
  }

  .social-platforms {
    gap: 16px 32px;
    margin-top: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .supplier-track {
    width: 100%;
    animation: none;
  }

  .supplier-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 var(--page-padding);
  }

  .supplier-group[aria-hidden="true"] {
    display: none;
  }
}


/* =========================================================
   Final polish
   ========================================================= */

/* Keep the header call-to-action clean and flat. */
.nav-button {
  box-shadow: none;
}

/* Fit the expanded About benefits comfortably without a CTA. */
.about-panel {
  padding-top: clamp(38px, 4.5vw, 68px);
  padding-bottom: clamp(38px, 4.5vw, 68px);
}

.compact-benefits {
  margin-top: 26px;
}

.compact-benefit {
  padding: 13px 0;
}

/* Pull the two main section headings closer to the preceding dividers. */
.featured-section {
  padding-top: 52px;
}

.reviews-section {
  padding-top: 52px;
}

.featured-heading {
  margin-bottom: 27px;
}

.center-heading {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .featured-section,
  .reviews-section {
    padding-top: 44px;
  }
}

@media (max-width: 620px) {
  .featured-section,
  .reviews-section {
    padding-top: 36px;
  }

  .compact-benefit {
    padding: 14px 0;
  }
}

/* =========================================================
   Compact hero for phones
   ========================================================= */

@media (max-width: 620px) {
  .hero-panel {
    min-height: clamp(430px, 68svh, 500px);
  }

  .hero-content {
    width: min(calc(100% - 36px), 520px);
    padding: 18px 0;
  }

  .hero-content h1 {
    font-size: clamp(43px, 12vw, 58px);
    line-height: 0.92;
  }

  .hero-content h1 span {
    margin-top: 9px;
  }

  .hero-tagline {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-buttons .button {
    flex: 1 1 0;
    width: auto;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 9px;
    letter-spacing: 0.075em;
  }
}

/* Stack the buttons only on particularly narrow phones. */
@media (max-width: 440px) {
  .hero-panel {
    min-height: 500px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }
}


/* =========================================================
   Mobile navigation correction
   ========================================================= */

@media (max-width: 900px) {
  #header {
    background: #fff;
  }

  .nav-container {
    position: relative;
    z-index: 1002;
  }

  .logo,
  .mobile-toggle {
    position: relative;
    z-index: 1003;
  }

  .mobile-toggle {
    flex: 0 0 44px;
    padding: 0;
    color: var(--text-dark);
    background: var(--white);
  }

  nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: clamp(55px, 10vh, 90px) var(--page-padding) 40px;
    overflow-y: auto;

    background: var(--soft-pink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .menu-open nav,
  nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(198, 0, 92, 0.14);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(198, 0, 92, 0.14);
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 17px 6px;

    color: var(--text-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 8vw, 38px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--brand-pink);
  }
}

@media (max-width: 440px) {
  .logo-name {
    font-size: 25px;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  nav {
    padding-top: 42px;
  }

  .nav-links a {
    padding: 15px 4px;
    font-size: 31px;
  }
}


/* =========================================================
   Mobile menu viewport fix
   The header backdrop filter was trapping the fixed menu
   inside the height of the header.
   ========================================================= */

@media (max-width: 900px) {
  #header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  nav {
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;

    width: 100vw;
    max-width: none;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));

    padding: 36px var(--page-padding);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links {
    margin: auto 0;
  }
}

@media (max-width: 440px) {
  nav {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .nav-links a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* =========================================================
   Branded contact form validation
   ========================================================= */

.contact-form label {
  position: relative;
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 1px;
  color: var(--brand-pink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.field-invalid .field-error {
  opacity: 1;
  transform: translateY(0);
}

.contact-form .field-invalid input,
.contact-form .field-invalid textarea {
  border-color: var(--brand-pink);
  background: #fff8fb;
  box-shadow: 0 0 0 3px rgba(198, 0, 92, 0.08);
}

.contact-form .field-valid input,
.contact-form .field-valid textarea {
  border-color: #F3B6CF;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(35, 132, 84, 0.35), rgba(35, 132, 84, 0.1)) border-box;
}

.contact-form .field-valid {
  position: relative;
}

.contact-form .field-valid::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 38px;
  color: #F3B6Cf;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--brand-pink);
}

.contact-form .button:disabled {
  border-color: rgba(198, 0, 92, 0.18);
  background: #ead9e1;
  color: rgba(36, 31, 33, 0.42);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.contact-form .button:disabled:hover {
  border-color: rgba(198, 0, 92, 0.18);
  background: #ead9e1;
  color: rgba(36, 31, 33, 0.42);
  transform: none;
}

@media (max-width: 620px) {
  .contact-form .field-valid::after {
    top: 38px;
  }
}


/* =========================================================
   IONOS enquiry form submission states
   ========================================================= */

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 1px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status-success {
  color: #C6005C;
}

.form-status.success {
    color: #C6005C;
}

.form-status-error {
  color: var(--brand-pink);
}

.contact-form .button[aria-busy="true"] {
  cursor: wait;
}
