/* TERMINOWI STOLARZE — palette/style from demo.html */

.icon,
    .choice-content b,
    .custom-select__button::before,
    .mobile-actions__link span {
      background: #edf2e8;
      color: var(--accent);
    }

@media (max-width: 780px) {
      .nav-links {
        background:
          radial-gradient(circle at 18% 16%, rgba(217,227,210,.42), transparent 30%),
          radial-gradient(circle at 86% 78%, rgba(47,93,44,.12), transparent 32%),
          linear-gradient(135deg, #f5f4f0 0%, #eef3ea 100%) !important;
      }

      .site-header {
        background: rgba(245,244,240,.94) !important;
      }
    }

/* Współpraca section */

@media (max-width: 1040px) {
      .cooperation-path {
        grid-template-columns: repeat(2, 1fr);
      }

      .cooperation-path::before {
        display: none;
      }

      .cooperation-step:nth-child(2n) {
        margin-top: 0;
      }

      .cooperation-step:last-child {
        grid-column: 1 / -1;
      }
    }

@media (max-width: 780px) {
      .cooperation-path {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
      }

      .cooperation-step,
      .cooperation-step:nth-child(2n),
      .cooperation-step:nth-child(2n + 1) {
        min-height: auto;
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 16px;
        align-items: start;
        padding: 18px;
        border-radius: 24px;
      }

      .cooperation-number {
        width: 54px;
        height: 54px;
        margin-bottom: 0;
      }
    }

@media (max-width: 720px) {
      .footer-row {
        align-items: center;
        text-align: center;
      }

      .footer-actions {
        margin-left: 0;
        justify-content: center;
      }
    }

/* Facebook reviews */

/* Google review cards */

@media (max-width: 780px) {
      .google-review-body {
        padding: 20px;
      }
    }

@media (max-width: 1040px) {
      .fb-embed-wrap {
        min-height: 230px;
      }
    }

@media (max-width: 780px) {
      .fb-review-card {
        padding: 14px;
        border-radius: 24px;
      }

      .fb-review-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .fb-embed-wrap {
        min-height: 228px;
        padding: 10px;
        border-radius: 18px;
      }
    }

/* Simple contact form */

.simple-quote-form {
      min-height: auto;
    }

.simple-form-head {
      margin-bottom: 26px;
    }

.simple-form-head h3 {
      margin-bottom: 10px;
      font-size: clamp(28px, 4vw, 42px);
    }

.upload-box {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 12px;
      padding: 20px;
      border: 1.5px dashed rgba(47, 93, 44, 0.34);
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(239, 246, 235, 0.86), rgba(255, 255, 255, 0.92));
      cursor: pointer;
      transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

.upload-box:hover,
    .upload-box:focus-within {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 16px 38px rgba(28, 58, 26, 0.09);
    }

.upload-box input[type="file"].upload-input {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

.upload-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

.upload-info {
      position: relative;
      min-width: 0;
      padding-left: 58px;
    }

.upload-info::before {
      content: "+";
      position: absolute;
      left: 0;
      top: 50%;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 15px;
      transform: translateY(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
      box-shadow: 0 14px 30px rgba(47, 93, 44, 0.18);
    }

.upload-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      min-height: 40px;
      padding: 10px 16px;
      border: 1px solid rgba(47, 93, 44, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      color: var(--accent);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }

.upload-box:hover .upload-button,
    .upload-box:focus-within .upload-button {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

.upload-file-name {
      display: inline-flex !important;
      width: fit-content;
      max-width: 100%;
      margin-top: 2px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(47, 93, 44, 0.09);
      color: var(--accent) !important;
      font-size: 12px;
      font-weight: 900 !important;
      line-height: 1.3 !important;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

@media (max-width: 620px) {
      .upload-content {
        align-items: stretch;
        flex-direction: column;
      }

      .upload-button {
        width: 100%;
      }
    }

.upload-box strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text);
      font-weight: 900;
    }

.upload-box small {
      display: block;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.45;
    }

.simple-form-actions {
      justify-content: flex-end;
    }

.simple-form-actions .btn {
      min-width: 210px;
    }

@media (max-width: 780px) {
      .simple-form-actions .btn {
        width: 100%;
      }
    }

/* Kontakt page: stacked layout + contact details block */

#wycena .quote-wrap {
      display: flex !important;
      flex-direction: column !important;
      gap: 26px !important;
      max-width: 980px;
    }

#wycena .quote-panel,
    #wycena .quote-form,
    #wycena .kontakt-details-card {
      width: 100%;
      align-self: stretch !important;
      height: auto !important;
    }

#wycena .quote-panel {
      min-height: auto;
      justify-content: flex-start !important;
    }

