@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ib-ink: #0f172a;
  --ib-ink-soft: #1e293b;
  --ib-paper: #f8fafc;
  --ib-white: #ffffff;
  --ib-line: #e2e8f0;
  --ib-muted: #64748b;
  --ib-accent: #0369a1;
  --ib-accent-deep: #0c4a6e;
  --ib-accent-soft: #e0f2fe;
  --ib-dark: #0b1420;
  --ib-serif: "Cormorant Garamond", Georgia, serif;
  --ib-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: clip;
}
body {
  font-family: var(--ib-sans);
  background: var(--ib-paper);
  color: var(--ib-ink);
}
h1,
h2,
h3,
.ib-serif {
  font-family: var(--ib-serif);
}

.ib-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px) {
  .ib-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.ib-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ib-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ib-accent);
}
.ib-overline::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ib-overline--center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ib-overline--light {
  color: #7dd3fc;
}

.ib-h-display {
  font-family: var(--ib-serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 7vw, 3rem);
  margin-top:50px  
}
.ib-h-1 {
  font-family: var(--ib-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}
.ib-h-2 {
  font-family: var(--ib-serif);
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.ib-h-3 {
  font-family: var(--ib-serif);
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}
.ib-lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--ib-muted);
}
.ib-lead--light {
  color: #cbd5e1;
}

.ib-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ib-ink);
  background: var(--ib-ink);
  color: #fff;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.ib-btn:hover {
  background: var(--ib-accent-deep);
  border-color: var(--ib-accent-deep);
  transform: translateY(-2px);
}
.ib-btn i {
  transition: transform 0.35s;
}
.ib-btn:hover i {
  transform: translateX(4px);
}
.ib-btn--ghost {
  background: transparent;
  color: var(--ib-ink);
}
.ib-btn--ghost:hover {
  background: var(--ib-ink);
  color: #fff;
}
.ib-btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--ib-ink);
}
.ib-btn--light:hover {
  background: var(--ib-accent);
  border-color: var(--ib-accent);
  color: #fff;
}
.ib-btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.ib-btn--outline-light:hover {
  background: #fff;
  color: var(--ib-ink);
  border-color: #fff;
}
.ib-btn--accent {
  background: var(--ib-accent);
  border-color: var(--ib-accent);
}
.ib-btn--accent:hover {
  background: var(--ib-accent-deep);
  border-color: var(--ib-accent-deep);
}

.ib-link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ib-accent);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.3rem;
}
.ib-link-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.4s;
}
.ib-link-line:hover::after {
  transform: scaleX(0.4);
}

.ib-card {
  background: #fff;
  border: 1px solid var(--ib-line);
}
.ib-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--ib-line);
  color: var(--ib-ink-soft);
  background: #fff;
}
.ib-chip i {
  color: var(--ib-accent);
}
.ib-chip--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e2e8f0;
}
.ib-chip--dark i {
  color: #7dd3fc;
}

.ib-num {
  font-family: var(--ib-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--ib-ink);
}
.ib-hr {
  height: 1px;
  background: var(--ib-line);
  border: 0;
}

.ib-frame {
  position: relative;
}
.ib-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  border: 1px solid var(--ib-accent);
  z-index: -1;
  pointer-events: none;
}
.ib-frame--light::after {
  border-color: rgba(255, 255, 255, 0.35);
}

.ib-img-zoom {
  overflow: hidden;
}
.ib-img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.ib-img-zoom:hover img {
  transform: scale(1.06);
}

