:root {
    /* sage / forest palette extracted from flyer */
    --bg: #e6ece5;          /* sage page background */
    --bg-soft: #eef2eb;     /* slightly lighter */
    --paper: #f6f4ee;       /* warm off-white card */
    --ink: #2d4a3e;         /* deep forest, main text */
    --ink-soft: #4a6357;
    --ink-mute: #7a8a82;
    --rule: #b9c7bd;        /* hairline dividers */
    --accent: #c4a878;      /* warm sand accent */
    --accent-deep: #9a7f4e;
    --shadow: 0 1px 2px rgba(45,74,62,.04), 0 8px 30px rgba(45,74,62,.06);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
  }

  a { color: inherit; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ───── Nav ───── */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(230,236,229,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
  }
  nav.top.scrolled { border-color: var(--rule); }
  nav.top .inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px; margin: 0 auto;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .brand .lotus { width: 28px; height: 28px; color: var(--ink); }
  .brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 36px;
    font-size: 14px; letter-spacing: 0.04em;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    transition: color .2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a::after {
    content:''; position:absolute; left:0; bottom:-6px;
    width:0; height:1px; background: var(--accent);
    transition: width .3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-size: 13px; letter-spacing: 0.12em;
    padding: 10px 18px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .25s;
  }
  .nav-cta:hover { background: var(--ink); color: var(--paper); }
  @media (max-width: 760px) {
    .nav-links { display: none; }
  }

  /* ───── Aktuelles Banner (CMS-toggle) ───── */
  .news-banner {
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
    overflow: hidden;
  }
  .news-banner .inner {
    max-width: 1180px; margin: 0 auto;
    padding: 12px 32px;
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .news-banner .pill {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    background: var(--accent); color: var(--ink);
    font-weight: 600;
  }
  .news-banner a {
    margin-left: auto;
    text-decoration: none;
    border-bottom: 1px solid rgba(246,244,238,.4);
    padding-bottom: 1px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .news-banner a:hover { border-color: var(--paper); }

  /* ───── Hero ───── */
  .hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }
  .hero .grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
  }
  .hero .eyebrow {
    font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--ink-soft);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .hero .eyebrow .line { flex: 0 0 36px; height: 1px; background: var(--rule); }
  .hero h1 {
    font-size: clamp(48px, 6.4vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.005em;
    font-weight: 300;
    margin-bottom: 28px;
  }
  .hero h1 .italic { font-style: italic; color: var(--ink-soft); font-weight: 300;}
  .hero p.lede {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 0 40px 0;
    line-height: 1.6;
  }
  .hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { background: #1f3a2f; transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }
  .btn .arr { transition: transform .25s; }
  .btn:hover .arr { transform: translateX(4px); }

  .hero .visual {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(196,168,120,.25), transparent 60%),
      linear-gradient(180deg, #d4e0d5 0%, #aabfae 100%);
    box-shadow: var(--shadow);
  }
  .hero .visual::after {
    content:'';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(135deg, rgba(45,74,62,.04) 0 2px, transparent 2px 18px);
  }
  .placeholder-label {
    position: absolute; bottom: 16px; left: 16px;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 11px; letter-spacing: 0.06em;
    background: rgba(246,244,238,.85);
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 2px;
    pointer-events: none;
  }
  .stones {
    position: absolute;
    left: 50%; top: 55%; transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    filter: drop-shadow(0 12px 24px rgba(45,74,62,.25));
  }
  .stones .stone {
    background: linear-gradient(180deg, #6a5d52, #3a342e);
    border-radius: 50%;
  }
  .stones .stone:nth-child(1) { width: 50px; height: 28px; }
  .stones .stone:nth-child(2) { width: 80px; height: 38px; }
  .stones .stone:nth-child(3) { width: 110px; height: 50px; }
  .stones .stone:nth-child(4) { width: 130px; height: 60px; }

  .hero .float-card {
    position: absolute;
    right: -8px; bottom: 48px;
    background: var(--paper);
    border-radius: 4px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 14px;
    font-size: 13px;
  }
  .hero .float-card .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6c9a6c;
    box-shadow: 0 0 0 4px rgba(108,154,108,.18);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(108,154,108,.18);}
    50% { box-shadow: 0 0 0 8px rgba(108,154,108,.05);}
  }

  @media (max-width: 880px) {
    .hero { padding: 60px 0 70px; }
    .hero .grid { grid-template-columns: 1fr; gap: 48px; }
    .hero .float-card { right: 12px; bottom: 12px; }
  }

  /* ───── Section frame ───── */
  section.block {
    padding: 110px 0;
    position: relative;
  }
  section.block + section.block { border-top: 1px solid var(--rule); }
  .section-head {
    display: flex; align-items: baseline; gap: 18px;
    margin-bottom: 48px;
  }
  .section-head .num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-mute);
  }
  .section-head .num.news-marker {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: rgba(196,168,120,.18);
    padding: 6px 12px;
    border-radius: 999px;
  }
  .section-head .rule {
    flex: 1; height: 1px; background: var(--rule);
  }
  .section-head h2 {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 300;
    line-height: 1.05;
  }
  .section-head h2 em { font-style: italic; color: var(--ink-soft); }

  @media (max-width: 760px) {
    section.block { padding: 72px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 32px; }
    .section-head .rule { width: 60px; flex: none; }
  }

  /* ───── Was ist das? ───── */
  .what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .what-card {
    background: var(--paper);
    padding: 36px 32px;
    border-radius: 4px;
    border: 1px solid rgba(185,199,189,.5);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .what-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  .what-card .marker {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--accent-deep);
    margin-bottom: 14px;
  }
  .what-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .what-card p {
    color: var(--ink-soft);
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
  }
  @media (max-width: 760px) {
    .what-grid { grid-template-columns: 1fr; }
  }

  /* ───── Wer bin ich? ───── */
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
  }
  .portrait {
    aspect-ratio: 4/5;
    border-radius: 4px;
    background:
      radial-gradient(ellipse at 50% 40%, #b8a087 0%, #6a5740 70%),
      #564839;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .portrait::after {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(246,244,238,.05) 0 2px, transparent 2px 18px);
  }
  .who-text h3 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    margin-bottom: 24px;
  }
  .who-text p {
    font-size: 18px; line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 18px;
  }
  .who-text strong { color: var(--ink); font-weight: 600; }
  .who-text .sig {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 28px;
    margin-top: 28px;
    color: var(--ink);
  }
  @media (max-width: 880px) {
    .who-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ───── Anwendungsgebiete ───── */
  .app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
  }
  .app-intro p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 440px;
  }
  .app-list {
    list-style: none; margin: 0; padding: 0;
  }
  .app-list li {
    display: flex; align-items: baseline; gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    font-size: 17px;
    color: var(--ink);
    transition: padding .3s, color .3s;
    cursor: default;
  }
  .app-list li:last-child { border-bottom: 1px solid var(--rule); }
  .app-list li:hover { padding-left: 8px; color: var(--accent-deep); }
  .app-list .idx {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-mute);
    min-width: 28px;
  }
  .app-list .lab { flex: 1; }
  .app-list .note { font-size: 13px; color: var(--ink-mute); font-style: italic; }
  @media (max-width: 880px) {
    .app-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ───── Quote ───── */
  .quote-block {
    padding: 140px 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(196,168,120,.12), transparent 70%),
      var(--bg-soft);
    text-align: center;
    position: relative;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .quote-block .mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    line-height: 0.6;
    color: var(--accent);
    opacity: .55;
    margin-bottom: 8px;
    user-select: none;
  }
  .quote-block blockquote {
    margin: 0 auto;
    max-width: 820px;
    padding: 0 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 300;
    color: var(--ink);
  }
  .quote-block cite {
    display: block;
    margin-top: 32px;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ───── Aktuelles section (flexibel für 1–2 Einträge) ───── */
  .news-section .news-wrap {
    display: grid;
    gap: 32px;
  }
  .news-section .news-wrap.count-1 { grid-template-columns: 1fr; }
  .news-section .news-wrap.count-2 { grid-template-columns: 1fr 1fr; }

  /* Featured (1 item): two-column with optional image */
  .news-featured {
    background: var(--paper);
    border: 1px solid rgba(185,199,189,.5);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 360px;
  }
  .news-featured.no-image { grid-template-columns: 1fr; }
  .news-featured .img {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 40% 30%, rgba(196,168,120,.35), transparent 60%),
      linear-gradient(160deg, #d4e0d5 0%, #92ad99 100%);
    min-height: 280px;
  }
  .news-featured .img::after {
    content:''; position:absolute; inset:0;
    background-image: repeating-linear-gradient(135deg, rgba(45,74,62,.05) 0 2px, transparent 2px 18px);
  }
  .news-featured .body {
    padding: 44px 44px;
    display: flex; flex-direction: column;
    justify-content: center;
  }
  .news-featured .date {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 16px;
  }
  .news-featured h3 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.15;
  }
  .news-featured p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 24px;
  }
  .news-featured .meta {
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-mute);
  }
  .news-featured .meta span { display: inline-flex; align-items: center; gap: 6px; }
  .news-featured .pill-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(196,168,120,.18);
    color: var(--accent-deep);
    border-radius: 999px;
    margin-bottom: 18px;
    width: fit-content;
  }

  /* Card (1 of 2 items) */
  .news-card {
    background: var(--paper);
    border: 1px solid rgba(185,199,189,.5);
    border-radius: 4px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s;
  }
  .news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .news-card .img {
    aspect-ratio: 16/10;
    background:
      radial-gradient(ellipse at 40% 30%, rgba(196,168,120,.35), transparent 60%),
      linear-gradient(160deg, #d4e0d5 0%, #92ad99 100%);
    position: relative;
  }
  .news-card .img::after {
    content:''; position:absolute; inset:0;
    background-image: repeating-linear-gradient(135deg, rgba(45,74,62,.05) 0 2px, transparent 2px 18px);
  }
  .news-card .body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
  .news-card .date {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 12px;
  }
  .news-card h3 {
    font-size: 24px; margin-bottom: 10px; font-weight: 500;
    line-height: 1.25;
  }
  .news-card p {
    color: var(--ink-soft);
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
  }
  .news-card .meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex; gap: 16px; flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-mute);
  }
  .news-card .pill-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(196,168,120,.18);
    color: var(--accent-deep);
    border-radius: 999px;
    margin-bottom: 14px;
    width: fit-content;
  }
  .news-placeholder-label {
    position: absolute; bottom: 12px; left: 12px;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 10px; letter-spacing: 0.06em;
    background: rgba(246,244,238,.85);
    color: var(--ink);
    padding: 4px 8px;
    border-radius: 2px;
    pointer-events: none;
  }

  @media (max-width: 880px) {
    .news-section .news-wrap.count-2 { grid-template-columns: 1fr; }
    .news-featured { grid-template-columns: 1fr; }
    .news-featured .body { padding: 28px; }
  }

  /* ───── Kontakt (kompakt) ───── */
  .contact-wrap {
    max-width: 680px;
    margin: 0 auto;
  }
  .contact-intro {
    text-align: center;
    margin-bottom: 36px;
  }
  .contact-intro .form-sub {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0 auto;
    max-width: 520px;
  }
  .after-note {
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-mute);
    font-style: italic;
    text-align: center;
  }
  .field label .opt {
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-mute);
    font-style: italic;
    font-size: 12px;
    margin-left: 4px;
  }

  /* Form */
  .form {
    background: var(--paper);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(185,199,189,.5);
  }
  .form h3 { font-size: 28px; margin-bottom: 6px; font-weight: 500; }
  .form .form-sub {
    font-size: 14px; color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .field { margin-bottom: 20px; }
  .field label {
    display: block;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }
  .field input, .field textarea, .field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: var(--ink);
    transition: border-color .2s;
    border-radius: 0;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-bottom-color: var(--ink);
  }
  .field textarea { resize: vertical; min-height: 100px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .form .check {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 13px;
    color: var(--ink-soft);
    margin: 8px 0 24px;
    line-height: 1.5;
  }
  .form .check input { margin-top: 4px; }
  .form .submit-row {
    display: flex; align-items: center; gap: 18px;
  }
  .form .err { color: #a14a4a; font-size: 13px; margin-top: 4px; }
  .form .success {
    padding: 20px; text-align: center;
    background: rgba(108,154,108,.12);
    border-radius: 4px;
    border: 1px solid rgba(108,154,108,.3);
  }
  .form .success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; margin: 0 0 8px; font-weight: 400;
  }
  .form .success p { color: var(--ink-soft); margin: 0; font-size: 15px; }

  @media (max-width: 880px) {
    .form { padding: 28px 22px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
  }

  /* ───── Footer ───── */
  footer.foot {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0 36px;
  }
  footer.foot .grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  footer.foot .brand .name { color: var(--paper); }
  footer.foot .brand .lotus { color: var(--paper); }
  footer.foot p { color: rgba(246,244,238,.72); margin: 16px 0 0; max-width: 280px; font-size: 14.5px; }
  footer.foot h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 18px;
  }
  footer.foot ul { list-style: none; padding: 0; margin: 0; }
  footer.foot ul li { margin-bottom: 10px; font-size: 14.5px; }
  footer.foot ul a { color: rgba(246,244,238,.78); text-decoration: none; }
  footer.foot ul a:hover { color: var(--accent); }
  footer.foot .bottom {
    border-top: 1px solid rgba(246,244,238,.12);
    padding-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    font-size: 12.5px;
    color: rgba(246,244,238,.5);
  }
  @media (max-width: 760px) {
    footer.foot .grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* reveal animation */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: none; }

/* ── Contact Form 7 compatibility (when using CF7 shortcode) ───────────── */
.wpcf7-form p { margin: 0 0 20px; }
.wpcf7-form label {
  display: block;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.wpcf7-form textarea { resize: vertical; min-height: 100px; }
.wpcf7-form .wpcf7-submit {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}
.wpcf7-form .wpcf7-submit:hover { background: #1f3a2f; }
.wpcf7-response-output {
  border-radius: 4px !important;
  padding: 14px 18px !important;
  font-size: 14px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(108,154,108,.4) !important;
  background: rgba(108,154,108,.1);
}
