/*
Theme Name: YogafinaFlow
Theme URI: https://www.YogafinaFlow.online
Author: YogafinaFlow
Author URI: https://www.YogafinaFlow.online
Description: Elegant alpine yoga WordPress theme for YogafinaFlow in Wagrein. Botanical spa layout with Startseite, Über uns, Leistungen, and Kontakt.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yogafinaflow
Tags: one-page, custom-menu, featured-images, translation-ready, health
*/

:root {
  --forest: #1c3a2e;
  --forest-deep: #12261e;
  --sage: #6f8f6c;
  --sage-soft: #c9d6c4;
  --cream: #f4efe7;
  --ivory: #fbf8f3;
  --sand: #e6d9c8;
  --clay: #c46b4a;
  --clay-deep: #a35438;
  --ink: #241f1a;
  --muted: #6a635b;
  --line: rgba(28, 58, 46, 0.12);
  --white: #ffffff;
  --header-h: 84px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 28px;
  --shadow: 0 18px 50px rgba(18, 38, 30, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

address {
  font-style: normal;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.yff-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3,
.yff-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.yff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.yff-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.yff-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.yff-btn:hover {
  transform: translateY(-2px);
}

.yff-btn-clay {
  background: var(--clay);
  color: var(--white);
}

.yff-btn-clay:hover {
  background: var(--clay-deep);
}

.yff-btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.yff-btn-ghost:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.yff-btn-forest {
  background: var(--forest);
  color: var(--white);
}

.yff-btn-forest:hover {
  background: var(--forest-deep);
}

.yff-btn-full {
  width: 100%;
}

/* Header — floating cream bar */
.yff-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 14px 0 0;
  transition: padding 0.25s ease;
}

.yff-header-inner {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(18, 38, 30, 0.08);
}

.yff-nav {
  position: fixed;
  left: 50%;
  top: 14px;
  height: var(--header-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 45;
}

.yff-header.is-scrolled + .yff-nav {
  top: 10px;
}

.yff-header.is-scrolled {
  padding-top: 10px;
}

.yff-header.is-scrolled .yff-header-inner {
  background: rgba(251, 248, 243, 0.96);
}

.yff-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
}

.yff-mark {
  width: 42px;
  height: 42px;
  color: var(--sage);
  flex-shrink: 0;
}

.yff-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.yff-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.yff-logo-kicker {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}

.yff-logo-name {
  font-size: 22px;
  line-height: 1;
  color: var(--forest);
}

.yff-nav ul {
  display: flex;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.yff-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.yff-nav a:hover,
.yff-nav a.is-active {
  color: var(--forest);
  background: var(--sand);
}

.yff-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yff-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
}

.yff-header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.yff-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.yff-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--forest);
}

.yff-toggle span:nth-child(1) { top: 14px; }
.yff-toggle span:nth-child(2) { top: 20px; }
.yff-toggle span:nth-child(3) { top: 26px; }

/* Hero — full-bleed sanctuary */
.yff-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end stretch;
  color: var(--white);
  overflow: hidden;
}

.yff-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.yff-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.yff-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 38, 30, 0.18) 0%, rgba(18, 38, 30, 0.28) 38%, rgba(18, 38, 30, 0.78) 100%);
}

.yff-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 56px;
}

.yff-hero-content .yff-eyebrow {
  color: var(--sage-soft);
}

.yff-hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
  color: var(--white);
}

.yff-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f0e4d2;
}

.yff-hero-lead {
  margin: 0 0 32px;
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.84);
}

.yff-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.yff-hero-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.yff-chip {
  background: rgba(251, 248, 243, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 18px;
}

.yff-chip span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 6px;
}

.yff-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

/* Moments — circular portraits */
.yff-moments {
  background: var(--cream);
  padding: 72px 0;
}

.yff-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.yff-moments figure {
  margin: 0;
}

.yff-moments img {
  width: min(220px, 70%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  outline: 8px solid var(--ivory);
  box-shadow: var(--shadow);
}

.yff-moments h3 {
  margin: 0 0 6px;
  font-size: 28px;
  color: var(--forest);
}

.yff-moments p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* About — offset photo stack */
.yff-about {
  padding: 112px 0;
  background: var(--ivory);
}

.yff-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.yff-about h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--forest);
}

.yff-about-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.yff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.yff-stats dt {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--clay);
  line-height: 1;
}

.yff-stats dd {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.yff-about-visual {
  position: relative;
  min-height: 520px;
}

.yff-about-main {
  margin: 0;
  width: 82%;
  margin-left: auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.yff-about-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.yff-about-inset {
  position: absolute;
  left: 0;
  bottom: 24px;
  margin: 0;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  outline: 10px solid var(--ivory);
  box-shadow: var(--shadow);
}

.yff-about-inset img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.yff-about-badge {
  position: absolute;
  right: 18px;
  top: 24px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  line-height: 1.35;
}

/* Classes — photo cards */
.yff-classes {
  padding: 108px 0;
  background: var(--forest);
  color: var(--white);
}

.yff-section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.yff-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 52px);
}

.yff-section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
}

.yff-classes .yff-eyebrow {
  color: var(--sage-soft);
}

.yff-class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.yff-class-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.yff-class-card figure {
  margin: 0;
  height: 210px;
  overflow: hidden;
}

.yff-class-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.yff-class-card:hover img {
  transform: scale(1.06);
}

.yff-class-body {
  padding: 22px 22px 24px;
}

.yff-class-meta {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-soft);
}

.yff-class-body h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.yff-class-body p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}

/* Quote — image overlay */
.yff-quote {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  color: var(--white);
  overflow: hidden;
}