.kontakt-details-card {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border: 1px solid rgba(47, 93, 44, 0.12);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

.kontakt-details-card::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 300px;
      height: 300px;
      border-radius: 999px;
      background: rgba(47, 93, 44, 0.09);
      pointer-events: none;
    }

.kontakt-details-head,
    .kontakt-details-grid {
      position: relative;
      z-index: 1;
    }

.kontakt-details-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

.kontakt-details-head h3 {
      margin-bottom: 0;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1;
      letter-spacing: -0.055em;
    }

.kontakt-details-head p {
      max-width: 420px;
      margin: 0;
      color: var(--muted);
      font-weight: 700;
    }

.kontakt-details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

.kontakt-detail-link,
    .kontakt-detail-item {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 76px;
      padding: 16px;
      border: 1px solid rgba(47, 93, 44, 0.12);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.74);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

.kontakt-detail-link:hover {
      transform: translateY(-3px);
      border-color: rgba(47, 93, 44, 0.28);
      background: #fff;
      box-shadow: 0 16px 36px rgba(47, 93, 44, 0.08);
    }

.kontakt-detail-icon {
      display: grid;
      place-items: center;
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: #edf2e8;
      color: var(--accent);
      font-size: 19px;
      font-weight: 900;
    }

.kontakt-detail-text span {
      display: block;
      margin-bottom: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

.kontakt-detail-text strong {
      display: block;
      color: var(--text);
      font-size: 17px;
      line-height: 1.25;
      word-break: break-word;
    }

@media (max-width: 780px) {
      #wycena .quote-wrap {
        gap: 18px !important;
      }

      .kontakt-details-card {
        padding: 22px;
        border-radius: 26px;
      }

      .kontakt-details-head {
        display: block;
      }

      .kontakt-details-head h3 {
        margin-bottom: 12px;
      }

      .kontakt-details-grid {
        grid-template-columns: 1fr;
      }
    }

/* Kontakt page: two-column layout */

#wycena .quote-wrap {
      display: grid !important;
      grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr) !important;
      gap: 26px !important;
      max-width: var(--container) !important;
      align-items: stretch !important;
    }

#wycena .quote-panel {
      grid-column: 1 !important;
      grid-row: 1 !important;
      width: 100% !important;
      min-height: auto !important;
      height: auto !important;
      align-self: stretch !important;
      justify-content: center !important;
    }

#wycena .kontakt-details-card {
      grid-column: 1 !important;
      grid-row: 2 !important;
      width: 100% !important;
      height: auto !important;
      align-self: stretch !important;
    }

#wycena .quote-form {
      grid-column: 2 !important;
      grid-row: 1 / span 2 !important;
      width: 100% !important;
      height: 100% !important;
      align-self: stretch !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
    }

#wycena .quote-form .form-step.active {
      display: block;
    }

#wycena .kontakt-details-grid {
      grid-template-columns: 1fr !important;
    }

#wycena .kontakt-details-head {
      display: block !important;
    }

#wycena .kontakt-details-head h3 {
      margin-bottom: 12px;
    }

@media (max-width: 1040px) {
      #wycena .quote-wrap {
        grid-template-columns: 1fr !important;
        max-width: 980px !important;
      }

      #wycena .quote-panel,
      #wycena .kontakt-details-card,
      #wycena .quote-form {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: auto !important;
        align-self: stretch !important;
      }

      #wycena .quote-form {
        justify-content: flex-start !important;
      }
    }

/* Kontakt v05: one-column stacked layout, no tips list in green block */

#wycena .quote-wrap {
      display: flex !important;
      flex-direction: column !important;
      gap: 26px !important;
      max-width: 980px !important;
      align-items: stretch !important;
    }

#wycena .quote-panel,
    #wycena .quote-form,
    #wycena .kontakt-details-card {
      grid-column: auto !important;
      grid-row: auto !important;
      width: 100% !important;
      height: auto !important;
      align-self: stretch !important;
    }

#wycena .quote-panel {
      justify-content: flex-start !important;
      min-height: auto !important;
    }

#wycena .quote-panel p {
      margin-bottom: 0 !important;
    }

#wycena .quote-form {
      display: block !important;
      justify-content: flex-start !important;
    }