/* ---------- Header ---------- */
.ironbarklodge-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ib-line);
  transition: box-shadow 0.3s;
}
.ironbarklodge-header.is-scrolled {
  box-shadow: 0 12px 40px -18px rgba(15, 23, 42, 0.25);
}
.ib-topbar {
  background: var(--ib-ink);
  color: #cbd5e1;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.ib-topbar .ib-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.ib-topbar a {
  color: #cbd5e1;
  text-decoration: none;
}
.ib-topbar a:hover {
  color: #fff;
}
.ib-topbar i {
  color: #7dd3fc;
  margin-right: 0.45rem;
}
.ib-topbar .ib-socials a {
  margin-left: 0.9rem;
}
.ib-topbar .ib-socials a i {
  margin-right: 0;
  color: inherit;
}
.ib-topbar .ib-socials a:hover {
  color: #7dd3fc;
}
.ib-topbar-hours {
  margin-right: 1.4rem;
}
.ib-mainbar .ib-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ironbarklodge-logo img {
  display: block;
  width: 118px;
  height: auto;
}
.ironbarklodge-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ironbarklodge-nav a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ib-ink-soft);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
}
.ironbarklodge-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ib-accent);
  transition: width 0.35s;
}
.ironbarklodge-nav a:hover {
  color: var(--ib-accent);
}
.ironbarklodge-nav a:hover::after {
  width: 100%;
}
.ironbarklodge-contacts {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ib-ink-soft);
}
.ironbarklodge-contacts i {
  color: var(--ib-accent);
  margin-right: 0.35rem;
}
.ironbarklodge-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--ib-line);
  cursor: pointer;
  color: var(--ib-ink);
  background: #fff;
}
.ironbarklodge-burger:hover {
  border-color: var(--ib-accent);
  color: var(--ib-accent);
}
.ironbarklodge-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--ib-ink);
  color: #e2e8f0;
  padding: 6rem 1.75rem 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.ironbarklodge-mobile-menu.is-open {
  transform: translateY(0);
}
.ironbarklodge-mobile-menu .ib-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  background: transparent;
}
.ironbarklodge-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ironbarklodge-mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--ib-serif);
  font-size: 1.9rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ironbarklodge-mobile-nav a:hover {
  color: #7dd3fc;
}
.ironbarklodge-mobile-contacts {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}
.ironbarklodge-mobile-contacts i {
  color: #7dd3fc;
  margin-right: 0.6rem;
  width: 1.1rem;
}
.ironbarklodge-mobile-contacts a {
  color: #cbd5e1;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .ironbarklodge-nav {
    display: none;
  }
  .ironbarklodge-contacts {
    display: none;
  }
  .ironbarklodge-burger {
    display: flex;
  }
}
@media (max-width: 760px) {
  .ib-topbar .ib-topbar-right {
    display: none;
  }
}

/* ---------- Hero slider ---------- */
.ib-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--ib-dark);
  color: #fff;
  overflow: hidden;
}
.ib-hero--short {
  min-height: 72svh;
}
.ib-hero--mini {
  min-height: 58svh;
}
.ib-hero__slides {
  position: absolute;
  inset: 0;
}
.ib-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s ease,
    visibility 1.1s;
}
.ib-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.ib-hero__inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
}
.ib-hero__panel {
  max-width: 46rem;
}
.ib-hero__geo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bae6fd;
  margin-bottom: 1.4rem;
}
.ib-hero__geo i {
  color: #7dd3fc;
}
.ib-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.ib-hero__card {
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  bottom: 9rem;
  z-index: 6;
  width: min(320px, 78vw);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem;
}
.ib-hero__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ib-hero__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ib-hero__card-body {
  padding: 1rem 0.4rem 0.4rem;
}
.ib-hero__card-price {
  font-family: var(--ib-serif);
  font-size: 1.5rem;
  color: #fff;
}
.ib-hero__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.4rem;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.ib-hero__dots {
  display: flex;
  gap: 0.55rem;
  pointer-events: auto;
}
.ib-hero__dot {
  width: 2.4rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.ib-hero__dot.is-active {
  background: #fff;
}
.ib-hero__arrows {
  display: flex;
  gap: 0.6rem;
  pointer-events: auto;
}
.ib-hero__arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.ib-hero__arrow:hover {
  background: #fff;
  color: var(--ib-ink);
}
.ib-hero__bar {
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 20, 32, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ib-hero__bar .ib-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
}
.ib-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  font-size: 0.8rem;
  color: #cbd5e1;
}
.ib-hero__stat i {
  font-size: 1.05rem;
  color: #7dd3fc;
}
.ib-hero__stat strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .ib-hero,
  .ib-hero--short,
  .ib-hero--mini {
    min-height: 0;
  }
  .ib-hero__slides {
    position: relative;
    height: 76svh;
    min-height: 30rem;
    order: 0;
  }
  .ib-hero--short .ib-hero__slides {
    height: 58svh;
    min-height: 24rem;
  }
  .ib-hero--mini .ib-hero__slides {
    height: 46svh;
    min-height: 19rem;
  }
  .ib-hero__inner {
    align-items: flex-end;
    padding-top: 3.5rem;
    padding-bottom: 2.4rem;
  }
  .ib-h-display {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }
  .ib-hero__nav {
    position: relative;
    bottom: auto;
    order: 1;
    pointer-events: auto;
    padding: 0.9rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ib-dark);
  }
  .ib-hero__nav .ib-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .ib-hero__card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 6;
    width: auto;
    order: 2;
    margin: 0;
    border-right: 0;
    border-left: 0;
    background: rgba(255, 255, 255, 0.07);
  }
  .ib-hero__card-img {
    aspect-ratio: 16/9;
  }
  .ib-hero__bar {
    order: 3;
  }
  .ib-hero__bar .ib-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1rem;
    overflow-x: visible;
  }
  .ib-hero__stat {
    white-space: normal;
  }
}