.yff-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yff-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 38, 30, 0.62);
}

.yff-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.yff-quote p {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 18px;
}

.yff-quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-soft);
}

/* Services — bento */
.yff-services {
  padding: 112px 0;
  background: var(--cream);
}

.yff-services .yff-section-head h2,
.yff-schedule .yff-section-head h2,
.yff-gallery .yff-section-head h2,
.yff-contact .yff-section-head h2 {
  color: var(--forest);
}

.yff-services .yff-section-head p,
.yff-schedule .yff-section-head p,
.yff-gallery .yff-section-head p,
.yff-contact .yff-section-head p {
  color: var(--muted);
}

.yff-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.yff-bento-lg {
  grid-column: 1 / -1;
}

.yff-offer {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.yff-bento-lg {
  min-height: 540px;
}

.yff-offer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yff-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 38, 30, 0.05) 20%, rgba(18, 38, 30, 0.78) 100%);
}

.yff-offer-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.yff-offer-body h3 {
  margin: 0 0 8px;
  font-size: 32px;
}

.yff-offer-body p {
  margin: 0 0 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.yff-offer-body ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yff-offer-body li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.yff-offer-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0e4d2;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Schedule — day cards */
.yff-schedule {
  padding: 108px 0;
  background: var(--ivory);
}

.yff-schedule-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.yff-schedule-copy figure {
  margin: 28px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.yff-schedule-copy img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.yff-days {
  display: grid;
  gap: 10px;
}

.yff-day {
  display: grid;
  grid-template-columns: 92px 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.yff-day strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest);
}

.yff-day span {
  font-size: 14px;
  color: var(--muted);
}

.yff-day em {
  font-style: normal;
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.yff-day-wide {
  grid-template-columns: 92px 1fr;
}

/* Gallery */
.yff-gallery {
  padding: 48px 0 108px;
  background: var(--ivory);
}

.yff-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.yff-gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  height: 240px;
}

.yff-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.yff-gallery figure:hover img {
  transform: scale(1.05);
}

/* Contact */
.yff-contact {
  background: var(--cream);
  padding: 108px 0 0;
}

.yff-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
}

.yff-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.yff-contact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.yff-contact-details {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.yff-contact-details a {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.yff-contact-details a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.yff-contact-details span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.yff-contact-details strong {
  display: block;
  font-size: 16px;
  color: var(--forest);
}

.yff-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  outline: none;
  border-radius: 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--clay);
  font-weight: 500;
}

.yff-map {
  height: 380px;
}

.yff-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

/* Footer */
.yff-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.64);
  padding: 72px 0 0;
}

.yff-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yff-footer .yff-logo-name {
  color: var(--white);
}

.yff-footer .yff-mark {
  color: var(--sage-soft);
}

.yff-footer-brand p {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 300;
  max-width: 340px;
}

.yff-footer h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin: 8px 0 18px;
}

.yff-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.yff-footer-links a:hover,
.yff-footer a:hover {
  color: var(--sage-soft);
}

.yff-footer address,
.yff-footer p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.yff-footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.yff-footer-bar a {
  color: var(--sage-soft);
}

.yff-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--forest);
  color: var(--white);
  padding: 16px 22px;
  z-index: 60;
  font-size: 13px;
  border-radius: 16px;
  border-left: 3px solid var(--clay);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.yff-toast.is-visible {
  transform: translateY(0);
}

.yff-page {
  padding: calc(var(--header-h) + 64px) 0 80px;
}

.yff-entry h1 {
  color: var(--forest);
}

.yff-entry a {
  color: var(--clay-deep);
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .yff-phone,
  .yff-header-cta {
    display: none;
  }

  .yff-toggle {
    display: block;
    position: relative;
    z-index: 50;
  }

  .yff-nav {
    position: fixed;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    transform: none;
    background: var(--forest);
    display: none;
    padding: 110px 32px 40px;
    z-index: 35;
    align-items: flex-start;
  }

  .yff-nav.is-open {
    display: block;
  }

  .yff-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .yff-nav a {
    font-size: 32px;
    font-family: var(--font-display);
    color: var(--white);
    padding: 8px 0;
  }

  .yff-nav a:hover,
  .yff-nav a.is-active {
    background: transparent;
    color: var(--sage-soft);
  }
}

@media (max-width: 980px) {
  .yff-about-grid,
  .yff-class-grid,
  .yff-bento,
  .yff-schedule-layout,
  .yff-contact-grid,
  .yff-footer-grid,
  .yff-moments-grid {
    grid-template-columns: 1fr 1fr;
  }

  .yff-bento-lg {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .yff-class-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .yff-header {
    padding-top: 8px;
  }

  .yff-header-inner {
    border-radius: 22px;
  }

  .yff-hero-chips,
  .yff-moments-grid,
  .yff-about-grid,
  .yff-class-grid,
  .yff-bento,
  .yff-schedule-layout,
  .yff-gallery-grid,
  .yff-contact-grid,
  .form-row,
  .yff-footer-grid,
  .yff-stats {
    grid-template-columns: 1fr;
  }

  .yff-about-visual {
    min-height: 420px;
  }

  .yff-about-main {
    width: 100%;
  }

  .yff-about-main img {
    height: 320px;
  }

  .yff-about-inset {
    width: 48%;
    bottom: 0;
  }

  .yff-day,
  .yff-day-wide {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .yff-form {
    padding: 24px 20px;
  }

  .yff-hero-content {
    padding: 120px 0 40px;
  }
}

@media (max-width: 560px) {
  .yff-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .yff-hero h1 {
    font-size: 44px;
  }

  .yff-footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .yff-gallery figure {
    height: 200px;
  }
}