#wycena .kontakt-details-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

@media (max-width: 780px) {
      #wycena .quote-wrap {
        max-width: 100% !important;
        gap: 18px !important;
      }

      #wycena .kontakt-details-grid {
        grid-template-columns: 1fr !important;
      }
    }

/* Kontakt v06: better contrast in green block + WhatsApp contact */

#wycena .quote-panel h2 {
      color: #ffffff !important;
    }

#wycena .quote-panel p {
      color: rgba(255, 255, 255, 0.82) !important;
    }

#wycena .quote-panel .eyebrow.dark {
      color: #eef6ea !important;
      border-color: rgba(255,255,255,.24) !important;
      background: rgba(255,255,255,.1) !important;
    }

/* Kontakt v07: header style aligned with current index/gallery */

.site-header .logo::before {
      display: none !important;
    }

#top {
      padding-top: 110px;
    }

@media (max-width: 1040px) {
      .site-header .nav {
        gap: 18px !important;
      }

      .site-header .nav-links {
        gap: 20px !important;
      }

      .site-header .btn.primary {
        padding: 14px 20px !important;
        letter-spacing: 1.5px !important;
      }
    }

@media (max-width: 780px) {
      #top {
        padding-top: 86px;
      }

      .site-header {
        padding: 18px 0 !important;
        background: rgba(245, 244, 240, .92) !important;
        backdrop-filter: blur(18px) !important;
        border-bottom: 1px solid rgba(47, 93, 44, .08) !important;
      }

      .site-header .logo {
        font-size: 31px !important;
      }

      body.menu-open .site-header {
        height: 100dvh !important;
        background: transparent !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
      }

      .site-header .nav {
        gap: 14px !important;
      }

      .site-header .btn.primary {
        display: none !important;
      }

      .site-header .nav-links {
        position: fixed !important;
        inset: 0 !important;
        z-index: 1100 !important;
        width: 100vw !important;
        height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 14px !important;
        padding: 112px 24px 42px !important;
        background: rgba(245, 244, 240, .98) !important;
        backdrop-filter: blur(20px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: opacity .45s ease, visibility .45s ease, transform .45s ease !important;
      }

      body.menu-open .site-header .nav-links {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
      }

      .site-header .nav-links::before,
      .site-header .nav-links::after {
        display: none !important;
      }

      .site-header .nav-links a {
        width: 100% !important;
        min-height: 58px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 16px 18px !important;
        border: 1px solid rgba(47, 93, 44, 0.10) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, 0.72) !important;
        box-shadow: 0 14px 34px rgba(47, 93, 44, 0.06) !important;
        color: var(--text) !important;
        font-size: 17px !important;
        letter-spacing: 2.5px !important;
        text-align: center !important;
      }

      .site-header .nav-links a::after {
        display: none !important;
      }

      .site-header .menu-btn {
        position: relative !important;
        z-index: 1300 !important;
        display: flex !important;
        width: 42px !important;
        height: 42px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
      }

      .site-header .menu-btn span {
        width: 100% !important;
        height: 2px !important;
        margin: 0 !important;
        background: var(--text) !important;
        transition: .4s ease !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(1) {
        transform: rotate(45deg) translateY(11px) !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(2) {
        opacity: 0 !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px) !important;
      }
    }

/* kontakt-v08: header aligned with index/gallery */

.site-header {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 1000 !important;
      padding: 24px 0 !important;
      background: transparent !important;
      border-bottom: 1px solid transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      box-shadow: none !important;
      transition: padding .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
    }

.site-header.scrolled {
      padding: 16px 0 !important;
      background: rgba(245, 244, 240, .88) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-bottom-color: rgba(47, 93, 44, .08) !important;
      box-shadow: 0 12px 34px rgba(47, 93, 44, .055) !important;
    }

.site-header .container.nav {
      width: min(var(--container), calc(100% - 40px)) !important;
      margin: 0 auto !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 38px !important;
    }

.site-header .logo {
      display: block !important;
      position: relative !important;
      z-index: 1201 !important;
      color: var(--accent) !important;
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: 42px !important;
      font-weight: 600 !important;
      line-height: .82 !important;
      letter-spacing: -0.03em !important;
      white-space: nowrap !important;
      text-decoration: none !important;
    }

.site-header .logo::before,
    .site-header .logo::after {
      display: none !important;
      content: none !important;
    }

