/*
Theme Name: iMARK
Theme URI: https://premierwebsolution.com/
Author: Premier Web Solution
Author URI: https://premierwebsolution.com/
Description: Fully customizable single page WordPress theme converted from the supplied HTML design. Includes Customizer controls for logo, menus, hero, trust bar, pricing, stories, blog previews, testimonials, newsletter, CTA, footer, colors, and buttons.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: imark
Tags: custom-logo, custom-menu, one-page, custom-colors, editor-style, featured-images
*/


  :root {
    --cream: #F9F4ED;
    --cream-dark: #EFE6D8;
    --ink: #2A2118;
    --ink-light: #5C4A36;
    --rust: #B85C38;
    --rust-light: #D4795A;
    --rust-pale: #F5E8E2;
    --gold: #C9922A;
    --gold-pale: #FAF0DC;
    --sage: #5A7A5E;
    --sage-light: #E8F0E9;
    --paper: #FDF8F2;
    --shadow: rgba(42, 33, 24, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--rust); }
  .nav-links {
    display: flex; gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rust); }
  .nav-cta {
    background: var(--rust);
    color: white !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
  }
  .nav-cta:hover { background: var(--rust-light); color: white !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--paper);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 68px 0 0;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--rust-pale) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-text {
    padding: 5rem 3rem 5rem 8vw;
    position: relative; z-index: 1;
  }
  .hero-overline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-overline::before {
    content: '';
    display: block; width: 30px; height: 1px;
    background: var(--rust);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rust);
  }
  .hero-subtext {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--ink-light);
    max-width: 460px;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--rust);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none; border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #9e4e2f; transform: translateY(-1px); }
  .btn-secondary {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--rust);
    text-underline-offset: 4px;
    cursor: pointer;
    background: none; border: none;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-secondary:hover { color: var(--rust); }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5vw 4rem 2rem;
    position: relative;
    z-index: 1;
  }
  .letter-stack {
    position: relative;
    width: 320px; height: 380px;
  }
  .letter-card {
    position: absolute;
    background: var(--paper);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    width: 280px;
    box-shadow: 0 8px 32px var(--shadow);
  }
  .letter-card:nth-child(1) {
    top: 0; left: 0;
    transform: rotate(-4deg);
    background: var(--gold-pale);
  }
  .letter-card:nth-child(2) {
    top: 30px; left: 30px;
    transform: rotate(1.5deg);
  }
  .letter-card:nth-child(3) {
    top: 60px; left: 15px;
    transform: rotate(-1deg);
    background: var(--paper);
    z-index: 2;
  }
  .letter-card-header {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--rust);
    margin-bottom: 0.75rem;
  }
  .letter-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .letter-card-text {
    font-family: 'Lora', serif;
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--ink-light);
  }
  .letter-stamp {
    position: absolute;
    bottom: 1rem; right: 1rem;
    width: 44px; height: 54px;
    border: 2px solid var(--rust);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.6rem;
    color: var(--rust);
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
  }
  .postmark {
    position: absolute;
    top: 50%; right: -60px;
    transform: translateY(-50%) rotate(15deg);
    width: 80px; height: 80px;
    border: 3px solid var(--rust-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.55rem;
    color: var(--rust-light);
    text-align: center;
    opacity: 0.6;
    padding: 0.5rem;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--ink);
    color: white;
    padding: 1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  .trust-item svg { opacity: 0.7; }

  /* ─── HOW IT WORKS ─── */
  .section {
    padding: 7rem 8vw;
  }
  .section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-label::after {
    content: '';
    display: block; flex: 1; height: 1px; max-width: 60px;
    background: var(--rust);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-light);
    max-width: 560px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  .how-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--paper);
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--rust);
  }
  .how-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.25rem;
  }
  .how-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .how-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-light);
  }

  /* ─── PRICING ─── */
  .pricing-section {
    background: var(--ink);
    padding: 7rem 8vw;
    color: white;
  }
  .pricing-section .section-label { color: var(--rust-light); }
  .pricing-section .section-label::after { background: var(--rust-light); }
  .pricing-section .section-title { color: white; }
  .pricing-section .section-subtitle { color: rgba(255,255,255,0.65); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 780px;
  }
  .pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
  }
  .pricing-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
  .pricing-card.featured {
    background: var(--rust);
    border-color: var(--rust);
  }
  .featured-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
  }
  .pricing-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1.5rem;
  }
  .pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .pricing-price sup {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.6rem;
    display: inline-block;
  }
  .pricing-cadence {
    font-size: 0.82rem;
    opacity: 0.65;
    margin-bottom: 1.75rem;
  }
  .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  .pricing-features li {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .pricing-features li::before {
    content: '✦';
    font-size: 0.55rem;
    opacity: 0.6;
    flex-shrink: 0;
  }
  .btn-outline-white {
    display: block;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
  .btn-white {
    display: block;
    text-align: center;
    background: white;
    color: var(--rust);
    padding: 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
  }
  .btn-white:hover { background: var(--cream); }

  /* ─── STORY PREVIEW ─── */
  .stories-section {
    padding: 7rem 8vw;
    background: var(--cream-dark);
  }
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  .story-card {
    background: var(--paper);
    padding: 2.5rem;
    border: 1px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
  }
  .story-card::after {
    content: '"';
    position: absolute;
    top: -0.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: var(--cream-dark);
    line-height: 1;
  }
  .story-month {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1rem;
  }
  .story-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .story-excerpt {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--ink-light);
    font-style: italic;
  }
  .story-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
    font-size: 0.8rem;
    color: var(--ink-light);
    display: flex; align-items: center; justify-content: space-between;
  }

  /* ─── WHY DADS ─── */
  .why-section {
    padding: 7rem 8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .stat-block {
    border-left: 3px solid var(--rust);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .stat-label {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.5;
  }
  .why-image-area {
    position: relative;
  }
  .why-quote-card {
    background: var(--ink);
    color: white;
    padding: 3rem;
    position: relative;
  }
  .why-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .why-quote-attr {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .why-accent-box {
    background: var(--rust);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .why-accent-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
  }

  /* ─── BLOG ─── */
  .blog-section {
    padding: 7rem 8vw;
    background: var(--sage-light);
  }
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }
  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
  }
  .blog-card {
    background: white;
    border: 1px solid rgba(90,122,94,0.2);
  }
  .blog-image-placeholder {
    height: 180px;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .blog-category {
    position: absolute;
    bottom: 1rem; left: 1rem;
    background: var(--sage);
    color: white;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
  }
  .blog-content { padding: 1.75rem; }
  .blog-date {
    font-size: 0.75rem;
    color: var(--sage);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }
  .blog-excerpt {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 1.25rem;
  }
  .read-more {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .read-more::after { content: '→'; }
  .read-more:hover { color: var(--ink); }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    padding: 7rem 8vw;
    background: var(--rust-pale);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  .testimonial-card {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--rust);
  }
  .testimonial-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .testimonial-author {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rust);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .testimonial-location {
    font-size: 0.78rem;
    color: var(--ink-light);
  }
  .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: var(--rust);
    padding: 5rem 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .cta-band-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  .cta-band-text p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
  }
  .btn-white-lg {
    background: white;
    color: var(--rust);
    padding: 1.1rem 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .btn-white-lg:hover { background: var(--cream); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 5rem 8vw 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }
  .footer-brand span { color: var(--rust-light); }
  .footer-tagline {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
  }
  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.75rem; }
  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

  /* ─── DECORATIVE ─── */
  .divider-ornament {
    text-align: center;
    color: var(--rust);
    font-size: 1rem;
    margin: 0;
    padding: 1.5rem 0;
    letter-spacing: 0.5rem;
    opacity: 0.4;
  }
  .envelope-icon {
    display: inline-block;
    width: 48px; height: 36px;
    border: 2px solid currentColor;
    border-radius: 2px;
    position: relative;
  }
  .envelope-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    border-bottom: 2px solid currentColor;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }

  /* ─── NEWSLETTER ─── */
  .newsletter-section {
    padding: 5rem 8vw;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .newsletter-text p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.6;
  }
  .newsletter-form {
    display: flex; gap: 0; flex-grow: 1; max-width: 460px;
  }
  .newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--cream-dark);
    border-right: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--ink);
    outline: none;
  }
  .newsletter-form input:focus { border-color: var(--rust); }
  .newsletter-form input::placeholder { color: var(--ink-light); opacity: 0.5; }
  .newsletter-form button {
    background: var(--rust);
    color: white;
    border: none;
    padding: 0.9rem 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: #9e4e2f; }

  /* ─── BLOG ICON ─── */
  .blog-icon {
    font-size: 3rem;
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-text { padding: 3rem 5vw; }
    .why-section { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 5vw; }
    .nav-links { display: none; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes float {
    0%, 100% { transform: rotate(-1deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(-8px); }
  }
  .letter-card:nth-child(3) {
    animation: float 5s ease-in-out infinite;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-overline, .hero h1, .hero-subtext, .hero-actions {
    animation: fadeUp 0.7s ease both;
  }
  .hero h1 { animation-delay: 0.1s; }
  .hero-subtext { animation-delay: 0.2s; }
  .hero-actions { animation-delay: 0.3s; }

.nav-logo img.custom-logo { max-height: 52px; width: auto; display: block; }
.screen-reader-text { position:absolute; left:-9999px; }
