@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff'),
       url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Raleway-Light.woff2') format('woff2'),
       url('../fonts/Raleway-Light.woff') format('woff'),
       url('../fonts/Raleway-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Raleway-Regular.woff2') format('woff2'),
       url('../fonts/Raleway-Regular.woff') format('woff'),
       url('../fonts/Raleway-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Raleway-SemiBold.woff2') format('woff2'),
       url('../fonts/Raleway-SemiBold.woff') format('woff'),
       url('../fonts/Raleway-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Raleway-Bold.woff2') format('woff2'),
       url('../fonts/Raleway-Bold.woff') format('woff'),
       url('../fonts/Raleway-Bold.ttf') format('truetype');
}

:root {
  --color-bg: #f0ede8;
  --color-brand: #1b4f7a;
  --color-accent: #2e7d52;
  --color-accent-bright: #3a9e72;
  --color-shadow: rgba(0, 0, 0, 0.15);

  --color-yellow: #c8a835;
  --color-orange: #c47a3a;
  --color-red: #b84e60;
  --color-dark-red: #8f3d4b;
  --color-pink: #9558a0;
  --color-blue: #5a8ec5;
  --color-dark-green: #3a5c42;
  --color-dark-blue: #163e5f;

  --color-yellow-light: #faf5e4;
  --color-orange-light: #faf0e6;
  --color-red-light: #f8eaed;
  --color-pink-light: #f4eaf6;
  --color-blue-light: #eaf1f8;

  --font-family: 'Raleway', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  background: var(--color-bg);
  font-family: var(--font-family);
  color: #333;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(240, 237, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 79, 122, 0.08);
  transition: transform 0.5s ease, opacity 0.5s ease, background 0.6s ease, border-color 0.6s ease;
}

.site-header.header-contact {
  background: rgba(50, 78, 56, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header.header-contact .header-brand {
  color: #fff;
}

.site-header.header-contact .header-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.site-header.header-contact .header-nav a:hover {
  color: #fff;
}

.site-header.header-contact .header-nav a.active {
  color: #fff;
  border-bottom-color: #fff;
}

.site-header.header-contact .hamburger-line {
  background: #fff;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.header-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-brand);
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: opacity 0.3s ease;
}

.header-brand:hover {
  opacity: 0.7;
}

.header-nav {
  display: flex;
  list-style: none;
  gap: 28px;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.header-nav a:hover {
  color: var(--color-brand);
}

.header-nav a.active {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
}

.site-section {
  scroll-margin-top: 60px;
}

.slide-hero {
  background: var(--color-bg);
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  scroll-margin-top: 0;
}

.ambient-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.8s ease;
}

.ambient-blobs.hidden {
  opacity: 0;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}

.ambient-blob--blue {
  width: 550px;
  height: 550px;
  top: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(90, 142, 197, 0.45), transparent 70%);
  animation: blobDrift1 18s ease-in-out infinite, blobFadeIn 2s ease 0.5s forwards;
}

.ambient-blob--pink {
  width: 480px;
  height: 480px;
  bottom: 0%;
  right: 15%;
  background: radial-gradient(circle, rgba(149, 88, 160, 0.35), transparent 70%);
  animation: blobDrift2 22s ease-in-out infinite, blobFadeIn 2s ease 1s forwards;
}

.ambient-blob--yellow {
  width: 500px;
  height: 500px;
  bottom: -12%;
  left: 2%;
  background: radial-gradient(circle, rgba(200, 168, 53, 0.35), transparent 70%);
  animation: blobDrift3 20s ease-in-out infinite, blobFadeIn 2s ease 1.5s forwards;
}

.ambient-blob--orange {
  width: 420px;
  height: 420px;
  top: 10%;
  left: 25%;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.3), transparent 70%);
  animation: blobDrift4 24s ease-in-out infinite, blobFadeIn 2s ease 2s forwards;
}