.site-header .nav-links {
      display: flex !important;
      align-items: center !important;
      justify-content: flex-end !important;
      gap: clamp(22px, 3vw, 42px) !important;
      margin-left: auto !important;
      position: static !important;
      width: auto !important;
      height: auto !important;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      transform: none !important;
    }

.site-header .nav-links a {
      position: relative !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: auto !important;
      min-height: auto !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: var(--text) !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      letter-spacing: 2px !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      transition: color .35s ease, opacity .35s ease !important;
    }

.site-header .nav-links a::before {
      display: none !important;
      content: none !important;
    }

.site-header .nav-links a::after {
      content: '' !important;
      position: absolute !important;
      left: 0 !important;
      right: auto !important;
      bottom: -8px !important;
      width: 0 !important;
      height: 1px !important;
      border-radius: 999px !important;
      background: var(--accent) !important;
      transition: width .4s ease !important;
      display: block !important;
    }

.site-header .nav-links a:hover {
      color: var(--accent) !important;
      background: transparent !important;
      transform: none !important;
    }

.site-header .btn.primary {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: auto !important;
      min-height: auto !important;
      padding: 16px 26px !important;
      border-radius: 999px !important;
      background: var(--accent) !important;
      color: #fff !important;
      box-shadow: 0 15px 40px rgba(47, 93, 44, .22) !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: 2px !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
    }

.site-header .menu-btn {
      display: none !important;
    }

#top {
      padding-top: 120px !important;
    }

@media (max-width: 1040px) {
      .site-header .container.nav {
        gap: 18px !important;
      }

      .site-header .nav-links {
        gap: 20px !important;
      }

      .site-header .btn.primary {
        padding: 14px 20px !important;
        letter-spacing: 1.5px !important;
      }
    }

@media (max-width: 780px) {
      #top {
        padding-top: 92px !important;
      }

      .site-header {
        padding: 18px 0 !important;
        background: rgba(245, 244, 240, .92) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        border-bottom: 1px solid rgba(47, 93, 44, .08) !important;
      }

      body.menu-open .site-header {
        height: 100dvh !important;
        background: transparent !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      .site-header .container.nav {
        width: min(100% - 28px, var(--container)) !important;
        gap: 14px !important;
      }

      .site-header .logo {
        font-size: 31px !important;
      }

      .site-header .btn.primary {
        display: none !important;
      }

      .site-header .nav-links {
        position: fixed !important;
        inset: 0 !important;
        z-index: 1100 !important;
        width: 100vw !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 14px !important;
        margin: 0 !important;
        padding: 112px 24px 42px !important;
        background: rgba(245, 244, 240, .98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: opacity .45s ease, visibility .45s ease, transform .45s ease !important;
      }

      body.menu-open .site-header .nav-links {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
      }

      .site-header .nav-links::before,
      .site-header .nav-links::after {
        display: none !important;
        content: none !important;
      }

      .site-header .nav-links a {
        width: 100% !important;
        min-height: 58px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 16px 18px !important;
        border: 1px solid rgba(47, 93, 44, 0.10) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, 0.72) !important;
        box-shadow: 0 14px 34px rgba(47, 93, 44, 0.06) !important;
        color: var(--text) !important;
        font-size: 17px !important;
        letter-spacing: 2.5px !important;
        text-align: center !important;
      }

      .site-header .nav-links a::after {
        display: none !important;
      }

      .site-header .menu-btn {
        position: relative !important;
        z-index: 1300 !important;
        display: flex !important;
        width: 42px !important;
        height: 42px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        cursor: pointer !important;
      }

      .site-header .menu-btn span {
        display: block !important;
        width: 42px !important;
        height: 2px !important;
        margin: 0 !important;
        background: var(--text) !important;
        border-radius: 0 !important;
        transition: .4s ease !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(1) {
        transform: rotate(45deg) translateY(11px) !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(2) {
        opacity: 0 !important;
      }

      body.menu-open .site-header .menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px) !important;
      }
    }

/* Blog / Poradnik page */

.blog-page {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 18%, rgba(47, 93, 44, 0.12), transparent 30%),
        radial-gradient(circle at 84% 76%, rgba(217, 227, 210, 0.72), transparent 34%),
        linear-gradient(135deg, #f7f7f2 0%, #eef3ea 52%, #f5f4f0 100%);
    }

.blog-page::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(47, 93, 44, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 93, 44, 0.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at 50% 34%, #000 0 48%, transparent 82%);
      pointer-events: none;
    }

