/*
Theme Name: Zaster Ventures Royal
Theme URI: https://zaster.in/
Author: Zaster Ventures
Author URI: https://zaster.in/
Description: A premium, royal-styled custom theme for Zaster Ventures — a commercial real estate advisory firm. Features a navy and gold palette, Playfair Display and Cormorant Garamond typography, scroll reveal animations, and a full portfolio/services layout.
Version: 1.0
Requires at least: 5.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: zaster-royal
*/

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

  :root {
    --navy:      #0B1220;
    --navy-2:    #111A2E;
    --oxblood:   #5C1A2B;
    --oxblood-lt:#7A2A3E;
    --emerald:   #0F2E22;
    --gold:      #D4AF6A;
    --gold-lt:   #E8CC96;
    --gold-dim:  rgba(212,175,106,0.14);
    --ivory:     #F6F0E4;
    --ivory-dim: #EDE4D3;
    --muted:     rgba(246,240,228,0.55);
    --subtle:    rgba(212,175,106,0.16);
    --hair:      rgba(246,240,228,0.10);
    --display:   'Playfair Display', Georgia, serif;
    --accent-serif: 'Cormorant Garamond', Georgia, serif;
    --sans:      'Inter', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  /* ── ORNAMENTAL DIVIDER (signature motif) ── */
  .crest-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 28px;
  }
  .crest-divider .line {
    height: 1px;
    width: 56px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .crest-divider .line.right { background: linear-gradient(90deg, var(--gold), transparent); }
  .crest-divider svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 80px;
    background: rgba(11,18,32,0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hair);
  }
  .nav-logo {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ivory);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 12px 26px;
    text-decoration: none;
    transition: all 0.25s;
  }
  .nav-cta:hover { background: var(--gold-lt); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 90px;
    overflow: hidden;
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.4) 40%, rgba(11,18,32,0.95) 100%),
      url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
  }
  .hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,106,0.16) 0%, transparent 70%);
    top: -80px; right: -60px;
    animation: orbDrift 14s ease-in-out infinite alternate;
    z-index: 1;
    filter: blur(50px);
  }
  @keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-50px, 50px) scale(1.08); }
    100% { transform: translate(20px, -30px) scale(0.96); }
  }
  .hero-overline {
    position: relative;
    z-index: 2;
    font-family: var(--accent-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-lt);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-overline::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero-headline {
    position: relative;
    z-index: 2;
    font-family: var(--display);
    font-size: clamp(54px, 8vw, 116px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.01em;
    color: var(--ivory);
    max-width: 920px;
    margin-bottom: 36px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  }
  .hero-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-lt);
  }
  .hero-sub {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(246,240,228,0.78);
    max-width: 420px;
    line-height: 1.85;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 17px 38px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--gold-lt); }
  .btn-ghost {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory);
    border: 1px solid rgba(246,240,228,0.3);
    padding: 17px 38px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* scroll cue */
  .scroll-cue {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .scroll-cue span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246,240,228,0.45);
  }
  .scroll-cue .stem {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: stemPulse 2s ease-in-out infinite;
  }
  @keyframes stemPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

  /* ── STATS ── */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--hair);
    border-left: 1px solid var(--hair);
    background: var(--navy-2);
  }
  .stat-cell {
    padding: 52px 40px;
    border-right: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    transition: background 0.3s;
  }
  .stat-cell:hover { background: var(--gold-dim); }
  .stat-num {
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat-num sup {
    font-size: 0.4em;
    vertical-align: super;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 600;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── SECTION UTILITY ── */
  section { padding: 130px 48px; position: relative; }
  .section-eyebrow {
    font-family: var(--accent-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--gold-lt);
    margin-bottom: 16px;
    text-align: center;
  }
  .section-title {
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ivory);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  .section-title em { font-style: italic; font-weight: 500; color: var(--gold-lt); }
  .section-head { text-align: center; margin-bottom: 72px; }
  .section-head .crest-divider { margin-top: 24px; }

  /* ── ABOUT ── */
  .about { background: var(--navy-2); }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
  }
  .about-eyebrow { text-align: left; }
  .about-title { text-align: left; margin: 0; }
  .about-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.95;
    margin-top: 28px;
  }
  .about-body p + p { margin-top: 18px; }
  .about-signature {
    margin-top: 36px;
    font-family: var(--accent-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--gold-lt);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }
  .about-visual {
    position: relative;
    height: 560px;
  }
  .about-img-main {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid var(--subtle);
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
  }
  .about-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,18,32,0.65) 100%);
  }
  .about-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--gold);
    color: var(--navy);
    padding: 30px 34px;
    width: 190px;
    z-index: 2;
  }
  .about-badge-num {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    display: block;
  }
  .about-badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
  }

  /* ── VALUES STRIP ── */
  .values { background: var(--navy); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 0;
  }
  .value-item { text-align: center; }
  .value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 22px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .value-icon svg { width: 24px; height: 24px; }
  .value-title {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
  }
  .value-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
  }

  /* ── PORTFOLIO / PROPERTIES ── */
  .portfolio { background: var(--navy-2); }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .portfolio-card {
    position: relative;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--subtle);
  }
  .portfolio-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: saturate(0.85) contrast(1.05);
  }
  .portfolio-card:hover img { transform: scale(1.08); }
  .portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(11,18,32,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
  }
  .portfolio-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .portfolio-name {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 4px;
  }
  .portfolio-meta {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── SERVICES ── */
  .services { background: var(--navy); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hair);
    border: 1px solid var(--hair);
  }
  .service-card {
    background: var(--navy);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .service-card:hover { background: var(--navy-2); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon { width: 46px; height: 46px; margin-bottom: 26px; color: var(--gold); }
  .service-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: rgba(212,175,106,0.4);
    margin-bottom: 16px;
    display: block;
  }
  .service-name {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
  }

  /* ── PROCESS ── */
  .process { background: var(--navy-2); }
  .process-steps { margin-top: 0; }
  .process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 44px 0;
    border-bottom: 1px solid var(--hair);
  }
  .process-step:first-child { border-top: 1px solid var(--hair); }
  .step-index {
    font-family: var(--display);
    font-style: italic;
    font-size: 44px;
    font-weight: 600;
    color: rgba(212,175,106,0.22);
    line-height: 1;
    padding-top: 4px;
  }
  .step-title {
    font-family: var(--display);
    font-size: 27px;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.25;
    padding-top: 6px;
  }
  .step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
    padding-top: 8px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--navy); }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .testimonial-card {
    background: var(--navy-2);
    border: 1px solid var(--subtle);
    padding: 40px 36px;
    position: relative;
  }
  .testimonial-quote-mark {
    font-family: var(--display);
    font-size: 64px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 4px;
  }
  .testimonial-text {
    font-family: var(--accent-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ivory-dim);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--hair);
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--oxblood));
    flex-shrink: 0;
  }
  .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ivory);
  }
  .author-role {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── CREDENTIALS / AWARDS STRIP ── */
  .credentials {
    background: var(--emerald);
    padding: 64px 48px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--subtle);
    border-bottom: 1px solid var(--subtle);
  }
  .credential-item {
    text-align: center;
    color: var(--ivory);
    opacity: 0.85;
  }
  .credential-item .cred-label {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .credential-item .cred-sub {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246,240,228,0.5);
    margin-top: 4px;
  }

  /* ── FAQ ── */
  .faq { background: var(--navy-2); }
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--hair);
    padding: 28px 0;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
  }
  .faq-q-text {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ivory);
  }
  .faq-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
  }
  .faq-item.open .faq-a {
    max-height: 200px;
    margin-top: 16px;
  }

  /* ── CTA BAND ── */
  .cta-band {
    position: relative;
    padding: 120px 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(135deg, rgba(11,18,32,0.85), rgba(92,26,43,0.78)),
      url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cta-band-title {
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 700;
    color: var(--ivory);
    max-width: 700px;
    line-height: 1.15;
    margin: 0 auto 36px;
  }
  .cta-band-title em { font-style: italic; color: var(--gold-lt); font-weight: 500; }
  .btn-gold {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 19px 44px;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-gold:hover { background: var(--gold-lt); }

  /* ── PRESENCE ── */
  .presence { background: var(--navy); }
  .cities-grid {
    display: flex;
    gap: 0;
    border: 1px solid var(--hair);
    flex-wrap: wrap;
  }
  .city-item {
    padding: 36px 40px;
    border-right: 1px solid var(--hair);
    flex: 1;
    min-width: 150px;
    transition: background 0.25s;
  }
  .city-item:last-child { border-right: none; }
  .city-item:hover { background: var(--gold-dim); }
  .city-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-bottom: 14px; }
  .city-name { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ivory); }
  .city-sub { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; text-transform: uppercase; }

  /* ── FOOTER ── */
  footer { background: var(--navy-2); border-top: 1px solid var(--hair); padding: 80px 48px 40px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--hair); }
  .footer-brand-name { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--ivory); margin-bottom: 16px; }
  .footer-brand-name span { color: var(--gold); }
  .footer-brand-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.85; max-width: 280px; }
  .footer-col-title { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { font-size: 13px; font-weight: 300; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-copy { font-size: 12px; font-weight: 300; color: rgba(246,240,228,0.3); }
  .footer-socials { display: flex; gap: 24px; }
  .footer-socials a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246,240,228,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-socials a:hover { color: var(--gold); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.35s; }

  @media (prefers-reduced-motion: reduce) {
    .hero-orb, .scroll-cue .stem { animation: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 64px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    section { padding: 90px 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 56px; }
    .about-visual { height: 320px; }
    .about-eyebrow, .about-title { text-align: center; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-step { grid-template-columns: 50px 1fr; }
    .process-step .step-desc { grid-column: 2; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .credentials { gap: 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cities-grid { flex-direction: column; }
    .city-item { border-right: none; border-bottom: 1px solid var(--hair); }
  }
  @media (max-width: 580px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-headline { font-size: clamp(42px, 11vw, 70px); }
  }