@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── DANMARK THEME ── */
:root {
  --accent:       #1ab878;
  --accent-lt:    #2ed48a;
  --accent-dim:   rgba(26, 184, 120, 0.12);
  --dark-1:       #0a0e0b;
  --dark-2:       #0e1410;
  --dark-3:       #131c15;
  --light-bg:     #f4f9f6;
  --text-primary: #eef4f0;
  --text-muted:   rgba(238, 244, 240, 0.6);
  --text-dim:     rgba(238, 244, 240, 0.35);
  --border:       rgba(26, 184, 120, 0.1);
  --border-light: rgba(26, 184, 120, 0.07);
  --radius-sm:    3px;
  --radius:       10px;
  --radius-lg:    12px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--dark-1);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
em { font-style: italic; color: var(--accent); }
p { line-height: 1.8; font-weight: 300; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 66px;
  background: rgba(10, 14, 11, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo .dot { color: var(--accent); }
.nav-logo .sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.35;
  margin-left: 4px;
  vertical-align: baseline;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 1;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 8px 22px;
  border: 0.5px solid rgba(26, 184, 120, 0.5);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: var(--dark-1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--dark-1);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,11,0.85) 0%, rgba(10,14,11,0.45) 40%, rgba(10,14,11,0.05) 100%);
}
.om-os-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-1) 0%, transparent 20%, transparent 55%, var(--dark-1) 100%);
  z-index: 1;
  pointer-events: none;
}
.om-os-photo::after {
  background: rgba(10,14,11,0.15);
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 184, 120, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 184, 120, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 52px 100px;
  max-width: 680px;
}

/* ── SECTION WITH PHOTO BACKGROUND ── */
.has-photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.has-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,14,11,0.45);
  z-index: 0;
}
.has-photo-bg > * {
  position: relative;
  z-index: 1;
}
.has-photo-bg > .hero-glow,
.has-photo-bg > .hero-glow-2 { position: absolute; }

/* ── CONTENT IMAGE ── */
.content-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.content-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* ── TEAM PHOTOS ── */
.team-photo-real {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}

/* ── EYEBROW ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.75;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(54px, 7vw, 84px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.65;
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 34px;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 0.5px solid rgba(26, 184, 120, 0.55);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--dark-1); border-color: var(--accent); }

/* ── STATS ── */
.stats {
  display: flex;
  gap: 36px;
  padding-top: 26px;
  border-top: 0.5px solid var(--border-light);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-num .accent { color: var(--accent); }
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.38;
  margin-top: 3px;
}

/* ── PILLARS STRIP ── */
/* ── SERVICE TAGS ── */
.section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
  justify-content: center;
}
.section-tag {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0.6;
  background: var(--accent-dim);
  border: 1px solid rgba(26,184,120,0.15);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── SECTIONS ── */
.section { padding: 88px 52px; }
.section-dark { background: var(--dark-1); }
.section-dark2 { background: var(--dark-2); }
.section-light { background: var(--light-bg); }

.section-header { max-width: 560px; margin-bottom: 52px; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 0.5px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.section-eyebrow.dark-text { color: #0e6644; opacity: 1; }
.section-eyebrow.dark-text::before { background: #0e6644; }

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-light .section-title { color: #07180d; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  opacity: 0.65;
}
.section-light .section-sub { color: #0f2a1a; opacity: 1; font-weight: 400; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card {
  background: var(--dark-2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.card:hover { background: var(--dark-3); }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 16px;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-primary);
  opacity: 0.62;
}
.card-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 9px;
  border: 0.5px solid rgba(26, 184, 120, 0.3);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: gap 0.2s;
}
.card-link:hover { gap: 9px; }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(26, 184, 120, 0.1);
  transition: transform 0.2s;
}
.why-item:hover { transform: translateY(-2px); }
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #07180d;
}
.why-item p { font-size: 13px; color: #0f2a1a; line-height: 1.65; font-weight: 400; }

/* ── REVIEW GRID ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-2px); }
.review-stars { font-size: 12px; color: #1ab878; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 13px; line-height: 1.7; color: #0f2a1a; margin-bottom: 14px; font-weight: 400; }
.review-author { font-size: 12px; font-weight: 600; color: #07180d; }

/* ── CLUB STRIP ── */
.club-strip {
  background: linear-gradient(135deg, #071510 0%, #0a1e12 100%);
  padding: 72px 52px;
  border-top: 1px solid rgba(26,184,120,0.1);
  border-bottom: 1px solid rgba(26,184,120,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.club-strip h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.club-strip p {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.55;
  line-height: 1.8;
  max-width: 520px;
}
.club-strip-badge {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 10px;
  opacity: 0.7;
}

/* ── PARTNERS CAROUSEL ── */
.partners-section {
  padding: 52px 0;
  background: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.partners-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.partners-section-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f2a1a;
  opacity: 0.38;
}
.partners-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.partners-carousel-wrap::before,
.partners-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}
.partners-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}
.partners-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: partnerScroll 38s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  opacity: 0.75;
  transition: opacity 0.3s;
  height: 72px;
  text-decoration: none;
  cursor: pointer;
}
.partner-logo img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.partner-logo:hover {
  opacity: 1;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 28px; }
.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary); opacity: 0.35; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; color: var(--text-primary); }
.contact-info-value a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.5;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-primary); opacity: 0.28; }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 13px;
  border: 0.5px solid rgba(26, 184, 120, 0.55);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--accent); color: var(--dark-1); }

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  padding: 52px 52px 32px;
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.footer-brand .dot { color: var(--accent); }
.footer-desc { font-size: 13px; color: var(--text-primary); opacity: 0.38; line-height: 1.7; margin-bottom: 8px; }
.footer-cvr { font-size: 11px; color: var(--text-primary); opacity: 0.22; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.4;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--text-primary); opacity: 0.38; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 0.8; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.24;
}

