:root {
  --green: #2d5a27;
  --green-dark: #1f3f1b;
  --orange: #f8941e;
  --orange-hover: #e08516;
  --cream: #f6f3ee;
  --white: #ffffff;
  --text: #1e2c1c;
  --muted: #4a5c47;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(29, 60, 25, 0.12);
  --font: "Quicksand", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

/* Top announcement bar */
.topbar {
  background: linear-gradient(90deg, rgba(45, 90, 39, 0.12), rgba(248, 148, 30, 0.14));
  border-bottom: 1px solid rgba(45, 90, 39, 0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.topbar-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
}

.topbar-cta {
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(45, 90, 39, 0.35);
}

.topbar-cta:hover {
  color: var(--orange);
  border-bottom-color: rgba(248, 148, 30, 0.55);
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* Before/after: full-width inner image must not be capped by parent clip width */
.compare img {
  max-width: none;
}

a {
  color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header[data-elevate="true"] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lang-switch-btn {
  min-width: 44px;
  padding: 0.4rem 0.55rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-switch-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lang-switch-btn.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

@media (min-width: 861px) {
  .site-nav {
    margin-left: auto;
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  width: 20px;
  height: 2px;
  background: var(--green);
  position: relative;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--green-dark);
}

.site-nav a:hover {
  color: var(--orange);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .lang-switch {
    order: 1;
  }

  .site-nav {
    order: 3;
    flex: 1 1 100%;
    margin-left: 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost:hover {
  background: rgba(45, 90, 39, 0.06);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(
    165deg,
    rgba(246, 243, 238, 0.95) 0%,
    var(--white) 55%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: url("assets/hero-smile-woman.png") center 30% / cover no-repeat;
  z-index: 0;
  opacity: 0.48;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      800px 420px at 20% 10%,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(165deg, rgba(246, 243, 238, 0.62) 0%, rgba(255, 255, 255, 0.72) 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--green-dark);
}

.hero-accent {
  color: var(--orange);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Free consultation highlight (hero) */
.consult-card {
  margin: 1.15rem 0 1.35rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  background: rgba(248, 148, 30, 0.14);
  border: 1px solid rgba(248, 148, 30, 0.45);
  box-shadow: 0 14px 40px rgba(248, 148, 30, 0.14);
}

.consult-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(45, 90, 39, 0.12);
  color: var(--green-dark);
}

.consult-body {
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.4;
}

.consult-body a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  word-break: break-word;
}

.consult-body a:hover {
  color: var(--orange);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  color: var(--green-dark);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.inline-code {
  font-size: 0.88em;
  font-family: ui-monospace, monospace;
  background: rgba(45, 90, 39, 0.08);
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
}

.seo-columns {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seo-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.seo-block {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: 0 8px 28px rgba(29, 60, 25, 0.05);
}

.seo-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.seo-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.carousel-track {
  position: relative;
  min-height: 420px;
}

@media (min-width: 900px) {
  .carousel-track {
    min-height: 380px;
  }
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.is-active {
  display: grid;
  opacity: 1;
}

@media (min-width: 900px) {
  .slide-service.is-active {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.slide-service-media {
  position: relative;
  min-height: 220px;
}

.slide-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

@media (min-width: 900px) {
  .slide-service-media {
    min-height: 100%;
  }

  .slide-service-media img {
    min-height: 380px;
  }
}

.slide-service-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.slide-service-body h3 {
  margin: 0;
  font-size: 1.65rem;
  color: var(--green-dark);
}

.slide-service-body p {
  margin: 0;
  color: var(--muted);
}

.checklist {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1rem 1.25rem;
  background: var(--white);
  border-top: 1px solid rgba(45, 90, 39, 0.08);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--green);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(45, 90, 39, 0.25);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.carousel-dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

/* Before / after compare */
.compare-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.compare-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 12px 36px rgba(29, 60, 25, 0.08);
}

.compare-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.compare-note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.compare {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  touch-action: none;
  user-select: none;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  max-height: 520px;
  margin-inline: auto;
  background: linear-gradient(135deg, #e8e4df, #d4cfc7);
}

.compare__layer {
  position: absolute;
  inset: 0;
}

.compare__after img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.compare__before {
  width: 50%;
  max-width: 100%;
  overflow: hidden;
  z-index: 2;
}

.compare__before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--compare-img-w, 100%);
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.compare__label {
  position: absolute;
  top: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 3;
  pointer-events: none;
}

.compare__label--before {
  left: 0.75rem;
  background: rgba(30, 44, 28, 0.85);
  color: var(--white);
}

.compare__label--after {
  right: 0.75rem;
  background: rgba(248, 148, 30, 0.95);
  color: var(--white);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 4;
  border: none;
  padding: 0;
  background: transparent;
  cursor: ew-resize;
  touch-action: none;
}

.compare__handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.compare__grip::before,
.compare__grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
}

.compare__grip::before {
  left: 8px;
  border-right-color: var(--green);
}

.compare__grip::after {
  right: 8px;
  border-left-color: var(--green);
}

/* Packages */
.package-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.package-offers {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .package-offers {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.package-offer {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  border: 2px solid rgba(45, 90, 39, 0.12);
  box-shadow: 0 10px 36px rgba(29, 60, 25, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-offer--featured {
  border-color: rgba(248, 148, 30, 0.55);
  box-shadow: 0 16px 44px rgba(248, 148, 30, 0.15);
}

.package-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(45, 90, 39, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.package-offer h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--green-dark);
  line-height: 1.3;
}

.package-offer ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.package-offer li + li {
  margin-top: 0.35rem;
}

.package-price {
  margin: 0.25rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--orange);
}

.package-price-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.package-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

.package-includes {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.package-includes h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--green-dark);
  text-align: center;
}

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

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(45, 90, 39, 0.08);
}

.package-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--green-dark);
}

.package-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Why Antalya */
.why-antalya {
  background: linear-gradient(
    165deg,
    rgba(246, 243, 238, 0.95) 0%,
    var(--white) 60%
  );
}

.why-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: 0 10px 34px rgba(29, 60, 25, 0.06);
}

.why-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.why-card h3 {
  margin: 0;
  padding: 1rem 1rem 0.25rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.why-card p {
  margin: 0;
  padding: 0 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Offers sign-up */
.offers-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.offers-form input {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(45, 90, 39, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.offers-form input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: transparent;
}

.offers-form .btn-block,
.offers-form .form-note {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .offers-form {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.section-contact {
  background: var(--green-dark);
  color: var(--white);
}

.contact-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.contact-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
}

.contact-logo {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.contact-copy p {
  margin: 0;
  opacity: 0.92;
  max-width: 46ch;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: transparent;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  color: var(--text);
}

.contact-form .btn-primary {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  min-height: 1.25em;
}

@media (max-width: 560px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  padding: 1.75rem 0;
  background: #152814;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  height: 46px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  margin: 0;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.link-btn {
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.link-btn:hover {
  color: var(--orange);
}

.link-btn--inline {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(21, 40, 20, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.cookie-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(860px, calc(100% - 2.5rem));
  margin: 4rem auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.modal-content {
  padding: 1.5rem 1.5rem 1.75rem;
}

.modal-content h2 {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
}

.modal-body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.modal-body h3 {
  margin: 1.1rem 0 0.35rem;
  color: var(--green-dark);
  font-size: 1.02rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(45, 90, 39, 0.18);
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  border-color: rgba(248, 148, 30, 0.55);
  color: var(--orange);
}
