@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/font-0.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/font-1.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-2.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-3.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-4.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-5.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-6.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/font-7.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --color-bg: #fbfaf7;
  --color-bg-soft: #f3f4f1;
  --color-bg-muted: #e9ede9;
  --color-text: #1a2420;
  --color-text-muted: #4a554f;
  --color-accent: #3f6b58;
  --color-accent-soft: #e8f0eb;
  --color-btn: #264539;
  --color-btn-hover: #1b3229;
  --color-border: #e3e7e4;
  --color-white: #ffffff;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: clamp(3rem, 6vw, 5rem);
  --content: 40rem;
  --content-wide: 68rem;
  --header-h: 4.5rem;
  --radius: 8px;
  --radius-sm: 5px;
  --radius-control: 8px;
  --shadow-sm: 0 1px 0 rgba(26, 36, 32, 0.04);
  --shadow-md: 0 6px 20px rgba(26, 36, 32, 0.06);
  --shadow-sheet: 0 16px 48px rgba(26, 36, 32, 0.07);
  --bg-image: image-set(
    url("assets/matsalu-bg.webp") type("image/webp"),
    url("assets/matsalu-bg.jpg") type("image/jpeg")
  );
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.skip-link:focus-visible {
  outline-offset: 2px;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body::before {
    background-attachment: scroll;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: #c8d5cb;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: saturate(0.88) brightness(1.01);
}
@media (max-width: 51.99rem) {
  :root {
    --bg-image: image-set(
      url("assets/matsalu-bg-sm.webp") type("image/webp"),
      url("assets/matsalu-bg-sm.jpg") type("image/jpeg")
    );
  }
  body::before {
    background-attachment: scroll;
  }
}
.site-header,
.page-main,
.site-footer,
.mobile-cta__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.site-header,
.page-main,
.site-footer {
  background: var(--color-bg);
  box-shadow: var(--shadow-sheet);
}
.page-main {
  min-height: 50vh;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-btn);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.skip-link:focus,
.skip-link:focus-visible {
  left: var(--space-sm);
  top: var(--space-sm);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover {
  color: var(--color-btn);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.site-header__inner {
  max-width: calc(var(--content-wide) - 2 * var(--space-md));
  margin: 0 auto;
  padding: 0.9rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--header-h);
}
.site-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.site-brand:hover {
  color: var(--color-accent);
}
.site-brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open {
  display: block;
}
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.site-nav__link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 transparent;
}
.site-nav__link:hover {
  background: transparent;
  color: var(--color-text);
}
.site-nav__link[aria-current="page"] {
  background: transparent;
  color: var(--color-btn);
  box-shadow: inset 0 -2px 0 var(--color-accent);
}
@media (min-width: 52rem) {
  .nav-toggle {
    display: none;
  }
  .site-header__inner {
    position: relative;
  }
  .site-nav {
    display: block;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.1rem 0.2rem;
  }
  .site-nav__link {
    padding: 0.35rem 0.55rem;
    font-size: 0.875rem;
  }
}
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--wide {
  max-width: calc(var(--content-wide) - 2 * var(--space-md));
}
.section {
  padding: var(--space-xl) 0;
}
.section--alt {
  background: var(--color-bg-soft);
}
.section--sand {
  background: var(--color-bg-muted);
}
.section--compact {
  padding: var(--space-lg) 0;
}
.section--cta {
  text-align: left;
}
.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.page-hero .section-label {
  margin-bottom: 0.85rem;
}
.section--follow-hero {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.page-hero {
  position: relative;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
  background: var(--color-bg);
}
.page-hero--contact {
  padding-bottom: clamp(1.1rem, 2.5vw, 1.75rem);
}
.section--contact-booking {
  padding-top: calc(var(--space-xl) * 0.65);
  padding-bottom: calc(var(--space-xl) * 0.85);
}
.booking-note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero:not(:has(.hero-with-portrait)) > .container {
  max-width: calc(var(--content) + 2 * var(--space-md));
}
.hero-with-portrait {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 48rem) {
  .hero-with-portrait {
    grid-template-columns: 1.2fr minmax(14rem, 20rem);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
  }
  .hero-with-portrait:has(.media-figure) {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 30rem);
    align-items: center;
  }
  .hero-with-portrait:has(.media-figure) .page-hero__title {
    max-width: none;
  }
  .hero-with-portrait .portrait,
  .hero-with-portrait .portrait-frame {
    object-position: center 18%;
  }
  .hero-with-portrait .portrait-frame {
    align-self: end;
  }
  .hero-with-portrait--about {
    align-items: start;
  }
  .hero-with-portrait--about .portrait-frame {
    align-self: start;
  }
}
.page-hero--about {
  padding-top: clamp(1.15rem, 2.8vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.page-hero--about-flow {
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}
.about-intro {
  max-width: 38rem;
}
.about-intro .page-hero__lead {
  margin-bottom: var(--space-md);
}
.about-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: var(--space-md) 0 0.55rem;
  color: var(--color-text);
}
.about-intro p {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.about-intro p:last-of-type {
  margin-bottom: 0;
}
.about-intro .btn-group {
  margin-top: var(--space-md);
}
@media (min-width: 48rem) {
  .hero-with-portrait--about .about-portrait {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}
.page-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-transform: none;
}
.page-hero__approach {
  margin: 0 0 var(--space-sm);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 36rem;
}
.page-hero__meta {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.page-hero__title--short {
  max-width: 14ch;
}
.page-hero__lead {
  font-size: clamp(1.0625rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
  max-width: 36rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.section-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
  max-width: 36rem;
}
.section-lead--quiet {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}
.section-intro {
  margin-bottom: var(--space-lg);
}
.prose {
  max-width: var(--content);
}
.prose--readable {
  max-width: 56rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.prose--readable p {
  margin-bottom: 0.9rem;
}
.section--closing {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.section--closing .notice--inline {
  margin-top: var(--space-md);
}
.section--quiet {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.privacy-note {
  max-width: 36rem;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.privacy-note h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.privacy-note p {
  margin: 0 0 0.45rem;
}
.privacy-note p:last-child {
  margin-bottom: 0;
}
.privacy-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.section--method {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.section-title--sub,
h2.section-title--sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}
.prose p {
  margin: 0 0 var(--space-sm);
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose h1,
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.prose h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.03em;
}
.prose h1:first-child,
.prose h2:first-child {
  margin-top: 0;
}
.prose h1 + h2 {
  margin-top: var(--space-sm);
}
.prose ul {
  margin: 0 0 var(--space-sm);
  padding-left: 1.2rem;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose li::marker {
  color: var(--color-accent);
}
.prose a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.prose a:hover {
  color: var(--color-btn);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-control);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: var(--color-btn);
  color: var(--color-white);
  box-shadow: none;
}
.btn--primary:hover {
  background: var(--color-btn-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--color-white);
  color: var(--color-btn);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: var(--color-bg-soft);
  color: var(--color-btn);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover {
    transform: none;
  }
}
.card-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
@media (min-width: 40rem) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.topic-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.1rem 1rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-shadow: none;
  height: auto;
}
.topic-card:hover {
  border-color: #9bb5a6;
  background: var(--color-white);
  box-shadow: none;
  color: inherit;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .topic-card:hover {
    transform: none;
  }
}
.topic-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.topic-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.topic-card__link {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
}
.topic-blocks {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-lg);
}
.topic-block {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.topic-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.topic-block p:last-child {
  margin-bottom: 0;
}
.info-box {
  padding: 1.25rem 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-top: var(--space-md);
  box-shadow: none;
}
.info-box--compact {
  padding: 0.65rem 1.1rem;
  margin-top: var(--space-sm);
}
.credentials {
  max-width: 40rem;
}
.credentials .info-list li {
  align-items: baseline;
}
.credentials .info-list span {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.credentials .info-list strong {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}
.about-flow > h2 {
  margin-top: var(--space-lg);
}
.about-flow > h2:first-of-type {
  margin-top: var(--space-md);
}
.about-credentials {
  margin: 0 0 var(--space-md);
  padding: 0 0 var(--space-md);
  list-style: none;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.about-credentials li {
  margin: 0 0 0.35rem;
}
.about-credentials li:last-child {
  margin-bottom: 0;
}
.about-credentials strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.info-box__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 var(--space-sm);
}
.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.96rem;
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list span {
  color: var(--color-text-muted);
}
.info-list strong {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}
.info-list__single {
  justify-content: flex-start;
}
.info-list__single strong {
  text-align: left;
}
.notice {
  padding: 1.15rem 1.25rem;
  background: var(--color-accent-soft);
  border: 1px solid #cfe0d6;
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.65;
}
.notice p {
  margin: 0;
}
.notice p + p {
  margin-top: var(--space-sm);
}
.notice--inline {
  margin: var(--space-md) 0 0;
  padding: 0.85rem 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.notice--inline strong {
  color: var(--color-text);
  font-weight: 600;
}
.container--form {
  max-width: calc(40rem + 2 * var(--space-md));
}
.contact-facts {
  margin: var(--space-sm) 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.quiet-link {
  margin: var(--space-sm) 0 0;
  font-size: 0.9375rem;
}
.quiet-link a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.quiet-link a:hover,
.quiet-link a:focus-visible {
  color: var(--color-text);
}
.privacy-updated {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.consent-banner {
  position: fixed;
  z-index: 120;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-sm);
  padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom));
  pointer-events: none;
}
.consent-banner[hidden] {
  display: none;
}
.consent-banner:focus,
.consent-banner:focus-visible {
  outline: none;
}
.consent-banner:focus .consent-banner__inner,
.consent-banner:focus-visible .consent-banner__inner {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.consent-banner__inner {
  pointer-events: auto;
  max-width: 34rem;
  margin-inline: auto;
  padding: 1.1rem 1.2rem 1.15rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sheet);
}
.consent-banner__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.consent-banner__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}
.consent-banner__actions .btn {
  min-height: 44px;
  flex: 1 1 8.5rem;
  background: var(--color-white);
  color: var(--color-btn);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.consent-banner__actions .btn:hover {
  background: var(--color-bg-soft);
  color: var(--color-btn);
  transform: none;
}
.consent-banner__privacy {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.consent-banner__privacy:hover {
  color: var(--color-accent);
}
.consent-banner__privacy:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
@media (max-width: 51.99rem) {
  body.has-consent-banner .mobile-cta {
    display: none;
  }
}
#kupsised {
  scroll-margin-top: 5.5rem;
}
#kohtumise-info {
  scroll-margin-top: 5.5rem;
}
.section--contact-booking h3 {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.mobile-cta__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.mobile-cta__inner--split .btn {
  width: 100%;
}
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  margin-top: 0;
}
.site-footer__inner {
  max-width: calc(var(--content-wide) - 2 * var(--space-md));
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 40rem) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.site-footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}
.site-footer__links li {
  margin-bottom: 0.3rem;
}
.site-footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-footer__links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.site-footer__copy {
  grid-column: 1 / -1;
  margin: var(--space-sm) 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}
.mobile-cta {
  display: none;
}
@media (max-width: 51.99rem) {
  .section--cta {
    display: none;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: var(--space-sm);
    padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom));
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-cta.is-hidden {
    opacity: 0;
    transform: translateY(0.75rem);
    visibility: hidden;
  }
  .mobile-cta__inner {
    padding: 0 var(--space-sm);
    pointer-events: auto;
  }
  .mobile-cta.is-hidden .mobile-cta__inner {
    pointer-events: none;
  }
  .mobile-cta .btn {
    width: 100%;
    box-shadow: var(--shadow-md);
  }
  .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}
.portrait-frame {
  margin: 0;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
  max-height: min(28rem, 70vw);
}
.portrait-frame .portrait {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.08);
  transform-origin: center 22%;
}
.portrait-frame--open .portrait {
  transform: scale(1.02);
  object-position: center 22%;
  transform-origin: center center;
}
.portrait {
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  max-height: min(28rem, 70vw);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}
@media (min-width: 48rem) {
  .portrait,
  .portrait-frame {
    max-height: none;
  }
}
.portrait-placeholder {
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ffffff, var(--color-bg-soft));
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-md);
}
.media-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}
.media-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-with-portrait .media-figure img {
  aspect-ratio: 3 / 2;
  object-position: center center;
}
.split-with-photo {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 52rem) {
  .split-with-photo {
    grid-template-columns: 1.2fr 0.9fr;
    gap: clamp(1.75rem, 4vw, 3rem);
  }
  .split-with-photo--flip {
    grid-template-columns: 0.9fr 1.2fr;
  }
  .split-with-photo--flip > :first-child {
    order: 2;
  }
  .split-with-photo--flip > :last-child {
    order: 1;
  }
}
.split-with-photo .media-figure {
  width: 100%;
}
.split-with-photo .media-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}
.media-figure--crop-diivan {
  overflow: hidden;
  aspect-ratio: 757 / 591;
}
.media-figure--crop-diivan img {
  aspect-ratio: 757 / 591;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.container > .media-figure {
  max-width: 36rem;
  margin-inline: auto;
}
.cta-band {
  padding: clamp(1.5rem, 3vw, 2.15rem);
  background: linear-gradient(135deg, var(--color-btn), #3f6b58);
  border-radius: var(--radius);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.cta-band .section-title,
.cta-band .prose,
.cta-band .prose p {
  color: rgba(255, 255, 255, 0.92);
}
.cta-band .section-title {
  color: #ffffff;
}
.cta-band .btn--primary {
  background: #ffffff;
  color: var(--color-btn);
  box-shadow: none;
}
.cta-band .btn--primary:hover {
  background: var(--color-bg-soft);
  color: var(--color-btn-hover);
}
.cta-simple {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}
.btn--cta {
  min-width: 14rem;
  padding: 0.95rem 1.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
@media (min-width: 40rem) {
  body {
    padding: 1rem 0 0;
  }
}
@media print {
  @page {
    size: A4;
    margin: 12mm;
  }
  html,
  body {
    background: #fff !important;
    min-height: auto;
  }
  body::before {
    display: none !important;
  }
  .skip-link,
  .nav-toggle,
  .mobile-cta,
  .consent-banner {
    display: none !important;
  }
  .site-header,
  .page-main,
  .site-footer {
    max-width: none;
    box-shadow: none;
    margin: 0;
  }
  .site-header {
    position: static;
    break-after: avoid;
  }
  .site-nav {
    display: block !important;
    position: static !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
  }
  .site-nav__list {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }
  .page-hero,
  .section,
  .cta-band,
  .topic-card,
  .info-box,
  .media-figure,
  .portrait-frame {
    break-inside: avoid;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  .btn {
    box-shadow: none !important;
    border: 1px solid currentColor;
  }
  .cta-band .btn--primary {
    border-color: #fff;
  }
  img {
    max-width: 100% !important;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
