.fr-section {
  position: relative;
  background:
    radial-gradient(ellipse 900px 420px at 20% -10%, rgba(255, 255, 255, .7), transparent 60%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .06) 0px, rgba(255, 255, 255, .06) 2px, transparent 2px, transparent 26px),
    linear-gradient(180deg, var(--flood-white) 0%, var(--flood-sky) 55%, var(--flood-deep) 100%);
  color: var(--ink);
  padding: 96px 24px 120px;
  overflow: hidden;
}

.fr-wave {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
}

.fr-wave--bottom {
  bottom: -1px;
}

.fr-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.fr-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  font-weight: 600;
  margin-bottom: 18px;
}

.fr-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ochre-deep);
  display: inline-block;
}

.fr-heading {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2 rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;

}

.fr-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--ochre-deep);
}

.fr-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
  color: rgba(22, 38, 42, .75);
  margin: 0 0 32px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fr-btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: .99rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, .55);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);

}

.fr-btn:focus-visible {
  outline: 2px solid var(--relief-amber);
  outline-offset: 3px;
}

.fr-btn:active {
  transform: translateY(1px);
}

.fr-btn-primary {
  background: rgba(255, 255, 255, .55);

}

.fr-btn-primary:hover {
  transform: translateY(-2px);
}

.fr-btn-ghost {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
  border-color: rgba(11, 42, 66, .22);
  color: var(--ink);
  margin-top: 40px;
}

.fr-btn-ghost:hover {
  background: rgba(255, 255, 255, .85);
  border-color: var(--ochre-deep);
  color: var(--ochre-deep);
  transform: translateY(-2px);
}

/* ================= SLIDER ================= */
.fr-slider {
  margin-top: 48px;
  position: relative;
  width: 100%;
}

.fr-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
}

.fr-slider-track {
  display: flex;
  transition: transform .6s var(--ease);
  will-change: transform;
  width: 100%;
}

.fr-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/8;
  flex: 0 0 100%;
  width: 100%;


}

.fr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fr-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(11, 60, 73, .88));
  font-size: .92rem;
  font-weight: 500;
}

.fr-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(22, 38, 42, .18);
  background: rgba(255, 255, 255, .6);

  backdrop-filter: blur(6px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.fr-slider-nav:hover {
  background: var(--relief-amber);
  color: var(--water-deep);
  border-color: var(--relief-amber);
  transform: translateY(-50%) scale(1.08);
}

.fr-slider-nav--prev {
  left: 14px;
}

.fr-slider-nav--next {
  right: 14px;
}

.fr-slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.fr-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(22, 38, 42, .22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.fr-dot.is-active {
  background: var(--ochre-deep);
  transform: scale(1.25);
}

/* ================= MODAL / GLASSMORPHISM ================= */
.fr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 32, 54, .58);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.fr-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fr-glass {
  background: rgba(246, 239, 227, 0.16);
  border: 1px solid rgba(246, 239, 227, 0.35);
  box-shadow: 0 20px 60px rgba(6, 30, 37, 0.45);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-lg);
  color: var(--parchment);
  max-width: 560px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  transform: translateY(18px) scale(.97);
  transition: transform .35s var(--ease);
  max-height: 84vh;
  overflow-y: auto;
}

.fr-modal-overlay.is-open .fr-glass {
  transform: translateY(0) scale(1);
}

.fr-modal-wide {
  max-width: 780px;
}

.fr-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(246, 239, 227, .4);
  background: rgba(11, 60, 73, .3);
  color: var(--parchment);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}

.fr-modal-close:hover {
  background: var(--relief-amber);
  color: var(--water-deep);
  border-color: transparent;
}

.fr-modal h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 6px;
  padding-right: 30px;
}

.fr-modal-meta {
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--relief-amber);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, cursive;
  color: white;
}



.fr-modal-meta p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 20px;
}

.model_p {
  font-size: .98rem;
  line-height: 1.75;
  color: rgba(246, 239, 227, .92);
  margin: 0 0 14px;
  text-align: justify;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fr-modal ul {
  margin: 0 0 6px;
  padding-left: 20px;
}

.fr-modal li {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(246, 239, 227, .92);
  margin-bottom: 6px;
}

/* ================= THUMBNAIL GRID ================= */
.fr-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.fr-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid rgba(246, 239, 227, .25);
}

.fr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}

.fr-thumb:hover img {
  transform: scale(1.08);
}

.fr-thumb::after {
  content: "⤢";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11, 60, 73, .55);
  color: var(--parchment);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s var(--ease);
}

.fr-thumb:hover::after {
  opacity: 1;
}

/* ================= LIGHTBOX ================= */
.fr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 25, 0.92);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}

.fr-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fr-lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: scale(.96);
  transition: transform .3s var(--ease);
}

.fr-lightbox.is-open img {
  transform: scale(1);
}

.fr-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 239, 227, .4);
  background: rgba(246, 239, 227, .08);
  color: var(--parchment);
  font-size: 20px;
  cursor: pointer;
}

.fr-lightbox-close:hover {
  background: var(--relief-amber);
  color: var(--water-deep);
  border-color: transparent;
}

@media (max-width:640px) {
  .fr-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fr-glass {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
  }
}