/* Keep Your Balance — self-hosted brand faces.
 * Generated by tools/build-fonts.mjs. Do not edit by hand.
 * Source: Google Fonts (Cookie, Sen and DM Sans are all OFL licensed),
 * downloaded once, subset to Latin + Latin Extended, served from this domain.
 */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dmsans-400.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dmsans-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dmsans-700.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dmsans-400i.woff2') format('woff2');
}

@font-face {
  font-family: 'Sen';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/sen-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Cookie';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cookie-400.woff2') format('woff2');
}

/* Keep Your Balance — base layer.
 *
 * The first block is the <helmet> stylesheet from the approved designs, merged
 * (the ten pages carried the same rules plus one or two page-specific ones).
 * Everything after it replaces behaviour that used to live in JavaScript, so
 * the page is correct before — and without — any script.
 */

/* ---------------------------------------------------------------- designs */

html, body { margin: 0; padding: 0; }
* { box-sizing: border-box; }
a { color: #5F7E54; text-decoration: none; }
a:hover { color: #083D05; }
img { display: block; max-width: 100%; }

/* ------------------------------------------------------- the wide screen */

/* Every <img> carries width and height attributes so the browser can reserve
 * the right box before the file arrives — that is what keeps the page from
 * jumping as it loads. Those attributes are *presentational hints* for the CSS
 * `width` and `height` properties, not just a ratio, and the design's own rules
 * set only `width`. So the height hint survived: an image was laid out at the
 * width the layout gave it and at its natural pixel height. With `object-fit:
 * cover` that cropped a photograph to a tall vertical strip; with `contain` it
 * letterboxed a small picture inside a very tall box, which is where the pale
 * green voids in the retreat tiles came from.
 *
 * `height: auto` hands the height back to `aspect-ratio`. It is an element
 * selector, so any design rule that sets a height of its own still wins.
 *
 * This was never a wide-screen bug — it was there at every width. A wide window
 * is simply where it becomes impossible to miss. */
img { height: auto; }

/* Above 1920 the content stops growing. The bands it sits on do not.
 *
 * The first version of this rule capped header, main and footer at 1920 and
 * centred them. That did stop the layout growing — but it capped the coloured
 * bands with it, so above 1920 every tinted section stopped 320 pixels short of
 * the window and a white gutter ran down both sides. On the sign-in in front of
 * the dashboard, which is one tinted surface and nothing else, that is all you
 * saw: a pale green card floating in two white margins. Bram found it on a
 * 2560-wide screen and he was right — it reads as a broken page, not as a frame.
 *
 * So the cap is gone from here and nothing replaced it: every content container
 * in the design already caps itself at 1080 or 1400 and centres on the window,
 * which is the same place the old rule put it. Backgrounds and the two hairline
 * rules under the header and above the footer now reach the edge of the window
 * at any width. Nothing at or below 1920 moves by a pixel — tools/browser-check
 * asserts both halves of that, and the seam check there is what would have
 * caught this in the first place.
 *
 * The page's own ground comes from <body>, which carries a colour per page
 * (layouts/base.njk). html deliberately has none, so body's background is the
 * one that propagates to the canvas — that is what puts the tint behind the
 * gate all the way out, including anywhere the window is taller than the page. */

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::marker { content: ''; }

input, textarea, button { font: inherit; color: inherit; }
::placeholder { color: #A8AEA2; }

@keyframes kyb-float { from { transform: translateY(-3.5px); } to { transform: translateY(3.5px); } }

/* Reveal animations only exist once the script has run. Without it every
 * [data-reveal] element is simply visible. */
html:not(.js-reveal) [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ------------------------------------------------- interaction, in CSS now */

/* Underline under the active and hovered navigation item. */
[data-nav-link]:hover [data-underline],
[data-nav-link]:focus-visible [data-underline],
[data-nav-link][data-active="1"] [data-underline] { transform: scaleX(1); }

/* Card hover: the image breathes, the arrow steps right. */
@media (hover: hover) {
  [data-card]:hover img { transform: scale(1.03); }
  [data-card]:hover [data-arrow] { transform: translateX(4px); }
}

/* Retreat accordions are native <details>. They ship open so the copy is
 * readable without JavaScript; site.js closes them and swaps the label. */
details[open] > summary [data-chev] { transform: rotate(-135deg); }

/* Elements that only make sense once the script runs. */
html:not(.js-reveal) [data-nojs-hide] { display: none !important; }

/* --------------------------------------------------------- mobile menu */

/* Opened by :target without JavaScript, by a class once site.js takes over. */
.kyb-menu { display: none; }
.kyb-menu:target,
html.kyb-menu-open .kyb-menu { display: flex; }
html.kyb-menu-open, html.kyb-menu-open body { overflow: hidden; }

/* ------------------------------------------------------------- galleries */

/* A gallery is a wrapped row of equal tiles, not a grid, and that is a
 * deliberate choice.
 *
 * `repeat(auto-fit, minmax(…, 1fr))` — what the designs use — has two failure
 * modes at the end of a gallery. If the track count does not divide the tile
 * count, the last row ends in a hole: four photographs in a five-track grid
 * left a quarter of the row empty. And when `auto-fit` collapses the empty
 * tracks instead, the surviving tiles in that row grow wider than every other
 * tile on the page, which is worse — the gallery stops looking uniform.
 *
 * Flex with a fixed basis and no growth keeps every tile exactly the same
 * width, and `justify-content: center` puts a short last line in the middle,
 * where it reads as the end of a gallery rather than as something missing.
 *
 * One gutter for every gallery on the site, set here rather than per block. */
.kyb-gallery {
  --kyb-gap: clamp(14px, 1.8vw, 22px);
  --kyb-cols: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--kyb-gap);
}
.kyb-gallery > * {
  flex: 0 1 calc((100% - (var(--kyb-cols) - 1) * var(--kyb-gap)) / var(--kyb-cols));
  min-width: 0;
}
/* Galleries of plain photographs carry no caption, so they take more per row. */
.kyb-gallery-wide { --kyb-cols: 4; }
/* Small galleries inside a card: tighter, and never wider than three. */
.kyb-gallery-inset { --kyb-gap: 8px; --kyb-cols: 3; }

@media (max-width: 900px) {
  .kyb-gallery { --kyb-cols: 2; }
  /* Restated after the line above, which is what makes it win: same
   * specificity, later in the file. */
  .kyb-gallery-wide { --kyb-cols: 2; }
  .kyb-gallery-inset { --kyb-cols: 3; }
}
@media (max-width: 560px) {
  .kyb-gallery { --kyb-cols: 1; }
  /* Pictures without words stay more than one-up: one square per screen is a
   * slideshow, not a gallery. */
  .kyb-gallery-wide { --kyb-cols: 2; }
  .kyb-gallery-inset { --kyb-cols: 3; }
}

/* The tile itself: one crop for every tile in a gallery, so a portrait
 * clipping and a landscape still occupy the same box. */
.kyb-tile-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #232323;
}
/* Descendant, not child: the build wraps every image in a <picture>, so the
 * image is a grandchild of the frame even though `display: contents` means it
 * is the frame's child as far as layout is concerned. */
.kyb-tile-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------ split cards */

/* A card that is one photograph and one block of text.
 *
 * The design lays this out with `repeat(auto-fit, minmax(min(100%, 340px),
 * 1fr))`, which is a rule for an unknown number of tiles being asked to place
 * exactly two. At 1080 it asked for three tracks and filled two of them, so a
 * third of the card was empty; at 690 it made two tracks of 345, which is a
 * 34-character measure next to a photograph cropped to one third of its width.
 *
 * Two parts is not a grid problem. Below 900 they stack, which is the layout
 * the design already used on a phone; above it they are two columns, weighted
 * so the text gets the comfortable measure and the photograph stays a
 * photograph. */
.kyb-card-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
@media (max-width: 900px) {
  .kyb-card-split { grid-template-columns: minmax(0, 1fr); }
  /* Stacked, the picture is a band across the top rather than a column. The
   * design's own minimum height has to go with it: a 260-pixel floor under a
   * 16:9 band is 260 pixels of box holding 197 pixels of shape, which is the
   * same "box the CSS never asked for" this whole layer exists to prevent. */
  .kyb-card-split > picture img { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
}

/* ------------------------------------------------------------- lightbox */

.kyb-lightbox:not([hidden]) { display: flex; }

/* ----------------------------------------------------------- skip link */

.kyb-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  font-family: Sen, sans-serif; font-weight: 700; font-size: 15px;
  color: #083D05; background: #99DD46;
  padding: 14px 22px; border-radius: 0 0 100px 0;
}
.kyb-skip:focus { left: 0; }

/* --------------------------------------------------------------- motion */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
/* Clear the sticky header when jumping to an anchor. */
html { scroll-padding-top: 96px; }

:focus-visible { outline: 2px solid #083D05; outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ------------------------------------------------------------ utilities */

/* The designs switched between the desktop navigation and the burger in
 * JavaScript, at 1280px, with the header call to action appearing at 1500px.
 * Production renders both and lets these three rules decide. */
@media (max-width: 1279.98px) {
  .u-desktop { display: none !important; }
}
@media (min-width: 1280px) {
  .u-mobile { display: none !important; }
  .kyb-menu, .kyb-menu:target { display: none !important; }
}
@media (max-width: 1499.98px) {
  .u-wide { display: none !important; }
}

/* ----------------------------------------------------------------- print */

@media print {
  html, body { background: #FFFFFF !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; transition: none !important; }
  [data-print-hide] { display: none !important; }
  header { position: static !important; box-shadow: none !important; }
  [data-acc-body] { height: auto !important; overflow: visible !important; }
  details > div[data-acc-body] { display: block !important; }
  .kyb-menu, .u-mobile { display: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; color: #5C5F59; }
}

/* ------------------------------------------------------------ contact form */

/* The honeypot. Off screen rather than display:none — a bot that skips hidden
 * fields would skip a display:none one, and then the trap catches nothing. */
.kyb-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Turnstile draws its own widget; this only reserves the room so the submit
 * button does not jump when it appears. */
.kyb-turnstile:not(:empty) { min-height: 65px; }

/* The panel shown after sending, and the form it replaces. Both ship in the
 * markup; the script swaps the hidden attribute, and without a script the
 * visitor lands on the thank-you page instead. */
[data-state][hidden] { display: none !important; }

/* --------------------------------------------- plain pages from the service */

/* The no-JavaScript error page the contact endpoint renders itself. It borrows
 * this stylesheet, so it needs a small layout of its own. */
.kyb-plain {
  font-family: 'DM Sans', Helvetica, sans-serif;
  color: #5C5F59;
  background: #FFFFFF;
}
.kyb-plain-box {
  max-width: 34rem;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 90px) clamp(20px, 5vw, 48px);
}
.kyb-plain-box h1 {
  margin: 0 0 14px;
  font-family: Sen, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.28;
  color: #729664;
}
.kyb-plain-box p { margin: 0 0 14px; font-size: 17px; line-height: 1.6; }
.kyb-plain-box ul { margin: 0 0 22px; padding-left: 20px; line-height: 1.6; }
.kyb-plain-box a {
  font-family: Sen, sans-serif;
  font-weight: 700;
  color: #4F6B45;
  border-bottom: 1px solid #C9DDB6;
  padding-bottom: 3px;
}

picture { display: contents; }
picture > source { display: none; }

.s3qqfFIm{font-family: 'DM Sans', Helvetica, sans-serif; color: #5C5F59; background: #FFFFFF; overflow-x: hidden;}
.ss45yN0x{position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.93); backdrop-filter: blur(12px); border-bottom: 1px solid #EEF3E6;}
.spqyF4FY{max-width: 1400px; margin: 0 auto; padding: 14px clamp(18px, 3vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: clamp(14px, 2vw, 32px);}
.s6WAaVUt{flex: 0 0 auto;}
.sc5Uxum0{width: clamp(112px, 12vw, 150px); height: auto;}
.sJ0I93YV{display: flex; align-items: center; gap: clamp(18px, 2.1vw, 30px);}
.stDarWn8{display: inline-flex; flex-direction: column; align-items: flex-start; gap: 7px; font-size: clamp(12.5px, 0.95vw, 13.5px); font-weight: 500; letter-spacing: 0.035em; color: #5C5F59; white-space: nowrap; transition: color 0.4s ease;}
.scDVZWTy{display: block; width: 22px; height: 2px; border-radius: 100px; background: #A0C094; transform: scaleX(0); transform-origin: left center; transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1);}
.sA1fAl2X{display: flex; align-items: center; gap: 6px; padding-left: 16px; border-left: 1px solid #DDE6D2; margin-left: 6px;}
.snawF8o6{font-family: Sen, sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em; color: #083D05; background: #EEF6E3; padding: 6px 10px; border-radius: 100px;}
.sKs50IU1{font-family: Sen, sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em; color: #86976F; padding: 6px 4px;}
.snaH9eFy{font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #5F7E54; background: transparent; border: 1.5px solid #C9DDB6; padding: 11px 22px; margin-left: 6px; border-radius: 100px; white-space: nowrap; transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease;}
.siGG3g1v{display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px; border: 1px solid #DDE6D2; border-radius: 100px; background: #FFFFFF; cursor: pointer;}
.ssN4AK8k{display: block; height: 1.6px; background: #729664; border-radius: 2px;}
.swAa6Ru8{position: absolute; left: 0; bottom: -1px; height: 2.5px; width: 0%; background: #A0C094; border-radius: 0 100px 100px 0;}
.szqU46Sx{position: fixed; inset: 0; z-index: 100; background: #FFFFFF; padding: 18px clamp(20px, 6vw, 32px) 40px; flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch;}
.s7p3PorX{display: flex; align-items: center; justify-content: space-between;}
.stdBYTlr{width: 128px; height: auto;}
.sfY6HNA-{display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid #DDE6D2; border-radius: 100px; background: #FFFFFF; color: #5F7E54; font-size: 20px; line-height: 1; cursor: pointer;}
.s9rDoZ_e{display: flex; flex-direction: column; gap: 4px; margin-top: clamp(28px, 6vh, 44px); flex: 0 0 auto;}
.sK0CCuUJ{font-family: Sen, sans-serif; font-weight: 700; font-size: 25px; color: #729664; padding: 14px 0; border-bottom: 1px solid #F1F5EA;}
.sOc63RAv{display: flex; align-items: center; gap: 10px; margin-top: 32px;}
.s5YfuCMu{font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #083D05; background: #EEF6E3; padding: 10px 18px; border-radius: 100px;}
.sRwghRNC{font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #86976F; padding: 10px 12px;}
.scvhAZE-{margin-top: auto; margin-bottom: 8px; flex: 0 0 auto; text-align: center; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #083D05; background: #99DD46; padding: 18px 24px; border-radius: 100px;}
.soKun-bX{padding: clamp(48px, 7vw, 100px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 96px);}
.sbC7S88l{max-width: 620px; margin: 0 auto;}
.s07u-r8B{padding: clamp(24px, 3vw, 34px); background: #F6FBEF; border-radius: 22px;}
.sz3sXGKW{margin: 0; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.2; color: #4F6B45;}
.s1PhPMVV{margin: 12px 0 0; font-size: 16.5px; line-height: 1.6; color: #4F6B45;}
.srbfLLnX{margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: #5F7E54;}
.sX9WKh0Y{margin-top: 26px;}
.soICsu0n{margin: 0; padding: 0; list-style: none; display: grid; gap: 10px;}
.spMP9Uy4{display: block; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #5F7E54; background: #FFFFFF; border: 1.5px solid #D2E5BD; border-radius: 100px; padding: 12px 22px;}
.sTgPIEa7{position: fixed; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); z-index: 70; width: 54px; height: 54px; border: 0; border-radius: 100px; background: #729664; box-shadow: 0 10px 26px rgba(114,150,100,0.32); cursor: pointer; opacity: 0; pointer-events: none; display: flex; align-items: center; justify-content: center;}
.szkjaeWt{display: flex; flex-direction: column; align-items: center; gap: 5px;}
.sekKXCJP{width: 13px; height: 13px; border-top: 2.5px solid #FFFFFF; border-left: 2.5px solid #FFFFFF; border-radius: 2px; transform: rotate(45deg); margin-bottom: -1px;}
.s6nVWmes{width: 14px; height: 3px; border-radius: 100px; background: rgba(255,255,255,0.7);}
.srk2gaLw{padding: clamp(26px, 3.4vw, 44px) clamp(20px, 5vw, 48px) clamp(32px, 3.6vw, 52px); border-top: 1px solid #EEF3E6;}
.srd0zqgi{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px;}
.sSv5kqwb{width: 138px; height: auto;}
.sajWXrST{display: flex; flex-wrap: wrap; gap: 10px 22px;}
.sU0JdOyE{font-size: 14px; font-weight: 500; color: #5C5F59;}
.s4c90WTC{display: flex; flex-direction: column; align-items: flex-start; gap: 6px;}
.sQsBpoYx{font-size: 14px; color: #204147;}
.s2vcE2aV{color: #204147; border-bottom: 1px solid #DDE6D2;}
.sDHrvvFj{display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #5C5F59; filter: grayscale(1) opacity(0.7); transition: filter 0.6s ease, color 0.6s ease;}
.sg7XRZES{height: 18px; width: auto;}
.sYykKTWb{padding: clamp(34px, 4.4vw, 60px) clamp(20px, 5vw, 48px) clamp(26px, 3.2vw, 42px);}
.sHV152qB{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(26px, 4vw, 56px);}
.svXxQdFx{flex: 1 1 440px; min-width: 300px;}
.siy4KWvk{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.18; color: #729664; text-wrap: pretty;}
.sBVIXXqm{margin: 20px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 1.7vw, 22px); line-height: 1.4; color: #729664;}
.sSIpCgq3{display: block; font-family: 'DM Sans', sans-serif; font-weight: 400; font-style: italic; font-size: 19px; color: #5F7E54; margin-top: 4px;}
.s_RdOckO{margin: 18px 0 0; font-size: 17px; line-height: 1.62; color: #5C5F59; max-width: 54ch;}
.sFYKMacs{margin: 12px 0 0; font-size: 17px; line-height: 1.62; color: #5C5F59; max-width: 54ch;}
.sbx6dy8b{display: inline-block; margin-top: 26px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05; background: #99DD46; padding: 17px 30px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sm7BbFAH{flex: 1 1 300px; min-width: 260px; border-radius: 45px; overflow: hidden; background: #F6FBEF; aspect-ratio: 5 / 6; max-height: 440px;}
.s954ZXkI{width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; will-change: transform;}
.sleOQhuX{padding: clamp(16px, 2vw, 28px) clamp(20px, 5vw, 48px) clamp(38px, 4.4vw, 60px);}
.sg8__6XG{max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(16px, 1.8vw, 24px);}
.sLcyV5Gk{background: #F6FBEF; border-radius: 15px; padding: clamp(24px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 12px; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.sk_ILq3g{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 22px; line-height: 1.3; color: #729664;}
.sQep-fJw{margin: 0; font-size: 16px; line-height: 1.6; color: #5C5F59;}
.sI1Vj6-u{background: #F6FBEF; padding: clamp(44px, 5.2vw, 76px) clamp(20px, 5vw, 48px);}
.sC51e40c{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 60px); align-items: flex-start;}
.sIvs48NL{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.26; color: #729664; text-wrap: pretty;}
.sEz3QhAi{margin: 20px 0 0; font-size: 16.5px; line-height: 1.62; color: #5C5F59;}
.sYLU7eJa{margin: 12px 0 0; font-size: 16.5px; line-height: 1.62; color: #5C5F59;}
.soQCZFao{margin: 18px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.5; color: #4F6B45;}
.ss--pPmG{margin: 12px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 8px clamp(20px, 3vw, 40px);}
.s45G2CLz{font-size: 16px; line-height: 1.55; color: #5C5F59;}
.sBLFRScA{margin: 20px 0 0; font-size: 16.5px; line-height: 1.62; color: #083D05;}
.s_ASnEiX{flex: 1 1 320px; min-width: 280px; border-radius: 30px; overflow: hidden; aspect-ratio: 4 / 3;}
.s3HGmhyF{width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;}
.sc6G_yOG{padding: clamp(44px, 5.2vw, 76px) clamp(20px, 5vw, 48px) clamp(30px, 3.6vw, 48px);}
.sJ4Lxgv2{max-width: 1080px; margin: 0 auto;}
.sdm12wtK{display: flex; align-items: center; gap: 14px; margin-bottom: 26px;}
.s1Bes4F5{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; white-space: nowrap;}
.sP7sPvJp{flex: 1 1 auto; height: 1px; background: #E7EFDC;}
.sd9Q_q7n{display: flex; flex-wrap: wrap; gap: clamp(24px, 3.5vw, 52px); align-items: flex-start;}
.s6MHm1NE{flex: 0 1 300px; min-width: 240px; border-radius: 30px; overflow: hidden; aspect-ratio: 4 / 5; max-height: 400px;}
.sOidIwNK{width: 100%; height: 100%; object-fit: cover; object-position: 45% 28%;}
.sFfWuvlK{flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px);}
.s_y-O9GD{margin: 0; padding-left: 20px; border-left: 2px solid #D2E5BD;}
.sK7NG40i{margin: 0; font-size: 16.5px; line-height: 1.65; font-style: italic; color: #083D05;}
.s2-BIK2s{padding: clamp(26px, 3vw, 40px) clamp(20px, 5vw, 48px) clamp(40px, 4.6vw, 64px);}
.sONwVAtJ{margin: 0 0 22px; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.28; color: #729664;}
.sfSDieOk{margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 10px clamp(20px, 3vw, 40px);}
.s36CJ4u0{font-size: 16.5px; line-height: 1.55; color: #5C5F59;}
.sVXNVl9-{margin: 0 0 28px; max-width: 34ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(23px, 2.4vw, 31px); line-height: 1.28; color: #729664; text-wrap: pretty;}
.sfGXgjJQ{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(16px, 1.8vw, 24px);}
.sUlKrh_t{background: #FFFFFF; border-radius: 15px; padding: clamp(24px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 12px; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.sbVNOsEZ{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 20px; line-height: 1.32; color: #729664;}
.sCF92UNP{margin-top: auto; align-self: flex-start; padding-top: 8px;}
.sM3I0Ywd{display: inline-block; font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #5F7E54; border: 1.5px solid #C9DDB6; padding: 11px 22px; border-radius: 100px; transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease;}
.s59eX3AG{margin: 0; max-width: 46ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(21px, 2.1vw, 27px); line-height: 1.32; color: #729664; text-wrap: pretty;}
.s9VUtXJX{margin: 10px 0 0; max-width: 46ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(21px, 2.1vw, 27px); line-height: 1.32; color: #86976F; text-wrap: pretty;}
.s2Ig6dJa{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(16px, 1.8vw, 24px); margin-top: 28px;}
.sPBOqEL4{position: relative; border-radius: 15px; overflow: hidden; background: #232323; aspect-ratio: 16 / 9;}
.slZDI77h{width: 100%; height: 100%; object-fit: cover; opacity: 0.86;}
.siUKqzq3{position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;}
.s_9Qa-ek{display: flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 100px; background: rgba(255,255,255,0.9); box-shadow: 0 12px 30px rgba(35,35,35,0.28);}
.sBXQsS__{width: 0; height: 0; border-left: 20px solid #083D05; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px;}
.sSfDZNGL{display: inline-block; margin-top: 26px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #5F7E54; border-bottom: 1px solid #D2E5BD; padding-bottom: 3px;}
.skrOAQK4{padding: clamp(20px, 2.6vw, 36px) clamp(20px, 5vw, 48px) clamp(44px, 5.5vw, 76px);}
.sZc6nTd7{max-width: 1080px; margin: 0 auto; background: #D2E5BD; border-radius: 45px; padding: clamp(30px, 4vw, 60px) clamp(24px, 4vw, 60px); text-align: center;}
.sDSYVxik{display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 22px;}
.sAo9E8or{width: 8px; height: 17px; border-radius: 0 999px 999px 0; background: #FFFFFF; animation: kyb-float 8s ease-in-out infinite alternate;}
.sek5ADyi{width: 17px; height: 17px; border-radius: 999px; background: #FFFFFF; animation: kyb-float 8s ease-in-out -2.6s infinite alternate;}
.sg39tCHy{width: 8px; height: 17px; border-radius: 999px 0 0 999px; background: #FFFFFF; animation: kyb-float 8s ease-in-out -5.2s infinite alternate;}
.sSNZPhIg{margin: 0 auto; max-width: 24ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(32px, 4.2vw, 54px); line-height: 1.15; color: #083D05;}
.s024HQGj{margin: 18px auto 0; max-width: 52ch; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: #083D05;}
.sFwWTehG{margin: 8px auto 0; max-width: 52ch; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: #083D05;}
.sUQImJs_{display: inline-block; margin-top: 28px; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF; background: #083D05; padding: 19px 36px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.shHbPmW8{font-family: 'DM Sans', Helvetica, sans-serif; color: #5C5F59; background: #F6FBEF; overflow-x: hidden;}
.sFu6Tef0{min-height: 100vh; display: grid; place-items: center; padding: clamp(24px, 5vw, 48px); background: #F6FBEF;}
.s1L5wmB1{width: 100%; max-width: 420px; text-align: center;}
.sD2liSw5{width: 150px; margin: 0 auto;}
.s6Qmo9Vr{margin-top: clamp(24px, 4vw, 36px); padding: clamp(24px, 4vw, 34px); background: #FFFFFF; border-radius: 22px; border: 1.5px solid #D2E5BD; text-align: left;}
.sW-Xrd-2{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 2vw, 23px); line-height: 1.3; color: #4F6B45; text-align: center;}
.syrzcz4q{margin: 10px 0 0; font-size: 15px; line-height: 1.5; color: #4F6B45; text-align: center;}
.syHEnkkH{margin-top: 22px; display: grid; gap: 16px;}
.sGHrcUOC{display: grid; gap: 6px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #4F6B45;}
.s9BQrI-A{font-family: inherit; font-weight: 400; font-size: 16px; color: #083D05; background: #F6FBEF; border: 1.5px solid #D2E5BD; border-radius: 12px; padding: 12px 14px;}
.spTIOQfb{justify-self: center;}
.sJOX9Ak0{justify-self: center; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF; background: #083D05; border: 0; border-radius: 100px; padding: 15px 34px; cursor: pointer;}
.sJwgJ_pT{margin: 18px 0 0; font-size: 14px; line-height: 1.5; color: #4F6B45;}
.sYO8wOIw{background: #D2E5BD; padding: clamp(46px, 6vw, 92px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 96px);}
.sr01bl3V{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap-reverse; align-items: center; gap: clamp(34px, 5vw, 76px);}
.sQK9fdO9{flex: 1 1 320px; min-width: 260px; display: flex; justify-content: center;}
.sszX_nL5{width: 100%; max-width: 400px; height: auto; transform: rotate(-3.2deg); filter: drop-shadow(0 26px 46px rgba(35,52,26,0.22)) drop-shadow(0 5px 12px rgba(35,52,26,0.14)); will-change: transform;}
.stEpwX-2{flex: 1 1 400px; min-width: 290px;}
.saWTgrbJ{width: 118px; height: auto; margin-bottom: 26px;}
.s_IDNUbr{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #083D05; margin-bottom: 16px;}
.spvT9_DV{margin: 0; max-width: 24ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.2; color: #083D05; text-wrap: pretty;}
.sDmKVsoz{margin: 20px 0 0; max-width: 50ch; font-size: 17px; line-height: 1.65; color: #083D05;}
.sQCOOlS-{display: flex; align-items: baseline; gap: 12px; margin-top: 28px;}
.sUhG70Qt{font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(26px, 2.6vw, 32px); line-height: 1; color: #083D05;}
.sIzIvqrC{font-size: 14.5px; color: #083D05;}
.sT01c-U9{display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 26px;}
.sI9hbqZm{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #FFFFFF; background: #083D05; padding: 17px 30px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sxcBX9Dl{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05; border-bottom: 1px solid rgba(8,61,5,0.3); padding-bottom: 3px;}
.sYPklzet{margin: 22px 0 0; max-width: 46ch; font-size: 14.5px; line-height: 1.6; color: #083D05;}
.sbiGhH-r{padding: clamp(48px, 6vw, 92px) clamp(20px, 5vw, 48px) clamp(30px, 3.6vw, 48px);}
.s6w09lsC{display: flex; align-items: center; gap: 14px; margin-bottom: 30px;}
.sh42mzHs{display: flex; flex-wrap: wrap; gap: clamp(30px, 4.5vw, 68px); align-items: flex-start;}
.s94tJ7v3{flex: 1 1 460px; min-width: 300px; max-width: 68ch;}
.s3hpZTq0{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 1.9vw, 23px); line-height: 1.45; color: #729664;}
.ssBdO8QF{margin: 22px 0 0; font-size: 17px; line-height: 1.7; color: #5C5F59;}
.svQaoNQP{margin: 16px 0 0; font-size: 17px; line-height: 1.7; color: #5C5F59;}
.sSMWogtD{margin: 34px 0 0; padding: clamp(26px, 3vw, 36px) clamp(24px, 3vw, 38px); background: #F6FBEF; border-radius: 15px;}
.sYLXqNPV{margin: 0; font-family: Cookie, cursive; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.3; color: #4F6B45;}
.sCiWhIgG{margin-top: 18px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #5F7E54;}
.s65822O0{flex: 1 1 260px; min-width: 240px; display: flex; flex-direction: column; gap: 12px;}
.sGwFF0t1{padding: 0; border: 0; border-radius: 15px; overflow: hidden; background: #F6FBEF; cursor: zoom-in; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);}
.sGUBPISC{width: 100%; height: auto;}
.sa5dJacH{width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 15px;}
.sjq2pMbP{font-size: 14px; line-height: 1.55; color: #86976F;}
.szSTmXp7{background: #F6FBEF; padding: clamp(44px, 5.4vw, 82px) clamp(20px, 5vw, 48px);}
.sUIfGFC7{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(30px, 4.5vw, 68px); align-items: flex-start;}
.sqz-mERi{width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 15px;}
.s1v3ZZWl{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; margin-bottom: 18px;}
.s6SMTc9Y{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 33px); line-height: 1.28; color: #729664;}
.sQz5D190{margin: 18px 0 0; font-size: 17px; line-height: 1.7; color: #5C5F59;}
.sxvZNLSo{margin: 16px 0 0; font-size: 17px; line-height: 1.7; color: #4F6B45;}
.sV4wPLz6{display: inline-block; margin-top: 22px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #4F6B45; border-bottom: 1px solid #C9DDB6; padding-bottom: 3px;}
.s8z6wGHX{padding: clamp(46px, 5.6vw, 88px) clamp(20px, 5vw, 48px) clamp(30px, 3.6vw, 48px);}
.s-FbFsA9{margin: 0; max-width: 30ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 33px); line-height: 1.28; color: #729664;}
.swM3bzoR{margin: 14px 0 0; max-width: 60ch; font-size: 17px; line-height: 1.65; color: #5C5F59;}
.sMDoM16M{margin-top: 34px;}
.sjR5tXyY{padding: 0; border: 0; border-radius: 15px; overflow: hidden; background: #F6FBEF; cursor: zoom-in; text-align: left; display: flex; flex-direction: column; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.secmj4Rb{display: flex; align-items: center; justify-content: center; width: 66px; height: 66px; border-radius: 100px; background: rgba(255,255,255,0.9); box-shadow: 0 12px 30px rgba(35,35,35,0.28);}
.sQAZ2lh0{width: 0; height: 0; border-left: 18px solid #083D05; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 5px;}
.s67gQcCJ{padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px;}
.so9icB_H{font-family: Sen, sans-serif; font-weight: 700; font-size: 15.5px; line-height: 1.35; color: #4F6B45;}
.sCPo38p7{object-position: 50% 0%;}
.s0wnLERJ{font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #86976F;}
.s9J3UlD2{margin-top: clamp(18px, 2.2vw, 26px);}
.sd33XP0Z{display: block; border-radius: 15px; overflow: hidden; cursor: zoom-in; aspect-ratio: 1 / 1; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);}
.sgQqc5yv{width: 100%; height: 100%; object-fit: cover;}
.siPjo1nm{padding: clamp(34px, 4.4vw, 64px) clamp(20px, 5vw, 48px) clamp(46px, 5.6vw, 80px);}
.s5MQftcN{max-width: 1080px; margin: 0 auto; background: #D2E5BD; border-radius: 45px; padding: clamp(32px, 4.6vw, 68px) clamp(24px, 4.6vw, 68px); text-align: center;}
.sM5YWLgU{display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 24px;}
.sXFpTh70{margin: 0 auto; max-width: 20ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.15; color: #083D05;}
.sXBdl2uK{margin: 20px auto 0; max-width: 50ch; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: #083D05;}
.sWEABcgW{position: fixed; inset: 0; z-index: 120; background: rgba(35,35,35,0.82); align-items: center; justify-content: center; padding: clamp(20px, 5vw, 60px); cursor: zoom-out;}
.sQChsiO_{max-width: 100%; max-height: 100%; display: flex; align-items: center; justify-content: center;}
.sAXsv-cB{position: fixed; top: clamp(16px, 3vw, 30px); right: clamp(16px, 3vw, 30px); width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.4); border-radius: 100px; background: rgba(255,255,255,0.08); color: #FFFFFF; font-size: 20px; line-height: 1; cursor: pointer;}
.s50dNn4_{flex: 1 1 400px; min-width: 300px;}
.svPC39Vj{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 50px); line-height: 1.14; color: #729664;}
.s0sjc_T3{display: block; color: #86976F;}
.scfqf_Uk{margin: 18px 0 0; font-family: Cookie, cursive; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.2; color: #729664;}
.suEh92oy{display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 26px;}
.s9C9S5HU{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05; background: #99DD46; padding: 17px 30px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.ssbqtFPr{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #5F7E54; border-bottom: 1px solid #D2E5BD; padding-bottom: 3px;}
.sM3fpdAb{flex: 1 1 320px; min-width: 270px; border-radius: 45px; overflow: hidden; background: #F6FBEF; aspect-ratio: 4 / 3;}
.sstJROUy{width: 100%; height: 100%; object-fit: cover; will-change: transform;}
.snxnxzVI{background: #F6FBEF; padding: clamp(38px, 4.6vw, 66px) clamp(20px, 5vw, 48px);}
.sRzlFYSD{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(26px, 3.6vw, 56px); align-items: center;}
.sP33Ygxj{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.28; color: #729664;}
.svf3RtU_{margin: 16px 0 0; font-size: 16.5px; line-height: 1.62; color: #5C5F59;}
.s1rBhoy8{margin: 12px 0 0; font-size: 16.5px; line-height: 1.62; color: #4F6B45;}
.sIrhlQpR{flex: 1 1 340px; min-width: 280px; display: flex; flex-direction: column; gap: 14px;}
.syWGgEmU{width: 100%; height: 100%; object-fit: cover; opacity: 0.88;}
.s19jkGgb{display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 100px; background: rgba(255,255,255,0.9); box-shadow: 0 12px 30px rgba(35,35,35,0.28);}
.sQkj1irD{width: 0; height: 0; border-left: 19px solid #083D05; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px;}
.s6owBV4C{width: 100%; height: 100%; object-fit: contain; background: #232323;}
.sDUShnMx{padding: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 48px) clamp(30px, 3.6vw, 48px);}
.sks5HQDL{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(16px, 1.8vw, 24px); align-items: start;}
.s6MnXwtd{background: #F6FBEF; border-radius: 15px; overflow: hidden;}
.sCahv_9v{display: block;}
.sfJV9f1P{width: 100%; height: auto; background: #F6FBEF;}
.sC8HCM8I{padding: clamp(22px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 12px;}
.sAdx-If6{margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.3; color: #729664;}
.s6tCtJUU{display: inline-flex; align-items: center; gap: 9px; margin-top: 2px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14.5px; color: #4F6B45;}
.ss_WjBcf{display: block; width: 8px; height: 8px; border-right: 2px solid #4F6B45; border-bottom: 2px solid #4F6B45; transform: rotate(45deg); transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1);}
.s5q25K0j{overflow: hidden;}
.sM6MohxY{padding: 0 clamp(22px, 2.2vw, 30px) clamp(24px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px;}
.sW6KzqpH{background: #FFFFFF; border-radius: 15px; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px;}
.sry2M7Fe{margin: 0; font-size: 15.5px; line-height: 1.6; color: #4F6B45;}
.sRwJjzzZ{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 15.5px; line-height: 1.55; color: #4F6B45;}
.s5aFByZW{display: block; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; cursor: zoom-in; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);}
.sVUKVsP9{align-self: flex-start; font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #4F6B45; border: 1.5px solid #C9DDB6; padding: 11px 22px; border-radius: 100px; transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease;}
.sV34WuBd{background: #C3CBBB; padding: clamp(7px, 0.9vw, 11px) clamp(16px, 1.8vw, 24px) clamp(17px, 1.9vw, 25px); text-align: center; font-size: 15.5px; line-height: 1.45; color: #083D05;}
.sbWWwNLT{background: #FFFFFF; border-radius: 15px; padding: 18px 20px;}
.sxviQ7H_{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #4F6B45;}
.s0xzgcwA{padding: clamp(34px, 4.2vw, 60px) clamp(20px, 5vw, 48px) clamp(24px, 3vw, 40px);}
.svJcXuO7{margin: 0 0 26px; max-width: 34ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 33px); line-height: 1.28; color: #729664; text-wrap: pretty;}
.sbg2rZk7{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 2.6vw, 36px);}
.shv7PQlS{margin: 0; padding-left: 20px; border-left: 2px solid #D2E5BD; display: flex; flex-direction: column; gap: 12px;}
.s3GYNAVe{margin: 0; font-size: 16px; line-height: 1.65; font-style: italic; color: #083D05;}
.sMCo_rVS{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #4F6B45;}
.sFcngd51{margin: 0; font-size: 16px; line-height: 1.65; color: #083D05;}
.sj6u90ib{padding: clamp(20px, 2.6vw, 34px) clamp(20px, 5vw, 48px) clamp(34px, 4.2vw, 58px);}
.sLOxjj5x{max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50%, 180px), 1fr)); gap: 10px;}
.scHk6GWR{width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 15px;}
.sMTtHGjl{background: #F6FBEF; padding: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 48px);}
.sF_GbjiS{margin: 0 0 26px; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 33px); line-height: 1.28; color: #729664;}
.sDQqgDLi{background: #FFFFFF; border-radius: 15px; padding: clamp(22px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 12px;}
.sPUc6O_-{margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.32; color: #729664;}
.stBHA5gS{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54;}
.sUjWjf8k{margin-top: auto; align-self: flex-start; font-family: Sen, sans-serif; font-weight: 700; font-size: 14px; color: #5F7E54; border: 1.5px solid #C9DDB6; padding: 11px 22px; border-radius: 100px; transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease;}
.ss_OQArL{padding: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 48px) clamp(44px, 5.5vw, 76px);}
.stUjK0DJ{margin: 0 auto; max-width: 22ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(32px, 4.2vw, 54px); line-height: 1.15; color: #083D05;}
.scg_fCdC{margin: 18px auto 0; max-width: 54ch; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: #083D05;}
.sWCYFAVn{margin: 8px auto 0; max-width: 54ch; font-family: Sen, sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: #083D05;}
.sCxT3PLE{display: inline-block; margin-top: 22px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14.5px; color: #4F6B45; background: transparent; border: 1.5px solid #C9DDB6; padding: 12px 22px; border-radius: 100px;}
.sJ9eGY2P{margin: 26px 0 0; font-size: 16px; line-height: 1.6; color: #5C5F59;}
.sx0G4lYX{display: inline-block; margin-top: 18px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #5F7E54; border-bottom: 1px solid #D2E5BD; padding-bottom: 3px;}
.s1kKmu2E{padding: clamp(38px, 5vw, 78px) clamp(20px, 5vw, 48px) clamp(30px, 3.6vw, 48px);}
.s8CYDDFj{max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(28px, 4vw, 58px); align-items: start;}
.svD-idUa{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; margin-bottom: 14px;}
.sMT5pdmy{margin: 0; max-width: 24ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.12; color: #4F6B45; text-wrap: pretty;}
.spAP1zsF{margin: 18px 0 0; max-width: 48ch; font-size: 17px; line-height: 1.65; color: #5C5F59;}
.sMI_y9EO{margin-top: 30px; padding: clamp(24px, 3vw, 34px); background: #F6FBEF; border-radius: 22px;}
.sD6BPXVI{font-family: Cookie, cursive; font-size: clamp(28px, 3vw, 36px); line-height: 1.2; color: #4F6B45;}
.soZ0woVI{margin: 10px 0 0; font-size: 16.5px; line-height: 1.6; color: #4F6B45;}
.sbSyazYZ{margin-top: 18px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14.5px; color: #4F6B45; background: transparent; border: 1.5px solid #C9DDB6; padding: 12px 22px; border-radius: 100px; cursor: pointer;}
.sDAQ8zqj{margin-top: 30px; display: flex; flex-direction: column; gap: 20px;}
.sYUSrksk{display: flex; flex-direction: column; gap: 8px;}
.s17SGaig{font-family: Sen, sans-serif; font-weight: 700; font-size: 14.5px; color: #4F6B45;}
.s6NlLnvh{color: #86976F;}
.sRwcIkpM{padding: 15px 18px; background: #FFFFFF; border: 1.5px solid #DDE6D2; border-radius: 14px; font-size: 16.5px; transition: border-color 0.4s ease, box-shadow 0.4s ease;}
.sBwFzL0W{font-size: 14px; line-height: 1.5; color: #A0522D;}
.sU-O2c56{padding: 15px 18px; background: #FFFFFF; border: 1.5px solid #DDE6D2; border-radius: 14px; font-size: 16.5px; line-height: 1.6; resize: vertical; min-height: 150px; transition: border-color 0.4s ease, box-shadow 0.4s ease;}
.siFsE5z6{display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;}
.sk5nVeF3{font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #083D05; background: #99DD46; border: 0; padding: 18px 34px; border-radius: 100px; cursor: pointer; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sA7LZlUE{font-size: 14px; color: #86976F;}
.sqUAevLc{background: #F6FBEF; border-radius: 30px; padding: clamp(24px, 2.8vw, 38px); display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 28px);}
.s8QsQEIy{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; margin-bottom: 12px;}
.sUvbBY2z{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.28; color: #4F6B45;}
.spdDjPdu{margin: 12px 0 0; font-size: 17px; line-height: 1.6; font-style: italic; color: #5C5F59;}
.szswhwTE{display: flex; flex-direction: column; gap: 16px;}
.syd8bWqd{display: flex; flex-direction: column; gap: 4px;}
.sr2xbmE5{font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #86976F;}
.snqeZAaX{font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.4; color: #4F6B45; word-break: break-word; border-bottom: 1px solid #C9DDB6; padding-bottom: 3px;}
.sNfcEM5M{font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.4; color: #4F6B45; border-bottom: 1px solid #C9DDB6; padding-bottom: 3px; align-self: flex-start;}
.s11ZYyP0{width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 25%; border-radius: 22px; margin-top: auto;}
.s7ub0CWz{padding: clamp(16px, 2.4vw, 34px) clamp(20px, 5vw, 48px) clamp(40px, 5vw, 70px);}
.sySd1dFE{max-width: 1080px; margin: 0 auto; border-top: 1px solid #EEF3E6; padding-top: clamp(26px, 3.2vw, 42px);}
.sR8O3tVp{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(20px, 2vw, 25px); line-height: 1.3; color: #729664;}
.sMf43qXA{display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: clamp(20px, 2.4vw, 28px);}
.sRuq9XAm{display: inline-flex; align-items: center; gap: 10px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #4F6B45; background: #F6FBEF; border: 1.5px solid #E7EFDC; padding: 14px 24px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), border-color 0.5s ease, color 0.5s ease;}
.skm-jiQK{background: #F6FBEF; padding: clamp(44px, 5.4vw, 84px) clamp(20px, 5vw, 48px);}
.sKfdYaIA{max-width: 1080px; margin: 0 auto; text-align: center;}
.sEloXenZ{margin: 0 auto; max-width: 26ch; font-family: Cookie, cursive; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.15; color: #4F6B45;}
.sxuAHub-{margin: 18px auto 0; max-width: 34ch; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.4; color: #083D05;}
.sD4s5fRU{padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 96px);}
.swnABMx8{max-width: 1250px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px, 5vw, 72px);}
.s17PTrro{flex: 1 1 420px; min-width: 300px; max-width: 660px;}
.sMoOF-Wq{display: flex; align-items: center; gap: 12px; margin-bottom: 22px;}
.sHC9maWt{display: flex; align-items: flex-end; gap: 3px;}
.sJF3fYTs{width: 6px; height: 13px; border-radius: 0 999px 999px 0; background: #A0C094; animation: kyb-float 7s ease-in-out infinite alternate;}
.sD-TvkRh{width: 13px; height: 13px; border-radius: 999px; background: #729664; animation: kyb-float 7s ease-in-out -2.4s infinite alternate;}
.sXCcV5Sn{width: 6px; height: 13px; border-radius: 999px 0 0 999px; background: #A0C094; animation: kyb-float 7s ease-in-out -4.8s infinite alternate;}
.sYMLWTiN{margin: 0; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(40px, 5.4vw, 72px); line-height: 1.12; color: #729664; text-wrap: pretty;}
.syGY9R93{display: block; font-size: clamp(30px, 3.6vw, 48px); color: #86976F; margin-top: 6px;}
.sOyKfwrU{margin: 26px 0 0; font-size: 18px; line-height: 1.6; font-style: italic; color: #5C5F59; max-width: 48ch;}
.soCBmIM8{display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 34px;}
.s61PUrPn{font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(14px, 1.2vw, 16px); color: #083D05; background: #99DD46; padding: 19px 34px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.s7YPRhm8{flex: 1 1 340px; min-width: 280px; position: relative;}
.s9Mu1ZGc{position: relative; border-radius: 45px; overflow: hidden; background: #F6FBEF; aspect-ratio: 4 / 5; max-height: 620px;}
.sGylxlD8{position: absolute; left: clamp(-8px, -1vw, 0px); bottom: clamp(-22px, -2vw, -14px); background: #FFFFFF; border-radius: 100px; padding: 13px 22px; box-shadow: 0 12px 34px rgba(35,35,35,0.09); display: flex; align-items: center; gap: 10px;}
.sMlHvmc0{width: 5px; height: 11px; border-radius: 0 999px 999px 0; background: #B3E278;}
.sS60xDNL{width: 11px; height: 11px; border-radius: 999px; background: #729664;}
.socH6OB1{width: 5px; height: 11px; border-radius: 999px 0 0 999px; background: #B3E278;}
.scNMPAXV{font-family: Sen, sans-serif; font-weight: 700; font-size: 13.5px; color: #083D05;}
.s5zjjObK{padding: clamp(44px, 5vw, 76px) clamp(20px, 5vw, 48px) clamp(20px, 3vw, 40px);}
.si9lDoZe{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 64px);}
.su4Cu2pJ{flex: 1 1 380px; min-width: 280px;}
.sLeEGTOE{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.25; color: #729664;}
.sPIuknBg{margin: 18px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 1.7vw, 23px); line-height: 1.45; color: #86976F;}
.sTPGLhVb{flex: 1 1 340px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; justify-content: center;}
.shHwVcVT{margin: 0; font-size: 18px; line-height: 1.62; color: #5C5F59;}
.sZzpqI7R{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 18px; line-height: 1.5; color: #5F7E54;}
.svjD2QXb{padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 48px) clamp(56px, 7vw, 104px);}
.sbYQ8i9f{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 328px), 1fr)); gap: clamp(18px, 2vw, 28px);}
.s5wt-ByK{background: #F6FBEF; border-radius: 15px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.sGIshc26{width: 100%; height: 210px; object-fit: cover; object-position: 50% 28%; transition: transform 1.1s cubic-bezier(0.22,0.61,0.36,1);}
.sHsbHHDR{padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto;}
.sX0NrMyX{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; line-height: 1.45; color: #4F6B45;}
.sxo24Epb{margin-top: auto; padding-top: 12px; font-family: Sen, sans-serif; font-weight: 700; font-size: 14.5px; color: #5F7E54;}
.snKuPJ30{display: inline-block; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);}
.sTOzqHD3{width: 100%; height: 210px; object-fit: cover; object-position: 50% 20%; transition: transform 1.1s cubic-bezier(0.22,0.61,0.36,1);}
.smK5wX02{width: 100%; height: 210px; object-fit: cover; object-position: 50% 50%; transition: transform 1.1s cubic-bezier(0.22,0.61,0.36,1);}
.s86vTh2P{background: #F6FBEF; padding: clamp(52px, 6.5vw, 96px) clamp(20px, 5vw, 48px);}
.sx1kldtl{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(34px, 5vw, 72px); align-items: flex-start;}
.sHAUmk3l{flex: 1 1 420px; min-width: 290px;}
.sWm0d3Uk{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; margin-bottom: 20px;}
.so87QIoC{margin: 0; font-family: Cookie, cursive; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.2; color: #729664;}
.sOmIQ-cI{margin: 22px 0 0; font-size: 17px; line-height: 1.65; color: #083D05; max-width: 58ch;}
.sPEGVEc9{display: flex; align-items: center; gap: 14px; margin-top: 24px;}
.sCvvDYbH{width: 54px; height: 54px; border-radius: 100px; object-fit: cover; object-position: 50% 30%;}
.scRNajZs{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05;}
.sWTIcuT-{display: block; font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 14px; color: #5C5F59; margin-top: 2px;}
.snlePjX8{flex: 1 1 280px; min-width: 250px;}
.sDEKNiOD{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #5F7E54; margin-bottom: 22px;}
.sFsiKRuN{display: flex; flex-wrap: wrap; gap: 10px 12px;}
.s_DAgWLh{font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #5F7E54; background: #FFFFFF; border-radius: 100px; padding: 11px 20px;}
.saZvEc8k{display: flex; gap: 12px; margin-top: 20px;}
.sZRi3Zru{flex: 1 1 0; min-width: 0; padding: 0; border: 0; border-radius: 15px; overflow: hidden; background: none; cursor: zoom-in; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);}
.skno6UlT{width: 100%; height: 132px; object-fit: cover; object-position: 50% 0%;}
.sS1hTnea{width: 100%; height: 132px; object-fit: cover;}
.swJP45Dr{background: #D2E5BD; padding: clamp(52px, 6.5vw, 96px) clamp(20px, 5vw, 48px);}
.stfr27K5{max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap-reverse; align-items: center; gap: clamp(30px, 4.5vw, 68px);}
.sk5oQXDh{flex: 1 1 300px; min-width: 260px;}
.sE3Y3Zss{width: 100%; max-width: 380px; margin: 0 auto; height: auto;}
.sRDUnzDx{font-size: 12.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #083D05; margin-bottom: 14px;}
.sU_w3wPo{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(26px, 2.9vw, 38px); line-height: 1.28; color: #083D05;}
.sa5e8u3P{margin: 20px 0 0; font-size: 17px; line-height: 1.65; color: #083D05; max-width: 50ch;}
.sZuM7ns_{display: inline-block; margin-top: 30px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #FFFFFF; background: #083D05; padding: 17px 30px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sjEFTzO8{padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 48px);}
.s5JIDfs0{max-width: 1080px; margin: 0 auto; background: #D2E5BD; border-radius: 45px; padding: clamp(34px, 5vw, 72px) clamp(24px, 5vw, 72px); text-align: center;}
.scPYq28A{display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 26px;}
.sYzvNuPt{margin: 0 auto; max-width: 20ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.15; color: #083D05;}
.sUV_sK6-{margin: 22px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.65; color: #083D05;}
.s_8IcX6O{display: inline-block; margin-top: 32px; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF; background: #083D05; padding: 19px 36px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sHEGdXz1{padding: clamp(34px, 4.4vw, 60px) clamp(20px, 5vw, 48px) clamp(44px, 5.5vw, 78px);}
.s0g0jytb{max-width: 68ch; margin: 0 auto;}
.sRIwJl19{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 48px); line-height: 1.18; color: #729664; text-wrap: pretty;}
.siMw_gW2{margin: 14px 0 0; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #86976F;}
.s95XOfMX{display: block; width: 64px; height: 2px; margin: 26px 0 0; border-radius: 100px; background: #C9DDB6;}
.sbTylCOZ{margin: 42px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(21px, 1.9vw, 25px); line-height: 1.3; color: #4F6B45;}
.sDYtJcD6{margin: 14px 0 0; font-size: 17px; line-height: 1.7; color: #5C5F59;}
.s0AKOXVQ{border-bottom: 1px solid #C9DDB6;}
.sxzmO4Jp{margin: 40px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(21px, 1.9vw, 25px); line-height: 1.3; color: #4F6B45;}
.sedIAuox{border-bottom: 1px solid #C9DDB6; word-break: break-word;}
.sky1DKVp{padding: clamp(34px, 4.4vw, 60px) clamp(20px, 5vw, 48px) clamp(28px, 3.4vw, 44px);}
.sgY2MRDi{flex: 1 1 420px; min-width: 300px;}
.siSzEf9t{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 52px); line-height: 1.16; color: #729664; text-wrap: pretty;}
.sxU2l-TJ{margin: 20px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.45; color: #5F7E54; max-width: 40ch;}
.spRTg2wZ{display: inline-block; margin-top: 28px; font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05; background: #99DD46; padding: 17px 30px; border-radius: 100px; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.55s ease;}
.sKAt6kor{flex: 1 1 300px; min-width: 260px; border-radius: 45px; overflow: hidden; background: #F6FBEF; aspect-ratio: 5 / 4; max-height: 420px;}
.s0okGuI6{width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; will-change: transform;}
.sErv27fS{padding: clamp(18px, 2.4vw, 32px) clamp(20px, 5vw, 48px) clamp(40px, 5vw, 68px);}
.ssxAFnD2{display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: clamp(16px, 1.8vw, 24px); align-items: start;}
.sa1Bik3H{background: #F6FBEF; border-radius: 15px; padding: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 14px; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.soPpI8e_{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(21px, 1.9vw, 25px); line-height: 1.28; color: #729664;}
.s7yHfdyt{margin: 0; font-size: 16px; line-height: 1.62; color: #5C5F59;}
.sem8xU83{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: 16px; line-height: 1.5; color: #4F6B45;}
.sIwgH1uz{grid-column: 1 / -1; background: #F6FBEF; border-radius: 15px; padding: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 14px; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.s1V1fBd8{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 1.7vw, 22px); line-height: 1.32; color: #729664;}
.siLajUIz{margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 9px clamp(20px, 3vw, 44px);}
.sUBnyJBl{grid-column: 1 / -1; background: #F6FBEF; border-radius: 15px; overflow: hidden; transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.7s ease;}
.sqEuXSxf{width: 100%; height: 100%; min-height: 260px; object-fit: cover; object-position: 50% 24%; transition: transform 1.1s cubic-bezier(0.22,0.61,0.36,1);}
.s_4zk_vn{padding: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 14px;}
.swuZKJ5B{padding: 0 clamp(20px, 5vw, 48px) clamp(44px, 5.5vw, 76px);}
.spfwftzJ{max-width: 1080px; margin: 0 auto; background: #D2E5BD; border-radius: 45px; padding: clamp(28px, 3.4vw, 48px); display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 3.5vw, 52px);}
.sQI9aTU9{width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;}
.sC4qtQ0M{display: flex; align-items: flex-end; gap: 4px; margin-bottom: 20px;}
.solX2t8E{margin: 0; max-width: 22ch; font-family: Cookie, cursive; font-weight: 400; font-size: clamp(32px, 4vw, 52px); line-height: 1.15; color: #083D05;}
.sabNJ8Ck{margin: 22px 0 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 1.7vw, 23px); line-height: 1.35; color: #083D05;}
.s-eBXBED{margin: 14px 0 0; max-width: 50ch; font-size: 16.5px; line-height: 1.62; font-style: italic; color: #083D05;}
.sGqge12w{margin-top: clamp(24px, 4vw, 36px); padding: clamp(24px, 4vw, 34px); background: #FFFFFF; border-radius: 22px; border: 1.5px solid #D2E5BD;}
.sUkmiaSa{margin: 0; font-family: Sen, sans-serif; font-weight: 700; font-size: clamp(19px, 2vw, 23px); line-height: 1.3; color: #4F6B45;}
.sdvXtaOj{margin-top: 20px; display: grid; gap: 16px; justify-items: center;}
.s27oCp7z{font-family: Sen, sans-serif; font-weight: 700; font-size: 15px; color: #083D05; background: #C6F24E; border: 0; border-radius: 100px; padding: 13px 30px; cursor: pointer;}
.hi1ODtSf:hover{color: #5F7E54;}
.hGqDthIZ:hover{color: #083D05;}
.hRoM8JLk:hover{border-color: #729664; color: #083D05; background: #F6FBEF;}
.h3e1WIk-:hover{background: #5F8153;}
.hjLcEYN0:hover{filter: none; color: #729664;}
.hlpyKLFf:hover{transform: translateY(-3px); box-shadow: 0 14px 30px rgba(114,150,100,0.3);}
.hTXOXbgu:hover{transform: translateY(-5px); box-shadow: 0 16px 38px rgba(114,150,100,0.13);}
.h6NtJlbl:hover{color: #083D05; border-color: #729664;}
.h1eDos36:hover{transform: translateY(-3px); box-shadow: 0 16px 34px rgba(8,61,5,0.26);}
.hfdmZ0fL:hover{border-color: #083D05;}
.h1qAXh7P:hover{transform: translateY(-3px);}
.h6vMwGvU:hover{transform: translateY(-4px); box-shadow: 0 16px 38px rgba(114,150,100,0.14);}
.hq6dTXjs:hover{background: rgba(255,255,255,0.2);}
.hW3y7XxL:hover{border-color: #729664; color: #083D05; background: #FFFFFF;}
.h4PkFjKV:hover{transform: translateY(-3px); box-shadow: 0 14px 30px rgba(153,221,70,0.28);}
.h4hUiJKs:hover{transform: translateY(-3px); border-color: #C9DDB6; color: #083D05;}
.fPTSBqEW:focus{outline: 2px solid #083D05; outline-offset: 3px;}
.fho2VwMQ:focus{outline: 2px solid #A0C094; outline-offset: 3px;}
.f5mzAkK8:focus{outline: none; border-color: #729664; box-shadow: 0 0 0 3px rgba(160,192,148,0.3);}