@keyframes blobFadeIn {
  to { opacity: 1; }
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.08); }
  66%      { transform: translate(30px, -20px) scale(0.93); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(35px, -25px) scale(1.1); }
  66%      { transform: translate(-20px, 35px) scale(0.95); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -40px) scale(1.08); }
}

@keyframes blobDrift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-30px, 20px) scale(1.12); }
  80%      { transform: translate(20px, -15px) scale(0.92); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
}

.logo-wrapper object {
  width: clamp(300px, 50vw, 680px);
  height: auto;
  display: block;
  pointer-events: none;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-brand);
  opacity: 0;
  cursor: pointer;
  transition: opacity ease 2s;
  animation: bounceDown 2s ease-in-out 3s infinite;
}

.slide-hero.is-visible .scroll-indicator {
  opacity: 0.5;
}

.hero-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(40px, 8vw, 40px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-hero.is-visible .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-subheadline {
  font-size: clamp(0.78rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--color-brand);
  text-align: center;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: inline-block;
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 3vw, 36px);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--color-brand);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
  background: var(--color-dark-blue);
  box-shadow: 0 8px 24px rgba(46, 125, 82, 0.3);
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.fixed-flower {
  position: fixed;
  top: 0;
  left: max(0px, calc(50% - 550px));
  width: 420px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  transform: translateY(100vh);
}

.mobile-section-flower {
  display: none;
}

.section-flower {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 40px;
}

.section-leaf {
  position: absolute;
  bottom: 45%;
  left: 48%;
  width: 140px;
  height: 192px;
  margin-left: -70px;
  margin-bottom: -16px;
  transform-origin: 50% 100%;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease, translate 0.8s ease;
  translate: 0 0;
  opacity: 0.3;
  filter: saturate(0.4);
}

.section-leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: rotate(175deg) scale(1);
  translate: 0 -32px;
  filter: drop-shadow(2px 3px 5px var(--color-shadow));
}

.section-leaf.sl1 { transform: rotate(190deg) scale(1); z-index: 5; }
.section-leaf.sl2 { transform: rotate(230deg) scale(1); z-index: 4; }
.section-leaf.sl3 { transform: rotate(270deg) scale(1); z-index: 3; }
.section-leaf.sl4 { transform: rotate(310deg) scale(1); z-index: 2; }
.section-leaf.sl5 { transform: rotate(350deg) scale(1); z-index: 1; }

.section-leaf.active-leaf {
  opacity: 0.9;
  filter: saturate(1);
  transform-origin: 50% 100%;
}

.section-leaf.active-leaf.sl1 { transform: rotate(190deg) scale(1.15); }
.section-leaf.active-leaf.sl2 { transform: rotate(230deg) scale(1.15); }
.section-leaf.active-leaf.sl3 { transform: rotate(270deg) scale(1.15); }
.section-leaf.active-leaf.sl4 { transform: rotate(310deg) scale(1.15); }
.section-leaf.active-leaf.sl5 { transform: rotate(350deg) scale(1.15); }

@keyframes floatLeaf {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.section-leaf.active-leaf {
  animation: floatLeaf 3s ease-in-out infinite;
}


.slide-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--color-bg);
  min-height: 100vh;
}

.section-wrapper {
  display: flex;
  width: 100%;
  max-width: 1100px;
  min-height: 100vh;
}

.section-left {
  width: 300px;
  flex-shrink: 0;
  position: relative;
}

.section-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px clamp(40px, 8vw, 100px) 60px clamp(40px, 6vw, 80px);
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.section-content {
  max-width: clamp(540px, 60vw, 860px);
  position: relative;
  z-index: 2;
  contain: layout style;
}

.section-content h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  will-change: transform, opacity;
}

.section-text {
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.15rem);
  line-height: 1.8;
  font-weight: 400;
  color: #555;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s, opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  will-change: transform, opacity;
}

.is-visible .section-content h2,
.is-visible .section-text {
  transform: translateY(0);
  opacity: 1;
}

.slide-yellow { background: var(--color-yellow-light); }
.slide-yellow .section-content h2 { color: var(--color-yellow); }

