:root {
  --bg-header: #ead9c1;
  --bg-primary: #f3ede4;
  --bg-secondary: #ffffff;
  --cta-primary: #6f7e6a;
  --cta-secondary: #4d5b48;
  --cta-call: #59c44d;
  --text-primary: #111111;
  --icon-accent: #a88460;
  --line-soft: rgba(17, 17, 17, 0.1);
  --shadow-soft: 0 20px 55px rgba(49, 43, 32, 0.11);
  --shadow-lift: 0 28px 80px rgba(49, 43, 32, 0.15);
  --radius-soft: 1.5rem;
  --radius-large: 2.5rem;
  --font-display: "Familjen Grotesk", sans-serif;
  --font-body: "Hanken Grotesk", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(168, 132, 96, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f2e8 0%, var(--bg-primary) 38%, #f7f4ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 40;
}

body.is-menu-open::before {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 60;
  width: min(calc(100% - 1.6rem), 44rem);
  transform: translateX(-50%);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(30, 26, 20, 0.16);
  padding: 0.8rem 0.9rem 0.8rem 1.1rem;
}

.cookie-banner__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgb(17 17 17 / 0.72);
}

.cookie-banner__link {
  color: var(--cta-primary);
  font-weight: 600;
  text-underline-offset: 0.18rem;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner__icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.cookie-banner__icon-button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.cookie-banner__icon-button--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.cookie-banner__icon-button--primary {
  background: var(--cta-primary);
  color: #f6f2ea;
  box-shadow: 0 14px 32px rgba(68, 78, 64, 0.18);
}

.cookie-banner__icon-button:hover,
.cookie-banner__icon-button:focus-visible {
  transform: translateY(-2px);
}

.cookie-banner__icon-button:focus-visible {
  outline: 2px solid rgba(111, 126, 106, 0.72);
  outline-offset: 3px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--text-primary);
  color: #f8f4ed;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0.8rem;
  left: 0;
  width: 100%;
  padding: 0 0.8rem;
  z-index: 50;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header__shell {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(234, 217, 193, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(30, 26, 20, 0.09);
  border-radius: 1.7rem 1.7rem 2.4rem 2.4rem / 1.7rem 1.7rem 2rem 2rem;
}

.site-header__shell::before,
.site-header__shell::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  width: 3.2rem;
  height: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.site-header__shell::before {
  left: 1.8rem;
  border-radius: 0 0 1.5rem 2.2rem;
}

.site-header__shell::after {
  right: 1.8rem;
  border-radius: 0 0 2.2rem 1.5rem;
}

.site-header.is-scrolled .site-header__shell {
  background: rgba(234, 217, 193, 0.9);
  box-shadow: 0 16px 34px rgba(30, 26, 20, 0.1);
}

.site-header__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.site-header.is-menu-open .site-header__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__menu-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.7rem 1.7rem 2rem 2rem / 1.7rem 1.7rem 1.8rem 1.8rem;
  background: var(--bg-primary);
  box-shadow: 0 18px 38px rgba(30, 26, 20, 0.1);
  padding: 5.35rem 1rem 1rem;
}

.site-menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0.9rem;
  align-items: stretch;
}

.site-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.site-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 17, 17, 0.06);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-menu-link::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.48);
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.78);
}

.site-menu-blank {
  border-radius: 1.35rem;
  border: 1px solid rgba(17, 17, 17, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%),
    rgba(255, 255, 255, 0.18);
  min-height: 100%;
}

.brand-logo {
  display: block;
  width: clamp(7.1rem, 12vw, 9.2rem);
  height: auto;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand-subtext {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.62);
}

