:root {
  /* Magentopood strip: inset from viewport right (see roomfit.eu–style layout) */
  --magentopood-strip-w: 30px;
  --magentopood-from-edge: clamp(1.25rem, 1.25rem + 2vw, 4.75rem);
  --button-outline: rgba(0, 0, 0, 0.1);
  --background: 60 20% 97%;
  --foreground: 148 35% 16%;
  --border: 140 14% 85%;
  --card: 0 0% 100%;
  --primary: 148 35% 16%;
  --primary-foreground: 60 20% 97%;
  --secondary: 140 14% 85%;
  --muted-foreground: 148 20% 40%;
  --accent: 37 90% 55%;
  --accent-foreground: 0 0% 100%;
  --radius: 0.75rem;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --shadow-card: 0 4px 24px hsl(var(--foreground) / 0.06);
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

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

a:hover {
  color: hsl(var(--primary));
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background: hsl(var(--secondary) / 0.35);
}

.section--primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.section__heading {
  font-size: clamp(1.75rem, 3vw, 2rem);
  color: hsl(var(--primary));
  margin-bottom: 3rem;
}

.section__heading.center,
.center {
  text-align: center;
}

.section__intro {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section__intro h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: hsl(var(--primary));
}

.lead {
  font-size: 1.05rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}

.muted {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  /* Reserve space for fixed .brand-strip (offset from right + 30px width + safe area) */
  padding-inline-end: calc(var(--magentopood-from-edge) + var(--magentopood-strip-w) + 0.75rem + env(safe-area-inset-right, 0px));
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.85);
}

.nav__links a:hover {
  color: hsl(var(--primary));
}