/* ---------- Booking bar ---------- */
.ib-booking {
  position: relative;
  z-index: 20;
  margin-top: -3.4rem;
}
.ib-booking__panel {
  background: #fff;
  border: 1px solid var(--ib-line);
  box-shadow: 0 30px 70px -30px rgba(15, 23, 42, 0.35);
}
.ib-booking__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ib-booking__cell {
  padding: 1.4rem 1.6rem;
  border-right: 1px solid var(--ib-line);
}
.ib-booking__cell:last-child {
  border-right: 0;
}
.ib-booking__cell label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ib-muted);
  margin-bottom: 0.55rem;
}
.ib-booking__cell label i {
  color: var(--ib-accent);
}
.ib-booking__cell input,
.ib-booking__cell select {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--ib-serif);
  font-size: 1.25rem;
  color: var(--ib-ink);
  outline: none;
}
.ib-booking__cell--cta {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.ib-booking__cell--on-dark {
  border-right: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.1rem 1.3rem;
}
.ib-booking__cell--on-dark label {
  color: #7dd3fc;
}
.ib-booking__cell--on-dark input,
.ib-booking__cell--on-dark select {
  color: #fff;
}
.ib-booking__cell--on-dark select option {
  color: var(--ib-ink);
}
.ib-booking__cell--cta .ib-btn {
  width: 100%;
  border: 0;
}
.ib-booking__ticker {
  border-top: 1px solid var(--ib-line);
  padding: 0.7rem 0;
  overflow: hidden;
}
@media (max-width: 900px) {
  .ib-booking__grid {
    grid-template-columns: 1fr;
  }
  .ib-booking__cell {
    border-right: 0;
    border-bottom: 1px solid var(--ib-line);
  }
}

.ib-marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ib-marquee 26s linear infinite;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ib-muted);
}
.ib-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.ib-marquee i {
  color: var(--ib-accent);
}
@keyframes ib-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Horizontal suites accordion ---------- */
.ib-suites {
  display: flex;
  gap: 0.5rem;
  height: 560px;
}
.ib-suite {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
  color: #fff;
}
.ib-suite.is-active {
  flex: 4.2;
}
.ib-suite__bg {
  position: absolute;
  inset: 0;
}
.ib-suite__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ib-serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ib-suite__label small {
  font-family: var(--ib-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
}
.ib-suite__body {
  position: absolute;
  inset: 0;
  padding: clamp(1.4rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s 0.15s,
    transform 0.55s 0.15s;
}
.ib-suite.is-active .ib-suite__body {
  opacity: 1;
  transform: none;
}
.ib-suite.is-active .ib-suite__label {
  opacity: 0;
}
.ib-suite__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 1.1rem 0 1.4rem;
  font-size: 0.82rem;
  color: #e2e8f0;
}
.ib-suite__specs i {
  color: #7dd3fc;
  margin-right: 0.45rem;
}
@media (max-width: 900px) {
  .ib-suites {
    flex-direction: column;
    height: auto;
  }
  .ib-suite {
    min-height: 120px;
  }
  .ib-suite.is-active {
    min-height: 460px;
  }
  .ib-suite__label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* ---------- FAQ / accordion ---------- */
.accordion-item {
  border-bottom: 1px solid var(--ib-line);
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0.2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ib-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ib-ink);
}
.accordion-button .acc-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ib-line);
  font-size: 0.75rem;
  color: var(--ib-accent);
  transition: all 0.35s;
}
.accordion-item.is-open .acc-ico {
  background: var(--ib-accent);
  border-color: var(--ib-accent);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-body > div {
  padding: 0 0.2rem 1.5rem;
  color: var(--ib-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 60rem;
}
.accordion-item.is-open .accordion-button {
  color: var(--ib-accent-deep);
}
.ib-faq-dark .accordion-item {
  border-color: rgba(255, 255, 255, 0.14);
}
.ib-faq-dark .accordion-button {
  color: #fff;
}
.ib-faq-dark .accordion-button .acc-ico {
  border-color: rgba(255, 255, 255, 0.25);
  color: #7dd3fc;
}
.ib-faq-dark .accordion-body > div {
  color: #94a3b8;
}

/* ---------- Tabs / switchers ---------- */
.ib-switch {
  display: inline-flex;
  border: 1px solid var(--ib-line);
  background: #fff;
  padding: 0.3rem;
  gap: 0.3rem;
}
.ib-switch button {
  border: 0;
  background: transparent;
  padding: 0.7rem 1.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ib-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.ib-switch button.is-active {
  background: var(--ib-ink);
  color: #fff;
}
.ib-switch--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.ib-switch--dark button {
  color: #94a3b8;
}
.ib-switch--dark button.is-active {
  background: #fff;
  color: var(--ib-ink);
}
.ib-tabpane {
  display: none;
}
.ib-tabpane.is-active {
  display: block;
  animation: ib-fadein 0.6s ease;
}
@keyframes ib-fadein {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 640px) {
  .ib-switch {
    display: flex;
    width: 100%;
  }
  .ib-switch button {
    flex: 1;
    justify-content: center;
    padding: 0.7rem 0.5rem;
  }
}

/* ---------- Timeline / stepper ---------- */
.ib-timeline {
  position: relative;
  padding-left: 2rem;
}
.ib-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--ib-line);
}
.ib-timeline__item {
  position: relative;
  padding-bottom: 1.8rem;
}
.ib-timeline__item::before {
  content: "";
  position: absolute;
  left: -1.72rem;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  background: #fff;
  border: 2px solid var(--ib-accent);
  border-radius: 50%;
}
.ib-timeline__item:last-child {
  padding-bottom: 0;
}
.ib-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.ib-step {
  position: relative;
  padding: 2.2rem 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: step;
}
.ib-step::before {
  content: "0" counter(step);
  font-family: var(--ib-serif);
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .ib-steps {
    grid-template-columns: 1fr;
  }
  .ib-step {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* ---------- Comparison table ---------- */
.ib-compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.ib-compare th,
.ib-compare td {
  border: 1px solid var(--ib-line);
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.9rem;
}
.ib-compare thead th {
  background: var(--ib-ink);
  color: #fff;
  font-family: var(--ib-serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.ib-compare thead .ib-cmp-head {
  padding: 0;
}
.ib-compare tbody th {
  font-weight: 600;
  color: var(--ib-ink-soft);
  background: var(--ib-paper);
}
.ib-compare .fa-check {
  color: var(--ib-accent);
}
.ib-compare .fa-minus {
  color: #cbd5e1;
}
.ib-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- Polaroid / misc ---------- */
.ib-polaroid {
  background: #fff;
  padding: 0.7rem 0.7rem 2.4rem;
  box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.35);
  transform: rotate(-2.5deg);
  transition: transform 0.45s;
}
.ib-polaroid:nth-child(2n) {
  transform: rotate(2deg);
}
.ib-polaroid:hover {
  transform: rotate(0) scale(1.03);
  z-index: 2;
}
.ib-polaroid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.ib-beforeafter {
  position: relative;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.ib-beforeafter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ib-ba__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}
.ib-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  cursor: ew-resize;
  z-index: 5;
}
.ib-ba__handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: #fff;
  color: var(--ib-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ---------- Forms ---------- */
.ib-field {
  display: block;
  margin-bottom: 1.3rem;
}
.ib-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ib-muted);
  margin-bottom: 0.5rem;
}
.ib-field input,
.ib-field select,
.ib-field textarea {
  width: 100%;
  border: 1px solid var(--ib-line);
  background: #fff;
  padding: 0.95rem 1.1rem;
  font-family: var(--ib-sans);
  font-size: 0.95rem;
  color: var(--ib-ink);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.ib-field input:focus,
.ib-field select:focus,
.ib-field textarea:focus {
  border-color: var(--ib-accent);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
}
.ib-field.has-error input,
.ib-field.has-error select,
.ib-field.has-error textarea {
  border-color: #dc2626;
}
.ib-field .ib-err {
  display: none;
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.4rem;
}
.ib-field.has-error .ib-err {
  display: block;
}
.ib-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.ib-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--ib-muted);
  line-height: 1.6;
}
.ib-check input {
  margin-top: 0.25rem;
  accent-color: var(--ib-accent);
  width: 1rem;
  height: 1rem;
}
.ib-check a {
  color: var(--ib-accent);
  text-decoration: underline;
}
.ib-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ib-spin 0.7s linear infinite;
  display: none;
}
.ib-btn.is-loading .ib-spinner {
  display: inline-block;
}
.ib-btn.is-loading .ib-btn-label,
.ib-btn.is-loading > i:not(.ib-spinner) {
  display: none;
}
@keyframes ib-spin {
  to {
    transform: rotate(360deg);
  }
}
.ib-formsteps {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.ib-formsteps span {
  height: 3px;
  flex: 1;
  background: var(--ib-line);
}
.ib-formsteps span.is-done {
  background: var(--ib-accent);
}

.ib-toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 3000;
  background: var(--ib-ink);
  color: #fff;
  padding: 1rem 1.6rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.5);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(92vw, 34rem);
}
.ib-toast.is-visible {
  transform: translate(-50%, 0);
}
.ib-toast i {
  color: #7dd3fc;
}
.ib-toast--error i {
  color: #fca5a5;
}