/* ── HAMBURGER ANIMATION ── */
.nav-toggle span { transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SUBPAGE HERO ── */
.subpage-hero {
  position: relative;
  padding: 120px 52px 80px;
  background: var(--dark-1);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.subpage-hero .hero-glow { top: -30%; right: -10%; }
.subpage-hero-content { position: relative; z-index: 2; max-width: 680px; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  opacity: 0.35;
  margin-bottom: 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.breadcrumb:hover { opacity: 0.7; }
.subpage-h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.05;
}
.subpage-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.6;
  line-height: 1.85;
  max-width: 520px;
}

/* ── CONTENT GRID ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.content-block h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-light .content-block h3 { color: #07180d; }
.content-block p {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.65;
  margin-bottom: 14px;
}
.section-light .content-block p { color: #0f2a1a; opacity: 1; font-weight: 400; }

/* ── INCLUDE LIST ── */
.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.5;
}
.section-light .include-list li { color: #07180d; opacity: 1; font-weight: 400; }
.include-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 600;
}

/* ── CONTENT QUOTE ── */
.content-quote {
  margin: 48px 0;
  padding: 32px 36px;
  border-left: 2px solid var(--accent);
  background: var(--dark-3);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.content-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 14px;
}
.content-quote cite {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.7;
  text-transform: uppercase;
  font-style: normal;
}
.section-light .content-quote { background: #e8f5ee; }
.section-light .content-quote blockquote { color: #0a1e12; }

/* ── CTA BOX ── */
.cta-box {
  margin-top: 52px;
  padding: 40px 44px;
  background: linear-gradient(135deg, #071510 0%, #0a1e12 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 184, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-box h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cta-box p {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.5;
  line-height: 1.7;
}

/* ── LEGAL SECTIONS ── */
.legal-section { max-width: 720px; }
.legal-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.legal-section h2:first-child { margin-top: 0; border-top: none; }
.legal-section p {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.65;
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 20px 0;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.65;
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ── ABOUT / TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.team-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-3px); }
.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-3) 0%, #0e1a11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
}
.team-info { padding: 24px 28px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.55;
  line-height: 1.7;
}

/* ── SOCIAL LINKS (footer) ── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 0.5px solid rgba(26, 184, 120, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.38;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}
.social-icon:hover { opacity: 0.9; border-color: var(--accent); background: var(--accent-dim); }
.social-icon svg { width: 15px; height: 15px; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--dark-1);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    z-index: 99;
    animation: navSlideDown 0.28s ease forwards;
  }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 100px 24px 64px; max-width: 100%; }
  .hero-h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-photo img { object-position: 65% center; }
  .hero-photo::after {
    background: linear-gradient(to right,
      rgba(10,14,11,0.88) 0%,
      rgba(10,14,11,0.65) 45%,
      rgba(10,14,11,0.15) 100%
    );
  }
  .stats { gap: 24px; flex-wrap: wrap; }

  /* Sections */
  .section { padding: 56px 24px; }
  .section-header { max-width: 100%; margin-bottom: 36px; }
  .section-title { font-size: clamp(26px, 8vw, 40px); }

  /* Grids */
  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 28px; }

  /* Content elements */
  .content-quote { padding: 24px 22px; margin: 32px 0; }
  .cta-box { padding: 28px 24px; flex-direction: column; align-items: flex-start; }

  /* Club strip */
  .club-strip { flex-direction: column; padding: 48px 24px; gap: 28px; }
  .club-strip .btn-outline { align-self: flex-start; }

  /* Partners */
  .partners { flex-direction: column; align-items: flex-start; padding: 24px; }

  /* Subpage hero */
  .subpage-hero { padding: 90px 24px 52px; }
  .subpage-h1 { font-size: clamp(32px, 9vw, 52px); }
  .subpage-lead { max-width: 100%; font-size: 14px; }

  /* Footer */
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Legal */
  .legal-section { max-width: 100%; }
}

