:root {
  --blue: #7aaace;
  --blue-deep: #5f91b8;
  --blue-dark: #3f7198;
  --blue-soft: #e8f2f8;
  --accent: #f2b35d;
  --accent-deep: #d87f39;
  --accent-soft: rgba(242, 179, 93, 0.18);
  --white: #ffffff;
  --ink: #213845;
  --muted: #5f7480;
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(15, 38, 54, 0.2);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, var(--accent-soft), transparent 28vw),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: rgba(63, 113, 152, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 179, 93, 0.78);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a,
.header-cta {
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(242, 179, 93, 0.2);
}

.header-cta {
  padding: 12px 18px;
  color: #263843;
  background: var(--accent);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 113, 152, 0.9) 0%, rgba(63, 113, 152, 0.68) 48%, rgba(63, 113, 152, 0.28) 100%),
    linear-gradient(0deg, rgba(63, 113, 152, 0.76) 0%, rgba(63, 113, 152, 0) 52%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  align-self: center;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 0 clamp(128px, 16vw, 172px);
}

.eyebrow,
.section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button-light {
  color: #263843;
  background: var(--accent);
  box-shadow: 0 16px 38px rgba(95, 56, 22, 0.2);
}

.button-outline {
  color: var(--white);
  border-color: rgba(242, 179, 93, 0.58);
  background: rgba(242, 179, 93, 0.12);
}

.button:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.booking-card {
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  z-index: 1;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(242, 179, 93, 0.32);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.booking-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: var(--container);
  margin: -1px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.22);
}

.quick-points article {
  padding: 26px;
  color: var(--white);
  background: rgba(63, 113, 152, 0.24);
}

.quick-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.quick-points span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.section,
.image-section,
.cta-band,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-label {
  color: rgba(255, 255, 255, 0.68);
}

h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.check-list p,
.check-list li,
.services p,
.about p,
.plain-list li,
.image-section p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.check-list ul,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 179, 93, 0.14);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 700px;
}

.services {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.service-grid span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.image-section img,
.portrait-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-section img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 900;
  border-bottom: 2px solid rgba(242, 179, 93, 0.72);
}

.about {
  align-items: center;
}

.portrait-wrap img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: flex-end;
  min-width: min(100%, 320px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  padding: 28px 0 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.page-hero,
.price-section {
  width: var(--container);
  margin: 0 auto;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 56vh;
  padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 8vw, 90px);
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.price-section {
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.price-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 32px;
}

.price-intro h2 {
  margin-bottom: 0;
}

.price-intro p:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(15, 38, 54, 0.12);
}

.price-card-wide {
  grid-column: span 2;
}

.price-card h3 {
  margin-bottom: 18px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.price-row span {
  line-height: 1.45;
}

.price-row strong {
  color: var(--white);
  font-size: 1.08rem;
  white-space: nowrap;
}

.price-row strong::after {
  content: " DKK";
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.main-nav-simple {
  margin-left: auto;
}

.chooser-hero,
.content-page {
  width: var(--container);
  margin: 0 auto;
  color: var(--white);
}

.chooser-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-content: center;
  gap: clamp(36px, 7vw, 82px);
  padding: clamp(56px, 9vw, 108px) 0;
}

.chooser-copy {
  max-width: 870px;
}

.chooser-copy h1,
.content-page h1 {
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.chooser-copy p,
.content-page p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.9vw, 1.24rem);
  line-height: 1.75;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 340px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 4px solid rgba(242, 179, 93, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(15, 38, 54, 0.12);
}

.pathway-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(242, 179, 93, 0.18);
}

.pathway-card-primary {
  background: var(--blue-dark);
}

.pathway-card span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.pathway-card h2 {
  margin: 28px 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.pathway-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.pathway-card strong {
  display: inline-flex;
  margin-top: 28px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid rgba(242, 179, 93, 0.8);
}

.content-page {
  min-height: calc(100vh - 78px);
  padding: clamp(72px, 10vw, 128px) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  margin-top: 36px;
}

.content-grid .plain-list {
  margin-top: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(42px, 7vw, 86px);
}

.role-card,
.source-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 4px solid rgba(242, 179, 93, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(15, 38, 54, 0.12);
}

.role-card::after,
.source-panel::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-top: 2px solid rgba(242, 179, 93, 0.62);
  border-right: 2px solid rgba(242, 179, 93, 0.62);
}