.header-actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-phone-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  border-radius: 999px;
  background: var(--cta-call);
  color: #f8f4ed;
  box-shadow:
    0 12px 28px rgba(78, 173, 65, 0.38),
    0 4px 10px rgba(40, 108, 33, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.header-phone-button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.header-phone-button:hover,
.header-phone-button:focus-visible {
  transform: translateY(-1px);
  background: #4ebc42;
  box-shadow:
    0 16px 32px rgba(78, 173, 65, 0.44),
    0 6px 12px rgba(40, 108, 33, 0.2);
}

.header-language-link {
  display: none;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  background: var(--cta-secondary);
  color: #f8f4ed;
  box-shadow: 0 8px 18px rgba(49, 58, 46, 0.2);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.menu-button__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-button__icon span {
  display: block;
  width: 0.92rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.menu-button:hover,
.menu-button:focus-visible {
  transform: translateY(-1px);
  background: #43513f;
}

.site-header .button-primary {
  padding: 0.78rem 1rem;
  box-shadow: 0 10px 24px rgba(68, 78, 64, 0.18);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-simple {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0.44) 35%, rgba(17, 17, 17, 0.18) 100%),
    url("/media/hero-media.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-simple__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-simple__content {
  max-width: 40rem;
  color: #f8f4ed;
}

.hero-simple__content p {
  color: rgba(248, 244, 237, 0.86);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card-main {
  position: relative;
  z-index: 3;
  width: min(100%, 29rem);
  margin-left: auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-lift);
}

.hero-card-secondary {
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: 4;
  width: min(68%, 19rem);
  overflow: hidden;
  border-radius: 1.8rem;
  border: 10px solid rgba(243, 237, 228, 0.95);
  box-shadow: var(--shadow-soft);
}

.shape-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.shape-orb.orb-a {
  top: -1.2rem;
  right: 4rem;
  width: 11rem;
  height: 11rem;
  background: rgba(167, 178, 158, 0.34);
}

.shape-orb.orb-b {
  bottom: 5rem;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(168, 132, 96, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(17, 17, 17, 0.4);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.5);
}

.soft-ring {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.intro-note {
  border-left: 0;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.marquee {
  overflow: hidden;
  min-height: 10vh;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.logo-strip {
  width: 100%;
}

.logo-strip__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.logo-strip__item {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.28);
}

.story-card,
.pricing-card,
.route-card,
.contact-panel {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.story-band {
  display: grid;
  align-items: stretch;
}

.story-band__copy-wrap {
  padding: 4rem 1.25rem;
}

.story-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34rem;
}

.story-band__media {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, var(--bg-primary) 0%, rgba(243, 237, 228, 0) 46%),
    url("/media/hero-media.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.before-after-gallery {
  align-items: start;
}

.before-after-gallery--desktop {
  display: none;
}

.before-after-gallery--mobile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.before-after-gallery-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.9rem;
}

.before-after-frame {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  border-radius: 1.5rem;
  background: #f4efe8;
}

.before-after-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--icon-accent);
  color: #f8f4ed;
  text-align: center;
}

.before-after-cta img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.before-after-cta span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.before-after-cta strong {
  display: inline-block;
  margin-top: 0.2rem;
  font-weight: 700;
}

.before-after-gallery .before-after-frame {
  min-height: 0;
  height: 100%;
}

.before-after-gallery-item {
  height: 100%;
}

.before-after-gallery--mobile .before-after-gallery-item--short {
  height: 11rem;
}

.before-after-gallery--mobile .before-after-gallery-item--tall {
  height: 19rem;
}

.before-after-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.44);
}

.before-after-details {
  display: grid;
  gap: 1.5rem;
}

.before-after-divider {
  display: grid;
  gap: 0.35rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 2.25rem 0;
}