/* ---------- Cookie banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2500;
  display: none;
  width: min(430px, calc(100vw - 2.8rem));
  background: #fff;
  border: 1px solid var(--ib-line);
  box-shadow: 0 30px 80px -25px rgba(15, 23, 42, 0.4);
  padding: 1.6rem;
}
#cookie-banner.is-visible {
  display: block;
  animation: ib-fadein 0.6s ease;
}
#cookie-banner .ck-title {
  font-family: var(--ib-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--ib-ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#cookie-banner .ck-title i {
  color: var(--ib-accent);
  font-size: 1rem;
}
#cookie-banner p {
  margin: 0 0 1.2rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ib-muted);
}
#cookie-banner .ck-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
#cookie-banner .ck-actions .ib-btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.7rem;
  flex: 1;
}

/* ---------- Footer ---------- */
.ironbarklodge-footer {
  background: var(--ib-dark);
  color: #94a3b8;
}
.ib-footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ib-footer__top .ib-wrap {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.ib-footer__logo-img {
  width: 130px;
  height: auto;
  display: block;
}
.ib-footer__brand {
  font-family: var(--ib-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ib-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.ib-footer__col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.3rem;
}
.ib-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.ib-footer__col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.ib-footer__col a:hover {
  color: #7dd3fc;
}
.ib-footer__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 1.1rem 0 1.5rem;
}
.ib-footer__social {
  display: flex;
  gap: 0.7rem;
}
.ib-footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
}
.ib-footer__social a:hover {
  background: var(--ib-accent);
  border-color: var(--ib-accent);
  color: #fff;
}
.ib-footer__contact {
  display: grid;
  gap: 0.9rem;
  font-size: 0.88rem;
}
.ib-footer__contact i {
  color: #7dd3fc;
  margin-right: 0.6rem;
  width: 1rem;
}
.ib-footer__contact a {
  color: #94a3b8;
  text-decoration: none;
}
.ib-footer__contact a:hover {
  color: #fff;
}
.ib-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  font-size: 0.75rem;
  line-height: 1.8;
}
.ib-footer__meta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.ib-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.75rem;
}
.ib-footer__legal a {
  color: #64748b;
  text-decoration: none;
  margin-left: 1.4rem;
}
.ib-footer__legal a:hover {
  color: #7dd3fc;
}
@media (max-width: 980px) {
  .ib-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .ib-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ib-footer__legal a {
    margin: 0 1.4rem 0 0;
  }
}

/* ---------- Utility ---------- */
.ib-dark {
  background: var(--ib-dark);
  color: #e2e8f0;
}
.ib-dark h1,
.ib-dark h2,
.ib-dark h3 {
  color: #fff;
}
.ib-section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}
.ib-section--tight {
  padding: clamp(2.8rem, 5vw, 4.5rem) 0;
}
.ib-divider-num {
  font-family: var(--ib-serif);
  font-size: 0.95rem;
  color: var(--ib-accent);
  letter-spacing: 0.2em;
}
.ib-quote {
  font-family: var(--ib-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-style: italic;
}
.ib-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ib-line);
  border: 1px solid var(--ib-line);
}
.ib-stat-grid > div {
  background: #fff;
  padding: 1.8rem 1.4rem;
}
.ib-dark .ib-stat-grid {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}
.ib-dark .ib-stat-grid > div {
  background: var(--ib-dark);
}
.ib-dark .ib-num {
  color: #fff;
}
@media (max-width: 800px) {
  .ib-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  html,body{max-width:100%; overflow-x:hidden}
}

.ib-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ib-scroll-cue i {
  animation: ib-cue 1.8s ease infinite;
}
@keyframes ib-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ib-paper);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ib-accent);
}