.role-card-wide {
  grid-column: span 2;
}

.role-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.role-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.role-card p,
.source-panel p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.source-panel {
  margin-top: 16px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.source-links a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(242, 179, 93, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.summerhouse-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-top: clamp(42px, 7vw, 86px);
}

.summerhouse-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 18px 50px rgba(15, 38, 54, 0.16);
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  margin-top: clamp(36px, 6vw, 72px);
}

.book-cover-wrap {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(15, 38, 54, 0.18);
}

.book-cover-wrap::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 22px;
  width: 10px;
  height: 72px;
  border-radius: 999px 0 0 999px;
  background: var(--accent);
}

.book-cover-wrap img {
  width: 100%;
  border-radius: 6px;
}

.book-cover-fallback {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 28px;
  border-radius: 6px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(180deg, rgba(9, 25, 34, 0.92), rgba(9, 25, 34, 0.68));
}

.book-cover-fallback strong,
.book-cover-fallback small {
  display: block;
}

.book-cover-fallback strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.book-cover-fallback small {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-cover-wrap-dark {
  background: rgba(9, 25, 34, 0.34);
}

.book-copy h2,
.back-cover-text h2 {
  margin-bottom: 20px;
}

.book-feature-next {
  margin-top: clamp(56px, 9vw, 112px);
  padding-top: clamp(42px, 7vw, 86px);
  border-top: 1px solid rgba(242, 179, 93, 0.34);
}

.download-panel {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.download-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-panel p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sneakpeek-panel {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.sneakpeek-panel summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 900;
}

.sneakpeek-copy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sneakpeek-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.back-cover-text {
  margin-top: clamp(56px, 9vw, 112px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 18px 50px rgba(15, 38, 54, 0.16);
}

.back-cover-text p {
  max-width: 820px;
}

.book-notes {
  margin-top: clamp(42px, 7vw, 86px);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
  }

  .brand {
    width: 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-content {
    padding: 56px 0 220px;
  }

  .booking-card {
    left: 16px;
    right: 16px;
  }

  .quick-points,
  .service-grid,
  .section,
  .image-section,
  .summerhouse-gallery,
  .price-intro,
  .price-grid,
  .pathway-grid,
  .content-grid,
  .role-grid,
  .book-feature {
    grid-template-columns: 1fr;
  }

  .chooser-hero,
  .content-page {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .chooser-hero {
    align-content: start;
    gap: 34px;
  }

  .chooser-copy h1,
  .content-page h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 1.04;
  }

  .chooser-copy p,
  .content-page p,
  .page-hero p {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .section {
    gap: 24px;
    padding: 58px 0;
  }

  .quick-points article,
  .service-grid article {
    min-height: auto;
  }

  .image-section {
    padding-top: 18px;
  }

  .price-card-wide {
    grid-column: auto;
  }

  .pathway-card {
    min-height: auto;
    padding: 26px;
  }

  .pathway-card h2 {
    margin-top: 22px;
  }

  .pathway-grid,
  .role-grid,
  .service-grid,
  .price-grid,
  .summerhouse-gallery {
    gap: 18px;
  }

  .content-grid {
    gap: 28px;
    margin-top: 28px;
  }

  .role-card-wide {
    grid-column: auto;
  }

  .role-card,
  .source-panel,
  .content-grid .plain-list,
  .download-panel,
  .sneakpeek-panel,
  .back-cover-text {
    padding: 24px;
  }

  .book-feature {
    gap: 28px;
    align-items: start;
  }

  .book-feature-next,
  .back-cover-text,
  .book-notes {
    margin-top: 54px;
  }

  .book-cover-wrap {
    max-width: 360px;
  }

  .summerhouse-gallery img {
    min-height: 240px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    padding: 16px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    max-width: 170px;
  }

  .header-cta {
    width: 100%;
    padding-inline: 14px;
  }

  .main-nav a {
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 1.04;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .quick-points {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section,
  .image-section,
  .page-hero,
  .price-section,
  .chooser-hero,
  .content-page,
  .cta-band,
  .site-footer {
    width: calc(100vw - 40px);
  }

  .pathway-card,
  .role-card,
  .source-panel,
  .content-grid .plain-list,
  .download-panel,
  .sneakpeek-panel,
  .back-cover-text {
    padding: 22px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .summerhouse-gallery img {
    min-height: 220px;
  }
}