.before-after-divider span {
  display: block;
  height: 1.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.before-after-divider span:nth-child(1),
.before-after-divider span:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' preserveAspectRatio='none'%3E%3Cpath d='M1 18C9 18 13 5 21 5C29 5 33 18 41 18C49 18 51 5 59 5C67 5 71 18 79 18C87 18 91 5 99 5' fill='none' stroke='%23A88460' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.before-after-divider span:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' preserveAspectRatio='none'%3E%3Cpath d='M1 6C9 6 13 19 21 19C29 19 33 6 41 6C49 6 51 19 59 19C67 19 71 6 79 6C87 6 91 19 99 19' fill='none' stroke='%23A88460' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.before-after-detail-card {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
}

.before-after-detail-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after-detail-media .before-after-frame {
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.before-after-detail-copy {
  padding: 1.5rem;
}

.before-after-detail-copy .button-primary {
  background: var(--cta-secondary);
  box-shadow: 0 12px 24px rgba(49, 58, 46, 0.18);
}

.before-after-detail-copy .button-primary:hover,
.before-after-detail-copy .button-primary:focus-visible {
  background: #43513f;
}

.services-section {
  background: transparent;
}

.services-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.services-band__content {
  order: 2;
  min-width: 0;
  padding: 0;
}

.services-band__inner {
  max-width: none;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  text-align: center;
}

.service-icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  color: var(--icon-accent);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-price {
  margin-top: 0.7rem;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--icon-accent);
}

.service-description {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(17 17 17 / 0.74);
}

.service-card .button-primary {
  margin-top: auto;
}

.services-band__media {
  order: 1;
  display: block;
  min-width: 0;
  min-height: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.services-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem;
}

.services-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.arrival-band {
  display: grid;
  gap: 1.5rem;
}

.arrival-band__map {
  order: 2;
  padding: 1.5rem;
}

.arrival-band__content {
  order: 1;
}

.arrival-map-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
}

.arrival-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

.arrival-map-badge {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--cta-primary);
  color: #f6f2ea;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(68, 78, 64, 0.22);
  gap: 0.5rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.arrival-map-badge:hover,
.arrival-map-badge:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.arrival-map-badge:focus-visible {
  outline: 2px solid rgba(111, 126, 106, 0.72);
  outline-offset: 3px;
}

.arrival-map-badge__icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
}

.arrival-map-badge__icon svg {
  width: 100%;
  height: 100%;
}

.arrival-features {
  display: grid;
  gap: 1.25rem;
}

.arrival-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.arrival-feature__icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  color: var(--icon-accent);
}

.arrival-feature__icon svg {
  width: 100%;
  height: 100%;
}

.route-map {
  min-height: 320px;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(167, 178, 158, 0.28), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(243, 237, 228, 0.95));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.route-line {
  position: relative;
  padding-left: 2.4rem;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 0.85rem;
}

.route-line::before {
  top: 0.3rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--icon-accent);
}

.route-line::after {
  top: 1.3rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: rgba(17, 17, 17, 0.18);
}

.route-line:last-child::after {
  display: none;
}

.cta-section {
  background: linear-gradient(180deg, transparent 0 50%, var(--bg-secondary) 50% 100%);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(145deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.72)),
    url("/media/hero-media.jpeg");
  background-size: cover;
  background-position: center;
  color: #f8f4ed;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: rgba(243, 237, 228, 0.08);
}

.form-field {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
  padding: 0.92rem 1rem;
  font: inherit;
  color: var(--text-primary);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

input.form-field,
select.form-field,
textarea.form-field {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background-image: none;
  box-shadow: none;
}

input.form-field,
select.form-field {
  border-radius: 999px;
}

textarea.form-field {
  border-radius: 1.25rem;
  resize: vertical;
}

.form-field:focus {
  outline: none;
  border-color: rgba(111, 126, 106, 0.9);
  box-shadow: 0 0 0 4px rgba(111, 126, 106, 0.14);
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.button-primary {
  background: var(--cta-primary);
  color: #f6f2ea;
  box-shadow: 0 14px 32px rgba(68, 78, 64, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.button-primary:hover,
.button-secondary:hover,
.button-primary:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.nav-link:focus-visible,
.lang-toggle:focus-visible,
.mobile-toggle:focus-visible {
  outline: 2px solid rgba(111, 126, 106, 0.72);
  outline-offset: 3px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.74);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(17, 17, 17, 0.55);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 0.2rem;
}

.lang-toggle {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.66);
}

.lang-toggle.is-active {
  background: rgba(17, 17, 17, 0.92);
  color: #f7f2e8;
}

.status-message {
  min-height: 1.4rem;
  font-weight: 600;
}

.status-message.is-error {
  color: #972d2d;
}

.status-message.is-success {
  color: #345f3f;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .services-band {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .services-band__content {
    order: 1;
    padding: 0;
  }

  .services-band__media {
    order: 2;
    justify-self: center;
    align-self: center;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .before-after-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .story-band__copy-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 6rem 3rem 6rem max(1.5rem, calc((100vw - 80rem) / 2 + 1.5rem));
  }
}

@media (max-width: 959px) {
  .hero-card-main {
    width: min(100%, 28rem);
    margin: 0 auto;
  }

  .hero-card-secondary {
    left: 1rem;
    bottom: 1rem;
  }

  .logo-strip__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.8rem;
  }

  .story-band__copy-wrap {
    padding: 3rem 1.5rem;
  }

  .story-band__media {
    min-height: 28rem;
  }

  .services-band__media {
    min-height: 20rem;
  }

  .before-after-gallery {
    column-gap: 1rem;
  }
}