.slide-orange { background: var(--color-orange-light); }
.slide-orange .section-content h2 { color: var(--color-orange); }

.slide-red { background: var(--color-red-light); }
.slide-red .section-content h2 { color: var(--color-red); }
.slide-red .section-cta-button { background: var(--color-red); }
.slide-red .section-cta-button:hover { background: var(--color-dark-red); }

.slide-pink { background: var(--color-pink-light); }
.slide-pink .section-content h2 { color: var(--color-pink); }

.slide-blue { background: var(--color-blue-light); }
.slide-blue .section-content h2 { color: var(--color-blue); }

.contact-portrait {
  width: clamp(140px, 15vw, 200px);
  height: clamp(140px, 15vw, 200px);
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(30px) scale(0.9);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s,
              opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  will-change: transform, opacity;
}

.is-visible .contact-portrait {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.slide-contact {
  background: #a8c5a0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
}

.slide-contact .section-wrapper {
  max-width: 1400px;
}

.contact-scroll-inner {
  flex: 1;
  min-width: 0;
  padding: 80px clamp(40px, 8vw, 100px) 60px clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.contact-hero {
  text-align: center;
}

.contact-hero h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 3.2rem);
  font-weight: 700;
  color: #2a4a30;
  line-height: 1.2;
  margin-bottom: 16px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  will-change: transform, opacity;
}

.contact-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(42, 74, 48, 0.7);
  margin-bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  will-change: transform, opacity;
}

.is-visible .contact-hero h2,
.is-visible .contact-subtitle {
  transform: translateY(0);
  opacity: 1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s, opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  will-change: transform, opacity;
  justify-self: center;
}



.is-visible .contact-details {
  transform: translateY(0);
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: rgba(42, 74, 48, 0.85);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
}

.contact-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-item a {
  color: rgba(42, 74, 48, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2a4a30;
}

.contact-cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--color-dark-green);
  border-radius: 50px;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s, opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
}

.is-visible .contact-cta {
  transform: translateY(0);
  opacity: 1;
}

