/* =========================================================
   Thassos.sk - components.css
   Buttons, cards, forms, gallery, hero, badges
   ========================================================= */

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-8);
  height: 52px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 16px; height: 16px; }

/* Primary - terracotta filled */
.btn--primary {
  background: var(--c-terracotta);
  color: var(--c-paper);
  box-shadow: 0 6px 18px rgba(197, 123, 87, 0.3);
}
.btn--primary:hover {
  background: var(--c-terracotta-d);
  color: var(--c-paper);
  box-shadow: 0 10px 28px rgba(197, 123, 87, 0.4);
}

/* Aegean filled */
.btn--aegean {
  background: var(--c-aegean);
  color: var(--c-paper);
}
.btn--aegean:hover {
  background: var(--c-aegean-deep);
  color: var(--c-paper);
}

/* Outline on light */
.btn--outline {
  background: transparent;
  color: var(--c-aegean);
  border: 1.5px solid var(--c-aegean);
}
.btn--outline:hover {
  background: var(--c-aegean);
  color: var(--c-paper);
}

/* Outline on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--c-paper);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: var(--c-paper);
  color: var(--c-aegean-deep);
  border-color: var(--c-paper);
}

.btn--sm { height: 42px; padding: 0 var(--sp-5); font-size: var(--fs-xs); }
.btn--lg { height: 60px; padding: 0 var(--sp-10); font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* Subtle text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-aegean);
}
.link-arrow svg {
  width: 14px;
  transition: transform var(--t-fast) var(--ease-out);
}
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--c-paper);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 44, 64, 0.45) 0%,
      rgba(15, 44, 64, 0.2) 35%,
      rgba(15, 44, 64, 0.6) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(15, 44, 64, 0.4) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--sp-32) var(--sp-24);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-paper);
  backdrop-filter: blur(8px);
  margin-bottom: var(--sp-6);
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-terracotta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-terracotta);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  color: var(--c-paper);
  font-size: var(--fs-5xl);
  font-weight: 500;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-soft);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: var(--lh-snug);
  color: rgba(255,255,255,0.92);
  max-width: 50ch;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  bottom: var(--sp-10);
  left: 0; right: 0;
  z-index: 2;
}
.hero__meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-label {
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-gold-soft);
  opacity: 0.9;
}
.hero__meta-value {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  color: var(--c-paper);
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    align-items: stretch;
  }
  .hero__inner {
    padding-block: var(--sp-16) var(--sp-6);
  }
  .hero__title {
    font-size: clamp(2.25rem, 9vw, 3.25rem);
    line-height: 1.05;
  }
  .hero__subtitle {
    font-size: 1.05rem;
    margin-bottom: var(--sp-8);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-3);
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__meta {
    position: static;
    transform: none;
    margin-top: var(--sp-2);
    padding-bottom: var(--sp-10);
  }
  .hero__meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    padding-top: var(--sp-5);
  }
  .hero__meta-value { font-size: var(--fs-base); }
}

/* Inner page hero (smaller) */
.page-hero {
  position: relative;
  padding-block: var(--sp-24) var(--sp-20);
  background: var(--c-aegean-deep);
  color: var(--c-paper);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 760px) {
  .page-hero { padding-block: var(--sp-12) var(--sp-10); }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero .lead { font-size: 1.05rem; }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
}
.page-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero h1 {
  color: var(--c-paper);
  max-width: 22ch;
}
.page-hero .lead {
  color: var(--c-gold-soft);
  max-width: 60ch;
}
.page-hero .breadcrumb {
  margin-bottom: var(--sp-6);
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--c-gold-soft); }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--c-paper); }

/* =========================================================
   Section header
   ========================================================= */

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.section-header__title { max-width: 24ch; margin: 0; }