/* ── SMALL PHONES ── */
@media (max-width: 480px) {
  .hero { min-height: 92vh; }
  .hero-content { padding: 88px 20px 56px; }
  .hero-h1 { font-size: clamp(32px, 11vw, 44px); }
  .hero-sub { font-size: 13px; }
  .stats { gap: 18px; }
  .stat-num { font-size: 18px; }

  .section { padding: 48px 20px; }
  .section-title { font-size: clamp(24px, 9vw, 34px); }
  .section-sub { font-size: 14px; }

  .subpage-hero { padding: 80px 20px 44px; }
  .subpage-h1 { font-size: clamp(28px, 10vw, 40px); }

  .card { padding: 24px 20px; }
  .cta-box { padding: 24px 20px; }
  .content-quote { padding: 20px 18px; }

  footer { padding: 40px 20px 24px; }
  .contact-grid { gap: 28px; }
}

body.calendly-open {
  overflow: hidden !important;
}

.calendly-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 18px;
  background:
    radial-gradient(
      circle at 25% 0%,
      rgba(26, 184, 120, 0.12),
      transparent 34%
    ),
    #07100b;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.calendly-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.calendly-overlay-top {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 0 0 12px;
  display: flex;
  justify-content: flex-end;
}

.calendly-close {
  min-width: 80px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.calendly-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(26, 184, 120, 0.45);
}