@media (min-width: 640px) {
  .cookie-banner__content {
    padding-right: 0.95rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 0.65rem;
    padding: 0 0.7rem;
  }

  .site-header__menu {
    padding: 0 0.7rem;
  }

  .site-header__shell {
    border-radius: 1.35rem 1.35rem 2rem 2rem / 1.35rem 1.35rem 1.7rem 1.7rem;
  }

  .site-header__shell::before,
  .site-header__shell::after {
    width: 2.1rem;
    left: auto;
    right: auto;
  }

  .site-header__shell::before {
    left: 1.2rem;
  }

  .site-header__shell::after {
    right: 1.2rem;
  }

  .header-actions-wrap {
    gap: 0;
  }

  .header-actions {
    gap: 0.38rem;
  }

  .header-phone-button {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    flex-basis: 2.65rem;
  }

  .brand-logo {
    width: 6.1rem;
  }

  .brand-subtext {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .menu-button {
    width: 2.65rem;
    height: 2.65rem;
    flex-basis: 2.65rem;
  }

  .site-header__menu-panel {
    border-radius: 1.35rem 1.35rem 1.8rem 1.8rem / 1.35rem 1.35rem 1.55rem 1.55rem;
    padding: 4.8rem 0.8rem 0.8rem;
  }

  .site-menu-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-menu-grid {
    gap: 0.55rem;
  }

  .site-menu-link {
    padding: 0.85rem 0.9rem;
    font-size: 0.98rem;
  }

  .site-menu-blank {
    display: none;
  }

  .site-header .button-primary {
    padding: 0.72rem 0.88rem;
  }

  .hero-simple {
    min-height: 90svh;
    background-image:
      linear-gradient(180deg, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0.34) 55%, rgba(17, 17, 17, 0.3) 100%),
      url("/media/hero-media.jpeg");
  }

  .marquee {
    min-height: 10svh;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-card-secondary {
    width: min(64%, 13rem);
    border-width: 7px;
  }

  .before-after-frame {
    min-height: 14rem;
  }

  .logo-strip__item {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .story-band__copy-wrap {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .story-band__media {
    min-height: 20rem;
    background-image:
      linear-gradient(180deg, rgba(243, 237, 228, 0.12) 0%, rgba(243, 237, 228, 0) 18%, rgba(243, 237, 228, 0) 100%),
      url("/media/hero-media.jpeg");
  }

  .before-after-detail-copy {
    padding: 1.2rem;
  }

  .before-after-detail-media .before-after-frame {
    aspect-ratio: 4 / 5;
  }

  .arrival-map-card {
    max-width: 24rem;
    margin: 0 auto;
  }

  .services-band__content {
    padding: 0;
  }

  .services-band__media {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .before-after-gallery--mobile {
    display: none;
  }

  .before-after-gallery--desktop {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .before-after-gallery--desktop .before-after-gallery-column {
    gap: 1.5rem;
  }

  .before-after-gallery--desktop .before-after-gallery-item--short {
    height: 13rem;
  }

  .before-after-gallery--desktop .before-after-gallery-item--tall {
    height: 24rem;
  }
}

@media (min-width: 1024px) {
  .arrival-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: center;
  }

  .arrival-band__map {
    order: 1;
  }

  .arrival-band__content {
    order: 2;
  }

  .arrival-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