.section-header__lead {
  max-width: 42ch;
  font-size: var(--fs-md);
  color: var(--c-text-soft);
  line-height: var(--lh-base);
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================================
   Trust bar
   ========================================================= */

.trustbar {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  padding-block: var(--sp-8);
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-inline: var(--sp-4);
  border-right: 1px solid var(--c-line);
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__item svg {
  width: 36px; height: 36px;
  color: var(--c-terracotta);
  flex-shrink: 0;
}
.trustbar__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  color: var(--c-aegean-deep);
  margin: 0;
}
.trustbar__desc {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .trustbar__inner { grid-template-columns: 1fr 1fr; }
  .trustbar__item:nth-child(2n) { border-right: 0; }
  .trustbar__item:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); padding-bottom: var(--sp-5); }
  .trustbar__item:nth-child(n+3) { padding-top: var(--sp-5); }
}
@media (max-width: 480px) {
  .trustbar__inner { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--c-line); padding-block: var(--sp-3); }
  .trustbar__item:last-child { border-bottom: 0; }
}

/* =========================================================
   Hotel card
   ========================================================= */

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-6);
}

.hotel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.hotel-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-bg-deep);
}

.hotel-card__media img,
.hotel-card__media .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.hotel-card:hover .hotel-card__media img,
.hotel-card:hover .hotel-card__media .placeholder { transform: scale(1.05); }

.hotel-card__tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  padding: 6px 12px;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-aegean);
}
.hotel-card__tag--lux { color: var(--c-terracotta); }
.hotel-card__tag--nature { color: var(--c-olive-deep); }

.hotel-card__stars {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(15, 44, 64, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  color: var(--c-gold-soft);
}
.hotel-card__stars svg { width: 12px; height: 12px; }

.hotel-card__body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hotel-card__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}
.hotel-card__location svg { width: 12px; height: 12px; }

.hotel-card__name {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: var(--c-aegean-deep);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.hotel-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-5);
  flex: 1;
}

.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-line);
}

.hotel-card__price-from {
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: block;
}
.hotel-card__price {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  color: var(--c-aegean-deep);
}

/* Sizes via grid spans */
.hotel-card.feat-7 { grid-column: span 7; }
.hotel-card.feat-5 { grid-column: span 5; }
.hotel-card.feat-6 { grid-column: span 6; }
.hotel-card.feat-4 { grid-column: span 4; }
.hotel-card.feat-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .hotel-card.feat-7,
  .hotel-card.feat-5,
  .hotel-card.feat-6,
  .hotel-card.feat-4 { grid-column: span 6; }
}
@media (max-width: 600px) {
  .hotel-card.feat-7,
  .hotel-card.feat-5,
  .hotel-card.feat-6,
  .hotel-card.feat-4 { grid-column: span 12; }
}

/* Image placeholder shown until real photos exist */
.placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--c-turquoise) 0%, var(--c-aegean) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.placeholder svg { width: 64px; height: 64px; }

.placeholder--olive { background: linear-gradient(135deg, var(--c-olive) 0%, var(--c-olive-deep) 100%); }
.placeholder--gold  { background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-terracotta) 100%); }
.placeholder--sand  { background: linear-gradient(135deg, var(--c-bg-deep) 0%, var(--c-gold-soft) 100%); color: var(--c-gold); }
.placeholder--deep  { background: linear-gradient(135deg, var(--c-aegean-deep) 0%, var(--c-aegean) 100%); }

/* When photos.js injects an <img>, fill the placeholder and hide the SVG icon */
.placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-base) var(--ease-out);
  /* Hide alt text fallback when the image fails to load */
  font-size: 0;
  color: transparent;
}
.placeholder.has-photo > svg { opacity: 0; }
.placeholder.has-photo { color: transparent; }

/* =========================================================
   Feature cards (Why Thassos)
   ========================================================= */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.feature {
  padding: var(--sp-8);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-base), transform var(--t-base);
}
.feature:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.feature__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-5);
}
.feature__icon svg { width: 28px; height: 28px; }

.feature h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.feature p {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: var(--lh-base);
  margin: 0;
}

@media (max-width: 880px) {
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
}

/* =========================================================
   Gallery (masonry-like)
   ========================================================= */