.calendly-overlay-inner {
  width: min(1380px, 100%);
  height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.calendly-overlay-copy {
  min-width: 0;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(26, 184, 120, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(26, 184, 120, 0.12),
      transparent 38%
    ),
    linear-gradient(
      160deg,
      #0d2016 0%,
      #09110d 72%
    );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calendly-overlay-copy h2 {
  max-width: 100%;
  margin: 0;
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  word-break: normal;
}

.calendly-overlay-copy p {
  max-width: 340px;
  margin: 24px 0 0;
  color: rgba(238, 244, 240, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.calendly-overlay-trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  color: rgba(238, 244, 240, 0.62);
  font-size: 13px;
  font-weight: 500;
}

.calendly-overlay-trust span:nth-child(2) {
  color: var(--accent);
  letter-spacing: 2px;
}

.calendly-overlay-trust span:nth-child(3) {
  grid-column: 1 / -1;
}

.calendly-frame-wrap {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 184, 120, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.calendly-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
  background: #ffffff;
}

@media (max-width: 1000px) {
  .calendly-overlay {
    padding: 12px;
    overflow-y: auto;
  }

  .calendly-overlay-top {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-bottom: 10px;
  }

  .calendly-overlay-inner {
    height: auto;
    min-height: calc(100vh - 70px);
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .calendly-overlay-copy {
    padding: 30px 26px;
    border-radius: 22px;
  }

  .calendly-overlay-copy h2 {
    font-size: clamp(38px, 9vw, 54px);
  }

  .calendly-overlay-copy p {
    max-width: 520px;
    margin-top: 20px;
  }

  .calendly-frame-wrap {
    min-height: 720px;
    border-radius: 22px;
  }

  .calendly-frame-wrap iframe {
    min-height: 720px;
  }
}

@media (max-width: 600px) {
  .calendly-overlay {
    padding: 8px;
  }

  .calendly-overlay-copy {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .calendly-overlay-copy h2 {
    font-size: 40px;
  }

  .calendly-overlay-copy p {
    font-size: 15px;
  }

  .calendly-frame-wrap {
    border-radius: 18px;
  }
}

.calendly-overlay-inner {
  grid-template-columns: 460px minmax(0, 900px);
  justify-content: center;
}

.calendly-overlay-copy h2 {
  font-size: clamp(48px, 4vw, 68px);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.calendly-frame-wrap {
  width: 100%;
  max-width: 900px;
  justify-self: center;
}

@media (max-width: 1000px) {
  .calendly-overlay-inner {
    grid-template-columns: 1fr;
  }

  .calendly-frame-wrap {
    max-width: 100%;
  }

  .calendly-overlay-copy h2 {
    font-size: 46px;
  }
}

/* NY LYSERE FARVEPALET */

:root {
  --accent: #46d99b;
  --accent-lt: #6be8b3;
  --accent-dim: rgba(70, 217, 155, 0.14);

  --dark-1: #13231a;
  --dark-2: #192d22;
  --dark-3: #223b2d;

  --light-bg: #f6f3eb;

  --text-primary: #fbfdfb;
  --text-muted: rgba(251, 253, 251, 0.82);
  --text-dim: rgba(251, 253, 251, 0.62);

  --border: rgba(70, 217, 155, 0.24);
  --border-light: rgba(255, 255, 255, 0.12);
}

/* SIDE OG NAVIGATION */

body {
  background: var(--dark-1);
}

nav {
  background: rgba(19, 35, 26, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-links a {
  color: #ffffff;
  opacity: 0.92;
}

/* HERO */

.hero {
  background: var(--dark-1);
}

.hero-photo::after {
  background: linear-gradient(
    to right,
    rgba(19, 35, 26, 0.96) 0%,
    rgba(19, 35, 26, 0.78) 38%,
    rgba(19, 35, 26, 0.28) 72%,
    rgba(19, 35, 26, 0.08) 100%
  );
}

.hero-h1,
.subpage-h1,
.section-title,
.content-block h3,
.cta-box h3,
.club-strip h2 {
  color: #ffffff;
}

.hero-sub,
.subpage-lead,
.section-sub,
.content-block p,
.cta-box p,
.club-strip p {
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
}

/* MØRKE SEKTIONER */

.section-dark {
  background: #13231a;
}

.section-dark2 {
  background: #192d22;
}

.card {
  background: #20362a;
}

.card:hover {
  background: #294637;
}

.card p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
}

.card h3 {
  color: #ffffff;
}

.content-quote {
  background: #223b2d;
}

.cta-box {
  background: linear-gradient(
    135deg,
    #1c3427 0%,
    #284b38 100%
  );
}

.club-strip {
  background: linear-gradient(
    135deg,
    #183023 0%,
    #28503b 100%
  );
}

/* LYSE SEKTIONER */

.section-light {
  background: #f6f3eb;
}

.section-light .section-title,
.section-light h3,
.section-light h4 {
  color: #173225;
}

.section-light .section-sub,
.section-light p {
  color: #294b3a;
  opacity: 1;
}

.why-item,
.review-card {
  background: #fffdf8;
  border-color: rgba(23, 50, 37, 0.12);
}

.why-item p,
.review-text {
  color: #345543;
}

.review-author {
  color: #173225;
}

/* KONTAKTSEKTION */

.has-photo-bg::before {
  background: rgba(19, 35, 26, 0.76);
}

.contact-info-label {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

.contact-info-value,
.contact-info-value a {
  color: #ffffff;
}

.contact-info-icon {
  background: rgba(70, 217, 155, 0.16);
}

/* FOOTER */

footer {
  background: #101f17;
}

.footer-desc,
.footer-col ul a {
  color: rgba(255, 255, 255, 0.68);
  opacity: 1;
}

.footer-cvr,
.footer-bottom {
  color: rgba(255, 255, 255, 0.48);
  opacity: 1;
}

/* CTA KNAPPER */

.nav-cta,
.btn-outline,
.card-link {
  color: #6be8b3;
}

.nav-cta,
.btn-outline {
  border-color: rgba(107, 232, 179, 0.7);
}

.nav-cta:hover,
.btn-outline:hover {
  background: #46d99b;
  color: #102219;
}

/* POPUP */

.calendly-overlay {
  background:
    radial-gradient(
      circle at 25% 0%,
      rgba(70, 217, 155, 0.18),
      transparent 36%
    ),
    #102018;
}

.calendly-overlay-copy {
  background: linear-gradient(
    160deg,
    #20382a 0%,
    #14271d 100%
  );
  border-color: rgba(70, 217, 155, 0.24);
}

.calendly-overlay-copy p,
.calendly-overlay-trust {
  color: rgba(255, 255, 255, 0.78);
}

/* STOERRE KONTAKTSEKTION PAA FORSIDEN */

#kontakt {
  min-height: 760px;
  padding-top: 120px;
  padding-bottom: 120px;
}

#kontakt.has-photo-bg::before {
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 17, 0.94) 0%,
      rgba(10, 24, 17, 0.82) 48%,
      rgba(10, 24, 17, 0.58) 100%
    );
}

#kontakt .section-header {
  max-width: 760px;
  margin-bottom: 70px;
}

#kontakt .section-eyebrow {
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #72e5b0;
  opacity: 1;
}

#kontakt .section-eyebrow::before {
  width: 36px;
  background: #72e5b0;
}

#kontakt .section-title {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}

#kontakt .section-sub {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

#kontakt .contact-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(440px, 1.3fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  margin-top: 0;
}