.contact-cta:hover {
  background: #2a4a30;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-footer {
  font-size: 0.8rem;
  color: rgba(42, 74, 48, 0.4);
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

.contact-footer a {
  color: rgba(42, 74, 48, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-footer a:hover {
  color: rgba(42, 74, 48, 0.85);
}

.contact-scroll-inner .contact-footer {
  width: 100%;
  padding-bottom: 8px;
}

/* ── Two-column contact body ── */

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-form-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  font-weight: 700;
  color: #2a4a30;
  margin-bottom: 24px;
}

/* ── Contact form ── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(42, 74, 48, 0.7);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(42, 74, 48, 0.22);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-family);
  color: #333;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(42, 74, 48, 0.5);
  box-shadow: 0 0 0 3px rgba(42, 74, 48, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: var(--font-family);
  color: #fff;
  background: var(--color-dark-green);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
  background: #2a4a30;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 11px 14px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(42, 74, 48, 0.12);
  color: #2a4a30;
  border: 1px solid rgba(42, 74, 48, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(184, 78, 96, 0.1);
  color: var(--color-dark-red);
  border: 1px solid rgba(184, 78, 96, 0.2);
}

.contact-map {
  height: clamp(180px, 22vw, 320px);
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin-top: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 36px) clamp(18px, 2vw, 30px);
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: #555;
  font-style: italic;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.cards-visible .card {
  animation: cardPopUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.cards-visible .card:nth-child(1) { animation-delay: 0.35s; }
.cards-visible .card:nth-child(2) { animation-delay: 0.5s; }
.cards-visible .card:nth-child(3) { animation-delay: 0.65s; }
.cards-visible .card:nth-child(4) { animation-delay: 0.8s; }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(8px, 1.5vw, 20px);
  margin-top: 24px;
}

@keyframes cardPopUp {
  0%   { opacity: 0; transform: translateY(18px) scale(0.96); }
  65%  { opacity: 1; transform: translateY(-3px) scale(1.015); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.offer-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 36px) clamp(14px, 2vw, 28px);
  border: 1px solid rgba(184, 78, 96, 0.1);
  border-top: 3px solid var(--color-red);
  box-shadow: 0 4px 24px rgba(184, 78, 96, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
              border-color 0.4s ease,
              background 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.cards-visible .offer-box {
  animation: cardPopUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.cards-visible .offer-box:nth-child(1) { animation-delay: 0.35s; }
.cards-visible .offer-box:nth-child(2) { animation-delay: 0.5s; }
.cards-visible .offer-box:nth-child(3) { animation-delay: 0.65s; }
.cards-visible .offer-box:nth-child(4) { animation-delay: 0.8s; }

.offer-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 78, 96, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.offer-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(184, 78, 96, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(184, 78, 96, 0.25);
  border-top-color: var(--color-red);
  background: rgba(255, 255, 255, 0.85);
}

.offer-box:hover::before {
  opacity: 1;
}

.offer-box h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.offer-box p {
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  line-height: 1.65;
  color: #666;
  margin-bottom: 12px;
}

.section-cta-button {
  display: inline-block;
  margin-top: 28px;
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 3vw, 36px);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--color-blue);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
  transform: translateY(20px);
  opacity: 0;
}

.is-visible .section-cta-button {
  transform: translateY(0);
  opacity: 1;
}

.section-cta-button:hover {
  background: #4a7db5;
  box-shadow: 0 8px 24px rgba(90, 142, 197, 0.3);
}

.section-content .section-text + .section-text {
  margin-top: clamp(12px, 1.5vw, 20px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(240, 237, 232, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  flex-direction: column;
  padding: 80px 32px 40px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav a {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--color-brand);
  background: rgba(27, 79, 122, 0.06);
}

@media screen and (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .sidebar { display: flex; }
}

@media screen and (max-width: 768px) {
  .header-inner { padding: 10px 20px; }

  .fixed-flower {
    width: 100%;
    left: 0;
    justify-content: center;
    align-items: center;
  }

  .section-flower {
    width: 280px;
    height: 280px;
  }

  .section-leaf {
    width: 100px;
    height: 136px;
    margin-left: -50px;
  }

  .slide-section {
    flex-direction: column;
    min-height: unset;
  }

  .section-wrapper {
    flex-direction: column;
    max-width: none;
    min-height: unset;
  }

  .slide-contact {
    min-height: unset;
  }

  .section-left { display: none; }

  .section-right {
    width: 100%;
    padding: 40px 24px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .section-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
  }

  .slide-contact .section-right { padding: 0; }
  .contact-scroll-inner { padding: 80px 24px 40px; gap: 28px; }
  .contact-body { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-heading { text-align: center; }
  .contact-item { justify-content: center; }
  .contact-item-body { text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .scroll-indicator { bottom: 24px; }

  .fixed-flower { display: none; }

  .mobile-section-flower {
    display: block;
    position: absolute;
    left: -8px;
    top: -35px;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  }

  .is-visible .mobile-section-flower {
    opacity: 1;
  }

  .mobile-section-flower .section-flower {
    width: 64px;
    height: 64px;
    margin-left: 0;
    transform: rotate(45deg);
  }

  .mobile-section-flower .section-leaf {
    width: 24px;
    height: 32px;
    margin-left: -12px;
    margin-bottom: -4px;
  }

  .mobile-section-flower .section-leaf img {
    translate: 0 -4px;
  }

  .section-content h2 {
    padding-left: 20px;
  }

  @keyframes floatLeaf {
    0%, 100% { translate: 0 0; }
    50% { translate: -2px -3px; }
  }
}

.subpage-body,
.subpage-body html {
  overflow: auto;
  height: auto;
  background: var(--color-bg);
}

html:has(.subpage-body) {
  overflow: auto;
  height: auto;
}

.subpage-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(240, 237, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 79, 122, 0.08);
}

.subpage-main {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  padding: 60px 32px 80px;
}

.subpage-content {
  max-width: 760px;
  width: 100%;
}

.subpage-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 12px;
  line-height: 1.2;
}

.subpage-content .legal-intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: #888;
  margin-bottom: 24px;
}

.subpage-content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.legal-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 79, 122, 0.08);
}

.legal-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-section h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--color-accent-bright);
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-section ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 4px;
}

.subpage-footer {
  background: #a8c5a0;
  padding: 24px 32px;
  text-align: center;
}

.subpage-footer-inner {
  font-size: 0.8rem;
  color: rgba(42, 74, 48, 0.6);
  letter-spacing: 0.5px;
}

.subpage-footer a {
  color: rgba(42, 74, 48, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.subpage-footer a:hover {
  color: rgba(42, 74, 48, 1);
}

@media screen and (max-width: 960px) {
  .subpage-header .header-nav { display: none; }
  .subpage-header .hamburger { display: flex; }
  .subpage-header + .sidebar-overlay + .sidebar { display: flex; }
}

@media screen and (max-width: 768px) {
  .subpage-header .header-inner {
    padding: 10px 20px;
  }

  .subpage-header .header-brand {
    font-size: 0.9rem;
  }

  .subpage-main {
    padding: 40px 20px 60px;
  }

  .subpage-content h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section p,
  .legal-section ul li,
  .subpage-content > p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .subpage-content h1 {
    font-size: 1.6rem;
  }

  .legal-section h2 {
    font-size: 1.15rem;
  }

  .legal-section p,
  .legal-section ul li,
  .subpage-content > p {
    font-size: 0.88rem;
  }
}

.notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(42, 74, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.notice-bar.visible {
  transform: translateY(0);
}

.notice-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.notice-bar-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.notice-bar-text a {
  color: #a8d5a0;
  text-decoration: underline;
}

.notice-bar-text a:hover {
  color: #fff;
}

.notice-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.notice-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.notice-btn:hover {
  transform: translateY(-1px);
}

.notice-btn-accept {
  background: #fff;
  color: #2a4a30;
}

.notice-btn-accept:hover {
  background: #e8f5e8;
}

.notice-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.notice-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.map-container {
  width: 100%;
  height: 150px;
  margin: 20px auto 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.map-blocked-message {
  text-align: center;
  padding: 20px;
}

.map-blocked-message p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}

.map-accept-btn {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  background: var(--color-dark-green);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.map-accept-btn:hover {
  background: #2a4a30;
  transform: translateY(-1px);
}

.cookie-settings-link {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .notice-bar {
    padding: 16px 20px;
  }

  .notice-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .notice-bar-text {
    font-size: 0.82rem;
    min-width: unset;
  }

  .notice-bar-actions {
    justify-content: center;
  }

  .map-container {
    height: 130px;
  }
}

@media (prefers-contrast: more) {
  :root {
    --color-yellow: #5e4500;
    --color-orange: #7a3d00;
    --color-pink: #5c1a6e;
    --color-blue: #1a4f8a;
    --color-accent-bright: #1f6e3c;
  }

  /* Solidify semi-transparent text on the green contact/footer background (#a8c5a0)  */
  .contact-subtitle,
  .contact-item,
  .contact-item a,
  .form-group label,
  .contact-footer,
  .contact-footer a {
    color: #2a4a30;
  }

  .contact-item a:hover,
  .contact-footer a:hover {
    color: #1a3420;
  }

  .subpage-footer-inner,
  .subpage-footer a {
    color: #2a4a30;
  }

  .subpage-footer a:hover {
    color: #1a3420;
  }

  /* Legal intro (#888 on page background is ~3:1, lift to #555) */
  .subpage-content .legal-intro {
    color: #555;
  }

  /* Keep CTA button readable when --color-blue darkens and hover would otherwise lighten it */
  .section-cta-button:hover {
    background: var(--color-blue);
  }
}
