
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F5F0E8;
    --cream-dark: #EDE6D8;
    --warm-white: #FAFAF7;
    --brown: #6B4F3A;
    --brown-light: #9C7B65;
    --brown-dark: #3E2D20;
    --olive: #7A8A6A;
    --olive-light: #A8B898;
    --olive-pale: #D8E0CC;
    --beige-mid: #C4B5A0;
    --text: #2D2219;
    --text-muted: #7A6E65;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    --font-script: 'Dancing Script', cursive;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--warm-white);
    color: var(--text);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,181,160,0.3);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo .paw { font-size: 1rem; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--brown); }

  .nav-cta {
    background: var(--olive);
    color: white !important;
    padding: 9px 22px;
    border-radius: 2px;
    letter-spacing: 0.12em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--olive-light) !important; color: var(--brown-dark) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 8% 80px;
  }

  .hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
  }
  .hero-bg-shape-1 {
    width: 700px; height: 700px;
    background: var(--olive-light);
    top: -200px; right: -150px;
  }
  .hero-bg-shape-2 {
    width: 400px; height: 400px;
    background: var(--beige-mid);
    bottom: -100px; left: 40%;
    opacity: 0.25;
  }

  /* SVG botanical decorations */
  .hero-botanical-tl {
    position: absolute;
    top: 60px; left: 30px;
    width: 180px;
    opacity: 0.55;
  }
  .hero-botanical-br {
    position: absolute;
    bottom: 40px; right: 60px;
    width: 160px;
    opacity: 0.5;
    transform: rotate(200deg) scaleX(-1);
  }
  .hero-botanical-tr {
    position: absolute;
    top: 50px; right: 120px;
    width: 120px;
    opacity: 0.35;
    transform: rotate(-30deg);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 400;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--olive);
  }

  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--brown-dark);
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--brown);
    display: block;
  }

  .hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--olive);
    margin-bottom: 1.8rem;
    margin-top: 0.3rem;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.8rem;
    font-weight: 300;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    background: var(--brown);
    color: white;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--brown-dark); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--brown);
    padding: 14px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    border: 1px solid var(--beige-mid);
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--brown); color: var(--brown-dark); }

  .hero-animals {
    position: absolute;
    right: 8%;
    bottom: 15%;
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    z-index: 2;
  }

  .hero-animal-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .animal-icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 1.5px solid var(--beige-mid);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .animal-icon-circle svg { width: 44px; height: 44px; }
  .animal-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ─── DIVIDER ─── */
  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    color: var(--beige-mid);
    font-size: 1.2rem;
  }
  .section-divider::before, .section-divider::after {
    content: '';
    display: block;
    height: 1px;
    width: 60px;
    background: var(--beige-mid);
  }

  /* ─── SECTIONS ─── */
  section { padding: 90px 8%; }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  /* ─── WHY ─── */
  .why-section {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--beige-mid);
  }

  .why-card {
    background: var(--cream);
    padding: 2rem;
    position: relative;
  }

  .why-icon {
    width: 36px; height: 36px;
    margin-bottom: 1rem;
    color: var(--olive);
  }

  .why-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
  }

  .why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ─── SYMPTOMS ─── */
  .symptoms-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .symptoms-bg-leaf {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.12;
  }

  .tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--beige-mid);
  }

  .tab-btn {
    background: none;
    border: none;
    padding: 12px 32px 12px 0;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    font-weight: 400;
  }
  .tab-btn.active { color: var(--brown-dark); }
  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 32px;
    height: 2px;
    background: var(--brown);
  }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

  .symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
  }

  .symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(196,181,160,0.35);
    font-size: 0.88rem;
    color: var(--text);
    transition: background 0.2s, border-color 0.2s;
  }
  .symptom-item:hover { background: white; border-color: var(--beige-mid); }
  .symptom-item::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive);
    margin-top: 6px;
    flex-shrink: 0;
  }

  /* ─── PROCESS ─── */
  .process-section {
    background: var(--brown-dark);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .process-section .section-label { color: var(--olive-light); }
  .process-section .section-heading { color: #F5F0E8; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-top: 3rem;
    background: rgba(255,255,255,0.08);
  }

  .process-step {
    background: var(--brown-dark);
    padding: 2.5rem 2rem;
    position: relative;
    border-left: 2px solid rgba(122,138,106,0.3);
  }
  .process-step:first-child { border-left: none; }

  .step-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(168,184,152,0.3);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .process-step h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .process-step p {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.7;
  }

  .process-note {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(168,184,152,0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
  }
  .process-note-icon { font-size: 1.5rem; flex-shrink: 0; }
  .process-note p { font-size: 0.9rem; color: rgba(245,240,232,0.75); line-height: 1.6; }
  .process-note strong { color: var(--cream); font-weight: 400; }

  /* ─── PRICES ─── */
  .prices-section {
    background: var(--warm-white);
  }

  .prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    margin-top: 3rem;
    background: var(--beige-mid);
  }

  .price-card {
    background: var(--warm-white);
    padding: 3rem 2.5rem;
    position: relative;
  }

  .price-card-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .price-card-label::after { content: ''; display: block; flex: 1; height: 1px; background: var(--olive-pale); }

  .price-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .price-row:last-child { border-bottom: none; }

  .price-name {
    font-size: 0.88rem;
    color: var(--text);
  }
  .price-name small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .price-amount {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
  }
  .price-amount span {
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 300;
  }

  .price-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--cream);
    border-left: 3px solid var(--olive);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ─── WHEN SECTION ─── */
  .when-section {
    background: var(--olive-pale);
    text-align: center;
    padding: 90px 8%;
    position: relative;
    overflow: hidden;
  }

  .when-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .when-tag {
    padding: 10px 22px;
    background: white;
    border: 1px solid rgba(122,138,106,0.3);
    font-size: 0.85rem;
    color: var(--brown-dark);
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s;
    cursor: default;
  }
  .when-tag:hover { background: var(--cream); border-color: var(--olive); }

  /* ─── ABOUT ─── */
  .about-section {
    background: var(--cream);
    display: block;
    max-width: 860px;
    margin: 0 auto;
  }

  .about-visual {
    position: relative;
  }

  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--olive-pale), 12px 12px 0 var(--beige-mid);
  }

  .about-img-placeholder::after {
    content: ''';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 0.75rem;
    color: rgba(62,45,32,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brown-dark);
    color: var(--cream);
    padding: 1.5rem;
    text-align: center;
    min-width: 140px;
  }
  .about-badge .badge-title {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }
  .about-badge .badge-sub {
    font-size: 0.72rem;
    color: var(--olive-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .about-text .section-heading { margin-bottom: 1rem; }

  .about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
  }

  .about-text strong { color: var(--brown-dark); font-weight: 400; }

  .atm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--beige-mid);
    background: white;
    margin-top: 0.5rem;
  }
  .atm-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  .atm-badge strong {
    font-size: 0.8rem;
    color: var(--brown-dark);
    font-weight: 500;
  }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--warm-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 90px 5%;
  }

  .faq-item {
    border-bottom: 1px solid var(--cream-dark);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.4rem 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--brown-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--brown); }

  .faq-toggle {
    width: 24px; height: 24px;
    border: 1px solid var(--beige-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--olive);
    transition: transform 0.3s, background 0.2s;
    line-height: 1;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--olive); color: white; border-color: var(--olive); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-answer { max-height: 500px; }

  .faq-answer-inner {
    padding: 0 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
  }
  .faq-answer-inner ul {
    list-style: none;
    margin-top: 0.5rem;
  }
  .faq-answer-inner ul li {
    padding: 3px 0 3px 16px;
    position: relative;
  }
  .faq-answer-inner ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--olive);
  }

  /* ─── CONTACT ─── */
  .contact-section {
    background: var(--cream-dark);
    text-align: center;
    padding: 90px 8%;
    position: relative;
    overflow: hidden;
  }

  .contact-section .section-heading { margin-bottom: 0.5rem; }

  .contact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
  }

  .contact-cards {
    display: flex;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background: var(--beige-mid);
  }

  .contact-card {
    background: var(--cream);
    padding: 2.5rem 3rem;
    text-align: center;
    min-width: 200px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
  }
  .contact-card:hover { background: var(--cream-dark); }

  .contact-card-icon {
    width: 44px; height: 44px;
    margin: 0 auto 1rem;
    color: var(--olive);
  }

  .contact-card-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }

  .contact-card-value {
    font-size: 0.92rem;
    color: var(--brown-dark);
  }

  .location-info {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .location-info strong { color: var(--brown-dark); font-weight: 400; display: block; margin-bottom: 0.3rem; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--brown-dark);
    color: rgba(245,240,232,0.6);
    padding: 3rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
  }

  footer p {
    font-size: 0.8rem;
  }

  footer a {
    color: rgba(245,240,232,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--cream); }

  .footer-links { display: flex; gap: 1.5rem; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    animation: fadeUp 0.8s ease both;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero-title { animation-delay: 0.25s; }
  .hero-subtitle { animation-delay: 0.35s; }
  .hero-desc { animation-delay: 0.45s; }
  .hero-buttons { animation-delay: 0.55s; }
  .hero-animals { animation: fadeUp 0.9s 0.6s ease both; }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196,181,160,0.3);
    z-index: 99;
    padding: 1.5rem 6%;
    flex-direction: column;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    display: flex;
  }
  .mobile-menu a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196,181,160,0.2);
    transition: color 0.2s;
    display: block;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--brown); }
  .mobile-menu .mob-cta {
    margin-top: 1rem;
    background: var(--olive);
    color: white !important;
    padding: 13px 0;
    text-align: center;
    border-radius: 2px;
    border-bottom: none;
    letter-spacing: 0.14em;
  }
  .mobile-menu .mob-cta:hover { background: var(--brown) !important; }


  /* ─── PHOTO BREAK ─── */
  .photo-break {
    background: var(--cream);
    padding: 80px 8% 80px;
  }
  .photo-break-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .photo-break-fig {
    margin: 0;
    position: relative;
  }
  .photo-break-fig img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow:
      0 4px 20px rgba(107,79,58,0.12),
      0 1px 4px rgba(107,79,58,0.08);
  }
  .photo-break-fig figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    font-style: italic;
    font-family: var(--font-serif);
  }
  .caption-line {
    display: block;
    height: 1px;
    width: 60px;
    background: var(--beige-mid);
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .photo-break { padding: 60px 4% 60px; }
    .photo-break-fig img {
      height: auto;
      border-radius: 8px;
    }
    .caption-line { width: 30px; }
  }


  /* ─── ABOUT ILLUSTRATION ─── */
  .about-illustration {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(107,79,58,0.10);
    max-width: 600px;
  }
  .about-illustration img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 768px) {
    .about-illustration { max-width: 100%; border-radius: 8px; }
  }


  /* ─── SYMPTOMS HEADER WITH PHOTO ─── */
  .symptoms-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .symptoms-header-text {}
  .symptoms-header-text .section-label { margin-bottom: 0.6rem; }
  .symptoms-header-text .section-heading { margin-bottom: 1rem; }

  .symptoms-header-photo {}
  .symptoms-photo-frame {
    position: relative;
    width: 320px;
    flex-shrink: 0;
  }
  .symptoms-photo-frame img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    display: block;
    box-shadow:
      0 0 0 6px var(--cream),
      0 0 0 10px var(--olive-pale),
      0 8px 32px rgba(107,79,58,0.15);
  }
  .symptoms-photo-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--text-muted);
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .symptoms-header {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .symptoms-header-photo { display: flex; justify-content: center; }
    .symptoms-photo-frame { width: 240px; }
    .symptoms-photo-frame img { width: 240px; height: 240px; }
  }


  /* ─── ABOUT QUOTE ─── */
  .about-quote {
    margin: 1.8rem 0 0;
    padding: 0;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: var(--brown);
    line-height: 1.7;
    text-align: center;
    max-width: 560px;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }

    .hero { padding: 90px 6% 60px; flex-direction: column; min-height: auto; }
    .hero-animals { position: static; margin-top: 3rem; justify-content: center; }
    .animal-icon-circle { width: 64px; height: 64px; }

    .why-section { grid-template-columns: 1fr; gap: 40px; }
    .about-section { padding: 60px 6%; }


    section { padding: 60px 6%; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-left: none; border-top: 2px solid rgba(122,138,106,0.3); }
    .process-step:first-child { border-top: none; }

    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 0.5rem; align-items: center; }
  }

  /* ─── CONTACT REDESIGN ─── */
  .contact-section {
    background: var(--cream-dark);
    padding: 90px 8%;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }
  .contact-info-col {}
  .contact-info-col .section-label { margin-bottom: 0.6rem; }
  .contact-info-col .section-heading { margin-bottom: 1rem; }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 1.1rem 1.4rem;
    background: white;
    border: 1px solid rgba(196,181,160,0.3);
    margin-bottom: 8px;
    color: var(--olive);
    transition: border-color 0.2s;
  }
  .contact-info-item:hover { border-color: var(--olive-light); }
  .contact-info-item svg { flex-shrink: 0; }
  .cii-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }
  .cii-value {
    font-size: 0.9rem;
    color: var(--brown-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
    display: block;
    font-weight: 400;
  }
  a.cii-value:hover { color: var(--olive); }

  /* Form */
  .contact-form-col {
    background: white;
    padding: 2.5rem;
    border: 1px solid rgba(196,181,160,0.35);
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--warm-white);
    border: 1px solid rgba(196,181,160,0.5);
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237A6E65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--olive);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--beige-mid); }

  .form-check { margin-top: 0.3rem; }
  .check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
  }
  .check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--olive);
    cursor: pointer;
    border-radius: 0;
  }

  .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brown);
    color: white;
    border: none;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    width: 100%;
    margin-top: 0.3rem;
  }
  .form-submit:hover { background: var(--brown-dark); transform: translateY(-1px); }
  .form-submit:active { transform: translateY(0); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--olive-pale);
    color: var(--olive);
    padding: 14px 18px;
    font-size: 0.88rem;
    border-left: 3px solid var(--olive);
    margin-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .contact-section { padding: 60px 6%; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }

    .contact-info-col .section-heading { text-align: center !important; }
    .contact-info-col .section-label { text-align: center; }
    .contact-info-col > p { text-align: center; }

    .contact-info-item {
      flex-direction: row;
      align-items: center;
      text-align: left;
      gap: 14px;
    }
    .cii-label { text-align: left; }
    .cii-value { text-align: left; }

    .contact-form-col { padding: 1.8rem 1.4rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ─── LEGAL PAGES (Impressum / Datenschutz) ─── */
  .legal-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 160px 8% 100px;
  }

  .legal-placeholder-banner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--cream-dark);
    border: 1.5px solid var(--olive);
    border-radius: 8px;
    padding: 22px 26px;
    margin-bottom: 3rem;
    font-size: 0.88rem;
    color: var(--brown-dark);
    line-height: 1.75;
  }

  .legal-placeholder-banner strong { color: var(--brown); }

  .legal-block { margin-bottom: 2.4rem; }

  .legal-block h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--brown-dark);
    margin-bottom: 0.7rem;
  }

  .legal-block p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
  }

  .legal-block ul { padding-left: 1.3rem; margin: 0.6rem 0; }
  .legal-block li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; }
  .legal-block a { color: var(--brown); }

  .placeholder {
    background: #F3DFC0;
    color: var(--brown-dark);
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 500;
    font-style: normal;
  }

  @media (max-width: 768px) {
    .legal-section { padding: 120px 6% 60px; }
  }