.nav__cta {
  display: inline-flex;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .nav__cta {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-right: 0;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: hsl(var(--primary));
  border-radius: 1px;
}

.nav__lang {
  margin-left: auto;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

.lang-select {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 1.75rem 0.35rem 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a3628' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  max-width: 9.5rem;
}

.lang-select:focus {
  outline: none;
  box-shadow: 0 0 0 1px hsl(var(--primary));
}

.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;
}

@media (min-width: 900px) {
  .nav__links {
    display: inline-flex;
    flex: 1;
    justify-content: center;
  }
  .nav__lang {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .nav__toggle {
    display: none;
  }
}

body.nav-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(var(--background));
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  min-height: 2.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn--primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn--primary:hover {
  background: hsl(var(--primary) / 0.92);
}

.btn--outline {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
  box-shadow: 0 1px 2px hsl(var(--foreground) / 0.04);
}

.btn--outline:hover {
  background: hsl(var(--background));
}

.btn--accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.btn--accent:hover {
  filter: brightness(1.05);
}

.btn--lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  margin-bottom: 1.5rem;
}

.eyebrow .icon {
  width: 1rem;
  height: 1rem;
}

.eyebrow--subtle {
  background: hsl(var(--primary) / 0.08);
  border-color: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero__title em {
  font-style: italic;
  color: hsl(var(--primary));
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.6;
}

.hero__visual {
  position: relative;
}

.hero__photo {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: hsl(var(--secondary));
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  left: -0.5rem;
  bottom: -1.5rem;
  max-width: 220px;
  padding: 1.25rem;
  background: hsl(var(--card));
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
}

.hero__badge--rotate .hero__badge-stack {
  position: relative;
  min-height: 4.75rem;
}

.hero__badge-face {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.hero__badge-face.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__leaf-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(140 60% 92%);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__leaf-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 640px) {
  .hero__badge {
    left: 0.5rem;
    bottom: -1rem;
    max-width: 200px;
  }
}

.hero__badge-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero__trust-logo {
  color: #00b67a;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hero__badge-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}

.hero__badge-text {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
}

/* Feature grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--4 {
  grid-template-columns: 1fr;
}

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

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

.feature-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 1px 3px hsl(var(--foreground) / 0.04);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 30px hsl(var(--foreground) / 0.08);
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
}

/* Split */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split--reverse .split__text {
    order: 1;
  }
  .split--reverse .split__dual {
    order: 0;
  }
}

.split__media {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1;
  background: hsl(var(--secondary));
}

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

.split__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.split__text .lead {
  margin-bottom: 2.5rem;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checks li {
  display: flex;
  gap: 1rem;
}

.checks__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(var(--accent) / 0.12);
  color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.checks__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.checks strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.checks span:not(.checks__icon) {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Flavors */
.flavors {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .flavors {
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
  }
}

.flavors h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.flavors__intro {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.flavors ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.flavors li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.dot--g { background: #4ade80; }
.dot--t { background: #2dd4bf; }
.dot--r { background: #f87171; }
.dot--y { background: #facc15; }
.dot--d { background: #15803d; }

.flavors__img {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: hsl(var(--primary-foreground) / 0.1);
}

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

/* Pricing */
.grid--3 {
  grid-template-columns: 1fr;
}

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

.pricing {
  gap: 2rem;
}

.price-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card h3 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.price-card__price {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.price-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.price-card li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price-card--featured {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
  transform: none;
  padding-top: 2.5rem;
}

@media (min-width: 900px) {
  .price-card--featured {
    transform: translateY(-1rem);
  }
}

.price-card--featured h3 {
  color: hsl(var(--primary-foreground));
}

.price-card__muted {
  color: hsl(var(--primary-foreground) / 0.82);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.price-card--featured .price-card__price {
  color: hsl(var(--primary-foreground));
}

.price-card--featured .price-card__price span {
  color: hsl(var(--primary-foreground) / 0.65);
}

.price-card--featured ul {
  color: hsl(var(--primary-foreground) / 0.92);
}

.price-card__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

/* Branding dual images */
.split__dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.split__dual-item {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: hsl(var(--secondary));
}

.split__dual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__dual-item--down {
  margin-top: 2rem;
}

.split__dual-item--up {
  margin-top: -2rem;
}

@media (max-width: 1023px) {
  .split__dual-item--down,
  .split__dual-item--up {
    margin-top: 0;
  }
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.tick-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* Contact */
.contact-wrap {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.contact {
  position: relative;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.contact__aside h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.contact__direct {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.contact__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: hsl(var(--secondary));
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.small-label {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.contact__aside a {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact__call {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.link-book {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__form-panel {
  background: hsl(var(--card));
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact__form-panel {
    padding: 3rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  min-height: 2.75rem;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--background));
  color: inherit;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px hsl(var(--primary));
}

.field__error {
  display: block;
  font-size: 0.8rem;
  color: #b91c1c;
  margin-top: 0.25rem;
  min-height: 1.1em;
}

.form-status {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.hidden,
.hidden[hidden],
form#quote-form.hidden {
  display: none !important;
}

.form-success__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__icon svg {
  width: 2rem;
  height: 2rem;
}

.form-success h3 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.form-success p {
  color: hsl(var(--muted-foreground));
  max-width: 24rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  background: hsl(var(--secondary) / 0.25);
}

.faq {
  max-width: 48rem;
}

.accordion {
  border-top: 1px solid hsl(var(--border));
}

.accordion__item {
  border-bottom: 1px solid hsl(var(--border));
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font: inherit;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.accordion__num {
  flex-shrink: 0;
  width: 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  font-variant-numeric: tabular-nums;
}

.accordion__label {
  flex: 1;
  min-width: 0;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.accordion__chev::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid hsl(var(--muted-foreground));
  border-bottom: 2px solid hsl(var(--muted-foreground));
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"] .accordion__chev::after {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.accordion__panel {
  padding-bottom: 1.25rem;
}

.accordion__panel p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer__copy {
  font-size: 0.875rem;
  opacity: 0.65;
}

.footer__link {
  font-size: 0.875rem;
  opacity: 0.95;
}

.footer a:hover {
  color: #fff;
}

/* Scroll-in image motion (IntersectionObserver adds .is-in-view) */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll.reveal--delay {
  transition-delay: 0.1s;
}

.reveal-on-scroll.reveal--delay-lg {
  transition-delay: 0.22s;
}

.reveal-on-scroll.reveal--fade-soft {
  transform: none;
  opacity: 0;
}

.reveal-on-scroll.reveal--fade-soft.is-in-view {
  opacity: 0.1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .contact-bg.reveal-on-scroll.reveal--fade-soft {
    opacity: 0.1 !important;
  }
}

/* Magentopood developer branding — fixed top-right, inset from viewport edge (not flush) */
.brand-strip {
  position: fixed;
  top: 0;
  right: calc(var(--magentopood-from-edge) + env(safe-area-inset-right, 0px));
  z-index: 2147483000;
  box-sizing: border-box;
  width: var(--magentopood-strip-w);
  height: 40px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #af0202;
  color: #fff;
  caret-color: #fff;
  border-radius: 0 0 2px 2px;
  box-shadow: -2px 2px 5px 0 rgba(0, 0, 0, 0.2);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  overflow: visible;
  pointer-events: auto;
}

.brand-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.brand-strip a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.brand-strip a:hover {
  filter: brightness(1.05);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.brand-logo svg {
  display: block;
  width: 25px;
  height: 25px;
  max-width: 100%;
  overflow: visible;
  flex-shrink: 0;
  object-fit: contain;
}