.gallery {
  columns: 3;
  column-gap: var(--sp-4);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--c-bg-deep);
  display: block;
}
.gallery__item .placeholder {
  width: 100%;
  display: block;
  aspect-ratio: var(--ar, 4/3);
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery__item .placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__item:hover .placeholder { transform: scale(1.04); }

.gallery__item--landscape .placeholder { --ar: 16/10; }
.gallery__item--portrait .placeholder { --ar: 3/4; }
.gallery__item--square .placeholder { --ar: 1/1; }

@media (max-width: 880px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }

/* Gallery filters */
.gallery-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  justify-content: center;
}
.gallery-filter {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-line);
  background: transparent;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
  cursor: pointer;
  transition: all var(--t-fast);
}
.gallery-filter:hover { border-color: var(--c-aegean); color: var(--c-aegean); }
.gallery-filter.is-active {
  background: var(--c-aegean);
  border-color: var(--c-aegean);
  color: var(--c-paper);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 44, 64, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--sp-8);
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
}
.lightbox img,
.lightbox .placeholder {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox__caption {
  text-align: center;
  margin-top: var(--sp-4);
  color: var(--c-bg-warm);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-md);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--c-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__close { top: var(--sp-6); right: var(--sp-6); transform: none; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: -72px; }
.lightbox__next { right: -72px; }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .lightbox__prev { left: var(--sp-2); }
  .lightbox__next { right: var(--sp-2); }
}

/* =========================================================
   Forms
   ========================================================= */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.field { display: flex; flex-direction: column; gap: var(--sp-2); }

.field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.field__label .req { color: var(--c-terracotta); }

.field__input,
.field__textarea,
.field__select {
  width: 100%;
  padding: 14px 18px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: var(--c-ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field__textarea { resize: vertical; min-height: 120px; line-height: var(--lh-base); }

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--c-aegean);
  box-shadow: 0 0 0 3px rgba(95, 168, 211, 0.18);
}

.field__input::placeholder,
.field__textarea::placeholder { color: var(--c-text-muted); }

.field__hint { font-size: var(--fs-xs); color: var(--c-text-muted); }
.field__error { font-size: var(--fs-xs); color: var(--c-terracotta-d); display: none; }
.field.has-error .field__input,
.field.has-error .field__textarea,
.field.has-error .field__select { border-color: var(--c-terracotta); }
.field.has-error .field__error { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.checkbox, .radio {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: var(--lh-base);
}
.checkbox input, .radio input {
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--c-aegean);
  width: 18px;
  height: 18px;
}

.field-set {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Step form */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-12);
}
.step {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: 500;
}
.step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-bg-deep);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  transition: background var(--t-base), color var(--t-base);
}
.step.is-active { color: var(--c-aegean-deep); }
.step.is-active .step__num { background: var(--c-aegean); color: var(--c-paper); }
.step.is-complete .step__num { background: var(--c-olive); color: var(--c-paper); }
.steps__sep {
  width: 40px; height: 1px;
  background: var(--c-line);
}

.form-step { display: none; }
.form-step.is-active { display: block; }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}

/* =========================================================
   CTA banner
   ========================================================= */

.cta-banner {
  position: relative;
  padding: var(--sp-20) var(--sp-12);
  background: var(--c-aegean);
  color: var(--c-paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(95, 168, 211, 0.4), transparent 50%),
              radial-gradient(circle at 80% 100%, rgba(184, 153, 104, 0.25), transparent 50%);
  z-index: -1;
}
.cta-banner h2 {
  color: var(--c-paper);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-banner p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin: var(--sp-5) auto var(--sp-8);
}
.cta-banner__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Last minute strip
   ========================================================= */

.lastmin {
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-8);
  background: linear-gradient(135deg, var(--c-terracotta) 0%, var(--c-terracotta-d) 100%);
  color: var(--c-paper);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.lastmin::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.lastmin__label {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  font-style: italic;
  color: var(--c-paper);
  position: relative;
}
.lastmin__text { color: rgba(255,255,255,0.92); position: relative; }
.lastmin__cta { position: relative; }

@media (max-width: 880px) {
  .lastmin {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-5);
  }
}

/* =========================================================
   Tags / chips / pills
   ========================================================= */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--c-bg-warm);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-text-soft);
  font-weight: 600;
}
.chip svg { width: 12px; height: 12px; color: var(--c-terracotta); }

.chip--success { background: rgba(122, 139, 105, 0.15); color: var(--c-olive-deep); border-color: transparent; }
.chip--warn { background: rgba(197, 123, 87, 0.15); color: var(--c-terracotta-d); border-color: transparent; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--c-aegean);
  color: var(--c-paper);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 600;
}

/* Decorative wave SVG */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  color: var(--c-bg);
}
