/* TQO Contact Page styles copied from supplied HTML. */

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

    :root {
      --terra:  #C48479;
      --terra2: #B87068;
      --cream:  #FAF7F2;
      --cream2: #F2EAE0;
      --dark:   #1E1410;
      --dark2:  #3A2B27;
      --grey:   #6B5550;
      --white:  #ffffff;
      --soft:   rgba(196, 132, 121, 0.14);
      --line:   rgba(196, 132, 121, 0.22);
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    a { color: inherit; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 56px;
      background-color: rgba(250, 247, 242, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .nav-logo {
      font-family: 'Lora', serif;
      font-size: 28px;
      font-style: italic;
      color: var(--dark);
      text-decoration: none;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
    }

    .nav-logo img {
   width: auto;
    display: block;
    object-fit: contain;
    margin: -20px 0;
    }

    .nav-links {
      display: flex;
      gap: 38px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark2);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--terra); }

    .nav-cta {
      background-color: var(--terra) !important;
      color: var(--white) !important;
      padding: 11px 26px !important;
      border-radius: 3px;
    }

    .nav-cta:hover { background-color: var(--terra2) !important; }

    /* ── PAGE HERO ── */
    .contact-hero {
      padding-top: 88px;
      min-height: 82vh;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
      background:
        radial-gradient(circle at 14% 18%, rgba(196, 132, 121, 0.12), transparent 34%),
        linear-gradient(180deg, var(--cream) 0%, #F7F1EA 100%);
    }

    .hero-copy {
      padding: 86px 60px 86px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 24px;
    }

    .hero-title {
      font-family: 'Lora', serif;
      font-size: clamp(38px, 4vw, 62px);
      font-weight: 400;
      line-height: 1.12;
      color: var(--dark);
      margin-bottom: 26px;
      max-width: 680px;
    }

    .hero-title em { color: var(--terra); font-style: italic; }

    .hero-body {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 18px;
      line-height: 1.76;
      color: var(--grey);
      max-width: 520px;
      margin-bottom: 17px;
    }

    .hero-body-plain {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      line-height: 1.85;
      color: var(--dark2);
      max-width: 520px;
      margin-bottom: 38px;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      border-radius: 3px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 17px 36px;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
    }

    .btn-primary { background-color: var(--terra); color: var(--white); }
    .btn-primary:hover { background-color: var(--terra2); transform: translateY(-1px); }

    .btn-secondary {
      background-color: transparent;
      color: var(--dark2);
      border: 1px solid rgba(58, 43, 39, 0.2);
    }
    .btn-secondary:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-1px); }

    .hero-visual {
      position: relative;
      min-height: 570px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 52px;
      overflow: hidden;
      background:
        radial-gradient(110% 95% at 52% 18%, #F2EAE0 0%, #E9DDCE 62%, #DFD0BE 100%);
      border-left: 1px solid var(--line);
    }

    .hero-visual::before {
      content: '';
      position: absolute;
      inset: -35%;
      background: radial-gradient(closest-side, rgba(196,132,121,0.22), transparent 72%);
      animation: softGlow 14s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes softGlow {
      from { transform: translate(-12%, -8%) scale(1); }
      to   { transform: translate(14%, 10%) scale(1.12); }
    }

    .contact-note-card {
      position: relative;
      z-index: 2;
      width: min(410px, 100%);
      background-color: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-top: 3px solid var(--terra);
      box-shadow: 0 22px 58px rgba(30, 20, 16, 0.16);
      padding: 36px 34px 34px;
      backdrop-filter: blur(10px);
      transform: rotate(-1.5deg);
      animation: cardFloat 7s ease-in-out infinite;
    }

    @keyframes cardFloat {
      0%, 100% { transform: rotate(-1.5deg) translateY(0); }
      50% { transform: rotate(-1.5deg) translateY(-10px); }
    }

    .note-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .note-kicker {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--terra);
      font-weight: 400;
    }

    .note-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background-color: var(--terra);
      box-shadow: 0 0 0 8px rgba(196, 132, 121, 0.13);
    }

    .note-title {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 34px;
      line-height: 1.15;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .note-text {
      font-size: 14px;
      line-height: 1.82;
      color: var(--grey);
      margin-bottom: 26px;
    }

    .response-list { display: grid; gap: 11px; }
    .response-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 13.5px;
      color: var(--dark2);
      line-height: 1.55;
    }
    .response-item span {
      color: var(--terra);
      font-family: 'Lora', serif;
      font-size: 18px;
      line-height: 1;
      margin-top: 2px;
    }

    .stamp {
      position: absolute;
      right: -28px;
      bottom: 36px;
      width: 106px;
      height: 106px;
      border-radius: 50%;
      border: 1px solid rgba(196, 132, 121, 0.48);
      color: var(--terra2);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      line-height: 1.45;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background-color: rgba(250,247,242,0.9);
      transform: rotate(11deg);
    }

    /* ── STRIP ── */
    .strip {
      background-color: var(--terra);
      padding: 18px 0;
      overflow: hidden;
    }

    .strip-track {
      display: flex;
      gap: 52px;
      animation: slide 24s linear infinite;
      white-space: nowrap;
    }

    .strip-track span {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 15.5px;
      color: rgba(255,255,255,0.9);
      flex-shrink: 0;
    }

    .strip-dot { font-style: normal !important; color: rgba(255,255,255,0.35) !important; }

    @keyframes slide {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── MAIN CONTACT ── */
    .contact-section {
      background-color: var(--cream2);
      padding: 100px 80px;
    }

    .contact-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 4px;
      align-items: stretch;
    }

    .form-panel,
    .info-panel {
      background-color: var(--white);
      border-top: 3px solid var(--terra);
      padding: 46px 42px;
    }

    .section-label {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 10.5px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 15px;
    }

    .section-title {
      font-family: 'Lora', serif;
      font-size: clamp(30px, 3vw, 44px);
      line-height: 1.18;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .section-title em { color: var(--terra); font-style: italic; }

    .section-copy {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 16.5px;
      line-height: 1.74;
      color: var(--grey);
      margin-bottom: 30px;
      max-width: 520px;
    }

    .contact-form { display: grid; gap: 16px; }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field { display: grid; gap: 8px; }

    label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dark2);
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(107, 85, 80, 0.18);
      background-color: #FFFCF8;
      border-radius: 3px;
      padding: 15px 16px;
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      font-weight: 300;
      outline: none;
      transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    textarea { min-height: 154px; resize: vertical; line-height: 1.65; }

    input::placeholder,
    textarea::placeholder { color: rgba(107, 85, 80, 0.48); }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(196, 132, 121, 0.72);
      background-color: var(--white);
      box-shadow: 0 0 0 4px rgba(196, 132, 121, 0.1);
    }

    .form-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .privacy-note {
      max-width: 330px;
      font-size: 12px;
      line-height: 1.65;
      color: rgba(107, 85, 80, 0.68);
    }

    .info-panel {
      background:
        radial-gradient(110% 80% at 12% 4%, rgba(196,132,121,0.12), transparent 48%),
        var(--dark);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .info-panel::after {
      content: '';
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 230px;
      height: 230px;
      border: 1px solid rgba(196, 132, 121, 0.32);
      border-radius: 50%;
    }

    .info-panel .section-title { color: var(--cream); }
    .info-panel .section-copy { color: rgba(250,247,242,0.55); margin-bottom: 32px; }

    .contact-methods { display: grid; gap: 3px; position: relative; z-index: 2; }

    .method-card {
      background-color: rgba(250,247,242,0.06);
      border: 1px solid rgba(250,247,242,0.08);
      padding: 24px 22px;
      display: grid;
      gap: 8px;
      transition: background-color 0.2s ease, transform 0.25s ease;
    }

    .method-card:hover { background-color: rgba(250,247,242,0.09); transform: translateY(-2px); }

    .method-label {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      font-weight: 400;
    }

    .method-main {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 22px;
      color: var(--cream);
      text-decoration: none;
      line-height: 1.3;
    }

    .method-desc {
      font-size: 13px;
      line-height: 1.65;
      color: rgba(250,247,242,0.47);
    }

    .mini-note {
      position: relative;
      z-index: 2;
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(250,247,242,0.08);
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 15.5px;
      line-height: 1.75;
      color: rgba(250,247,242,0.52);
    }

    /* ── SUPPORT TOPICS ── */
    .topics {
      background-color: var(--cream);
      padding: 92px 80px;
    }

    .topics-inner { max-width: 1120px; margin: 0 auto; }

    .topics-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 48px;
    }

    .topics-head .section-copy { margin-bottom: 0; }

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

    .topic-card {
      background-color: var(--white);
      border-top: 3px solid var(--terra);
      padding: 34px 28px 32px;
      min-height: 205px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .topic-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 40px rgba(30, 20, 16, 0.09);
    }

    .topic-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      background-color: rgba(196, 132, 121, 0.12);
      color: var(--terra);
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 22px;
    }

    .topic-card h3 {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.22;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .topic-card p {
      font-size: 13.5px;
      line-height: 1.78;
      color: var(--grey);
    }

    /* ── FAQ ── */
    .faq {
      background-color: var(--cream2);
      padding: 92px 80px;
    }

    .faq-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-head { text-align: center; margin-bottom: 42px; }
    .faq-head .section-copy { margin-left: auto; margin-right: auto; margin-bottom: 0; }

    .accordion { display: grid; gap: 3px; }

    .faq-item {
      background-color: var(--white);
      border-top: 1px solid rgba(196,132,121,0.26);
    }

    .faq-question {
      width: 100%;
      border: none;
      background: transparent;
      padding: 24px 28px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      color: var(--dark);
      font-family: 'Lora', serif;
      font-size: 21px;
      font-weight: 400;
    }

    .faq-question span {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(196,132,121,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--terra);
      flex: 0 0 auto;
      transition: transform 0.2s ease;
    }

    .faq-item.open .faq-question span { transform: rotate(45deg); }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }

    .faq-item.open .faq-answer { grid-template-rows: 1fr; }

    .faq-answer-inner {
      overflow: hidden;
    }

    .faq-answer p {
      padding: 0 28px 26px;
      font-size: 14px;
      line-height: 1.82;
      color: var(--grey);
      max-width: 760px;
    }

    /* ── FINAL CTA ── */
    .quiet-cta {
      background-color: var(--dark);
      padding: 86px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .quiet-cta::before {
      content: '';
      position: absolute;
      inset: -40%;
      background: radial-gradient(closest-side, rgba(196,132,121,0.15), transparent 70%);
      animation: softGlow 16s ease-in-out infinite alternate;
    }

    .quiet-cta-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
    .quiet-cta .section-title { color: var(--cream); }
    .quiet-cta .section-copy { color: rgba(250,247,242,0.58); margin-left: auto; margin-right: auto; }

    /* ── FOOTER ── */
    footer {
      background-color: var(--dark);
      padding: 52px 80px 36px;
      border-top: 1px solid rgba(250,247,242,0.08);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(250,247,242,0.08);
      margin-bottom: 28px;
    }

    .footer-brand-name {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .footer-brand-tag {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 13px;
      color: rgba(250,247,242,0.35);
    }

    .footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 10.5px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(250,247,242,0.42);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--cream); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p,
    .footer-bottom a {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(250,247,242,0.22);
      text-decoration: none;
    }

    .footer-bottom a:hover { color: rgba(250,247,242,0.6); }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1020px) {
      .contact-hero { grid-template-columns: 1fr; }
      .hero-visual { border-left: none; min-height: 460px; }
      .contact-inner { grid-template-columns: 1fr; }
      .topic-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      nav { padding: 18px 24px; }
      .nav-logo { font-size: 22px; }
      .nav-logo img { height: 38px; max-width: 190px; }
      .nav-links { display: none; }
      .hero-copy { padding: 62px 28px 52px; }
      .hero-visual { padding: 42px 28px; min-height: 390px; }
      .stamp { right: 16px; bottom: -26px; width: 92px; height: 92px; }
      .contact-section,
      .topics,
      .faq,
      .quiet-cta { padding: 72px 28px; }
      .form-panel,
      .info-panel { padding: 38px 26px; }
      .topics-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
      footer { padding: 48px 24px 28px; }
      .footer-row { flex-direction: column; }
      .footer-cols { gap: 36px; }
    }

    @media (max-width: 620px) {
      .field-row { grid-template-columns: 1fr; }
      .topic-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { width: 100%; padding-left: 20px; padding-right: 20px; }
      .contact-note-card { transform: none; animation: none; padding: 30px 24px; }
      .nav-logo img { height: 34px; max-width: 170px; }
      .note-title { font-size: 29px; }
      .faq-question { font-size: 19px; padding: 22px 20px; }
      .faq-answer p { padding: 0 20px 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
  