.blog-hero,
    .blog-list,
    .blog-cta-section {
      position: relative;
      z-index: 1;
    }

.blog-hero {
      padding: 60px 0 72px;
    }

.blog-hero-card {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
      gap: 34px;
      align-items: stretch;
      padding: clamp(28px, 5vw, 64px);
      border: 1px solid rgba(47, 93, 44, 0.13);
      border-radius: 46px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 28px 90px rgba(29, 27, 24, 0.09);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

.blog-hero h1 {
      max-width: 780px;
      margin: 0 0 22px;
      color: var(--green, #2f5d2c);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(58px, 9vw, 118px);
      line-height: 0.88;
      letter-spacing: -0.065em;
    }

.blog-hero p {
      max-width: 680px;
      margin: 0 0 30px;
      color: var(--muted, #686868);
      font-size: 18px;
      line-height: 1.85;
    }

.blog-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: auto;
    }

.blog-tags span {
      display: inline-flex;
      padding: 8px 11px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.11);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }

.blog-hero-card--simple {
      display: block;
      width: 100%;
      max-width: none;
      padding: clamp(28px, 5vw, 56px);
    }

.blog-hero-card--simple h1 {
      max-width: 860px;
    }

.blog-hero-card--simple p {
      max-width: 780px;
      margin-bottom: 26px;
    }

.blog-hero-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 26px;
    }

.blog-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 0;
    }

.blog-tags--light {
      margin-top: 0;
      justify-content: flex-end;
    }

.blog-tags--light span {
      border-color: rgba(47, 93, 44, 0.16);
      background: rgba(47, 93, 44, 0.07);
      color: var(--accent);
    }

.blog-list {
      padding: 0 0 92px;
    }

.blog-section-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 34px;
    }

.blog-section-header h2 {
      margin: 0;
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.92;
      letter-spacing: -0.055em;
    }

.blog-section-header p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 600;
    }

.blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

.blog-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(47, 93, 44, 0.12);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 18px 48px rgba(29, 27, 24, 0.07);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

.blog-card:hover {
      transform: translateY(-8px);
      border-color: rgba(47, 93, 44, 0.26);
      box-shadow: 0 28px 70px rgba(47, 93, 44, 0.13);
    }

.blog-card-image {
      height: 245px;
      overflow: hidden;
      background: var(--green-soft);
    }

.blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

.blog-card:hover .blog-card-image img {
      transform: scale(1.06);
    }

.blog-card-content {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 26px;
    }

.blog-card-kicker {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 14px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(47, 93, 44, 0.08);
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

.blog-card h3 {
      margin: 0 0 12px;
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

.blog-card p {
      margin: 0 0 22px;
      color: var(--muted);
      line-height: 1.72;
      font-weight: 600;
    }

.blog-card .btn {
      width: fit-content;
      margin-top: auto;
    }

.blog-cta-section {
      padding: 0 0 110px;
    }

.blog-cta-box {
      padding: clamp(34px, 6vw, 72px);
      border-radius: 42px;
      background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.15), transparent 28%),
        linear-gradient(135deg, var(--green), var(--accent-dark));
      color: #fff;
      text-align: center;
      box-shadow: 0 28px 80px rgba(47, 93, 44, 0.18);
    }

.blog-cta-box h2 {
      margin: 0 0 18px;
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 6vw, 84px);
      line-height: .92;
      letter-spacing: -0.055em;
    }

.blog-cta-box p {
      max-width: 720px;
      margin: 0 auto 28px;
      color: rgba(255,255,255,.78);
      font-size: 18px;
      line-height: 1.75;
    }

.blog-cta-box .btn.light {
      background: #fff;
      color: var(--green);
    }

@media (max-width: 1040px) {
      .blog-hero-card {
        grid-template-columns: 1fr;
      }

      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

@media (max-width: 780px) {
      .blog-hero {
        padding: 130px 0 54px;
      }

      .blog-hero-card,
      .blog-cta-box {
        border-radius: 30px;
      }

      .blog-hero p,
      .blog-section-header p,
      .blog-cta-box p {
        font-size: 16px;
      }

      .blog-section-header {
        display: grid;
      }

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

      .blog-hero-bottom {
        display: grid;
        gap: 18px;
      }

      .blog-tags--light {
        justify-content: flex-start;
      }

      .blog-card-image {
        height: 230px;
      }

      .blog-card .btn,
      .blog-cta-box .btn,
      .blog-hero .btn {
        width: 100%;
      }
    }