#kontakt .contact-grid > .reveal:last-child {
  max-width: 720px;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 49, 35, 0.94) 0%,
      rgba(12, 28, 19, 0.92) 100%
    );
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

#kontakt .contact-grid > .reveal:last-child h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 56px) !important;
  line-height: 1.04;
}

#kontakt .contact-grid > .reveal:last-child p {
  max-width: 620px;
  margin-bottom: 34px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  opacity: 1 !important;
}

#kontakt .contact-info-item {
  margin-bottom: 34px;
}

#kontakt .contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

#kontakt .contact-info-icon svg {
  width: 21px;
  height: 21px;
}

#kontakt .contact-info-label {
  font-size: 11px;
  opacity: 0.7;
}

#kontakt .contact-info-value {
  font-size: 16px;
}


/* NYT DESIGN TIL ALLE BOOKING CTAER */

.js-calendly {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid #39c98a !important;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #5ee0a7 0%,
      #32c783 100%
    ) !important;
  color: #0d2117 !important;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow:
    0 12px 30px rgba(50, 199, 131, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.js-calendly::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  z-index: -1;
  width: 42%;
  height: 180%;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.16) 34%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 255, 255, 0.16) 66%,
      transparent 100%
    );
  transform: skewX(-22deg);
  transition: left 650ms ease;
}

.js-calendly:hover {
  color: #08150f !important;
  border-color: #7ce7b7 !important;
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(50, 199, 131, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.js-calendly:hover::before {
  left: 135%;
}

.js-calendly:active {
  transform: translateY(0);
}

/* MOBIL */

@media (max-width: 900px) {
  #kontakt {
    min-height: 0;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  #kontakt .section-header {
    margin-bottom: 48px;
  }

  #kontakt .section-title {
    font-size: clamp(42px, 12vw, 62px);
  }

  #kontakt .section-sub {
    font-size: 17px;
  }

  #kontakt .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #kontakt .contact-grid > .reveal:last-child {
    max-width: none;
    padding: 34px 26px;
  }

  #kontakt .contact-grid > .reveal:last-child h3 {
    font-size: 38px !important;
  }

  #kontakt .contact-grid > .reveal:last-child p {
    font-size: 16px !important;
  }
}

@media (max-width: 600px) {
  .js-calendly {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

  nav .js-calendly {
    width: auto;
    max-width: 190px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 10px;
    line-height: 1.25;
  }
}

/* TYDELIG TEKST I CTA BOKSE */

.cta-box h3 {
  color: #ffffff !important;
  opacity: 1 !important;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82) !important;
  opacity: 1 !important;
}

.cta-box .js-calendly {
  color: #0b1d13 !important;
}

.club-strip h2 {
  color: #ffffff !important;
  opacity: 1 !important;
}

.club-strip p {
  color: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
}

.club-strip .js-calendly {
  color: #0b1d13 !important;
}

.card-booking-link {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--accent) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  transform: none !important;
}

.card-booking-link::before {
  display: none !important;
}

.card-booking-link:hover {
  color: var(--accent-lt) !important;
  box-shadow: none !important;
  transform: none !important;
}

.calendly-frame-wrap {
  position: relative;
}

.calendly-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  color: #173225;
}

.calendly-frame-wrap.is-loading .calendly-loader {
  display: flex;
}

.calendly-loader span {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(70, 217, 155, 0.2);
  border-top-color: #46d99b;
  border-radius: 50%;
  animation: calendlySpin 700ms linear infinite;
}

.calendly-loader p {
  margin: 0;
  color: #173225;
  font-size: 14px;
  font-weight: 500;
}

@keyframes calendlySpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 700px) {
  body.calendly-open {
    overflow: hidden !important;
  }

  .calendly-overlay {
    display: grid;
    grid-template-rows: 64px 1fr;
    width: 100%;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
    background: #102018;
  }

  .calendly-overlay-top {
    position: static;
    width: 100%;
    height: 64px;
    padding: 10px 14px;
    align-items: center;
  }

  .calendly-close {
    min-width: 72px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .calendly-overlay-inner {
    display: block;
    width: 100%;
    height: calc(100dvh - 64px);
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .calendly-overlay-copy {
    display: none;
  }

  .calendly-frame-wrap {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: none;
  }

  .calendly-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
  }
}