 :root {
      --amber: #fb9c09;
      --orange: #ea5e07;
      --graphite: #696c6e;
      --gray: #7b7979;
      --dark: #34383b;
      --cream: #f7f9f8;
      --cold: #e9f3f8;
      --white: #ffffff;
      --line: rgba(0, 0, 0, 0.08);
      --shadow: 0 24px 70px rgba(52, 56, 59, 0.13);
      --soft-shadow: 0 12px 30px rgba(52, 56, 59, 0.08);
      --orange-shadow: 0 18px 36px rgba(234, 94, 7, 0.22);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--dark);
      background:
        radial-gradient(circle at 88% 8%, rgba(251,156,9,0.18), transparent 30rem),
        radial-gradient(circle at 6% 44%, rgba(190,221,236,0.42), transparent 28rem),
        var(--cream);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0.12)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.55), transparent 30rem);
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .header-inner {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: clamp(150px, 15vw, 220px);
      height: auto;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-subtitle {
      margin-top: 8px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.20em;
      font-size: 11px;
      font-weight: 500;
      white-space: nowrap;
    }

    .brand-logo-layout {
      align-items: center;
      gap: 18px;
    }

    .brand-logo-layout .brand-subtitle {
      margin-top: 0;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.20em;
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
    }

    .header-brand {
      flex: 0 0 auto;
    }

    .header-brand-mark {
      width: clamp(165px, 17vw, 230px);
    }

    .brand-rubro {
      position: relative;
      z-index: 1;
      padding: 14px 0 12px;
      background: rgba(255, 255, 255, 0.62);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      color: var(--gray);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      font-size: clamp(12px, 1.25vw, 15px);
      line-height: 1.4;
      font-weight: 500;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--graphite);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.15;
      white-space: nowrap;
      transition: 0.2s ease;
    }

    .main-nav a:hover {
      background: var(--white);
      color: var(--orange);
      box-shadow: var(--soft-shadow);
    }

    .header-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 16px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 6px 18px rgba(52,56,59,0.05);
      font-size: 14px;
      font-weight: 950;
      white-space: nowrap;
      transition: 0.2s ease;
    }

    .header-phone:hover { color: var(--orange); transform: translateY(-1px); }

    .mobile-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 6px 18px rgba(52,56,59,0.05);
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,0.97);
    }

    .mobile-menu.open { display: block; }

    .mobile-menu .container {
      padding: 12px 0 18px;
      display: grid;
      gap: 8px;
    }

    .mobile-menu a {
      padding: 14px 16px;
      border-radius: 18px;
      background: var(--cream);
      color: var(--graphite);
      font-weight: 900;
    }

    .hero {
      padding: 64px 0 88px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
      align-items: center;
      gap: 44px;
    }

    .hero-content {
      max-width: 680px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 10px 15px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      color: var(--orange);
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px rgba(52,56,59,0.05);
      font-size: 14px;
      font-weight: 950;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--amber);
      flex: 0 0 auto;
    }

    h1, h2, h3, h4, p { overflow-wrap: anywhere; }

    .hero h1 {
      max-width: 650px;
      margin: 0;
      color: var(--dark);
      font-size: clamp(42px, 6.2vw, 72px);
      line-height: 0.94;
      letter-spacing: -0.065em;
      font-weight: 950;
    }

    .hero-copy {
      max-width: 560px;
      margin: 26px 0 0;
      color: var(--graphite);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.65;
      font-weight: 520;
    }

    .actions {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 22px;
      border-radius: 19px;
      border: 1px solid transparent;
      font-size: 16px;
      font-weight: 950;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .button-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--amber), var(--orange));
      box-shadow: var(--orange-shadow);
    }

    .button-primary:hover { transform: translateY(-2px); }

    .button-secondary {
      color: var(--dark);
      background: var(--white);
      border-color: var(--line);
      box-shadow: 0 8px 20px rgba(52,56,59,0.06);
    }

    .button-secondary:hover { transform: translateY(-2px); color: var(--orange); }

    .hero-points {
      max-width: 560px;
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .hero-point {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 13px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--line);
      box-shadow: 0 7px 18px rgba(52,56,59,0.04);
      color: var(--graphite);
      font-size: 14px;
      font-weight: 850;
    }

    .check { color: var(--amber); font-weight: 950; }

    .photo-shell {
      position: relative;
      width: min(100%, 540px);
      min-height: 0;
      justify-self: end;
      border-radius: 46px;
      padding: 16px;
      background: rgba(255,255,255,0.70);
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: var(--shadow);
    }

    .photo-frame {
      position: relative;
      min-height: 0;
      aspect-ratio: 1 / 1;
      height: auto;
      overflow: hidden;
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(255,244,223,0.94), rgba(255,255,255,0.96) 48%, rgba(233,243,248,0.92)),
        repeating-linear-gradient(135deg, rgba(251,156,9,0.11) 0 1px, transparent 1px 16px);
      border: 1px solid rgba(255,255,255,0.92);
    }

    .photo-frame img {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .photo-placeholder {
      position: absolute;
      inset: 18px;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 28px;
      border: 2px dashed rgba(105,108,110,0.22);
      border-radius: 32px;
      text-align: center;
      color: var(--graphite);
      background: rgba(255,255,255,0.38);
    }

    .photo-placeholder strong {
      color: var(--dark);
      font-size: 23px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      font-weight: 950;
    }

    .photo-placeholder span {
      color: var(--orange);
      font-size: 14px;
      font-weight: 950;
      word-break: break-word;
    }

    .floating-label {
      position: absolute;
      top: 26px;
      left: 26px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 15px;
      border-radius: 999px;
      background: rgba(255,255,255,0.86);
      color: var(--orange);
      box-shadow: var(--soft-shadow);
      font-size: 14px;
      font-weight: 950;
      backdrop-filter: blur(10px);
    }

    .photo-card {
      margin-top: 18px;
      padding: 22px;
      border-radius: 30px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.85);
      box-shadow: var(--soft-shadow);
      backdrop-filter: blur(12px);
    }

    .photo-card h2, .photo-card h3 {
      margin: 0;
      color: var(--dark);
      font-size: clamp(23px, 2.5vw, 30px);
      line-height: 1.1;
      letter-spacing: -0.04em;
      font-weight: 950;
    }

    .photo-card p {
      margin: 10px 0 0;
      color: var(--graphite);
      line-height: 1.65;
      font-weight: 560;
    }

    .section {
      position: relative;
      padding: 88px 0;
    }

    .section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(980px, calc(100% - 48px));
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(251,156,9,0.55), rgba(105,108,110,0.18), transparent);
    }

    .section::after {
      content: "";
      position: absolute;
      top: -9px;
      left: 50%;
      width: 58px;
      height: 18px;
      transform: translateX(-50%);
      border-radius: 999px;
      background:
        radial-gradient(circle at 50% 50%, rgba(251,156,9,0.72) 0 4px, transparent 5px),
        linear-gradient(90deg, transparent, rgba(251,156,9,0.18), transparent);
      box-shadow: 0 8px 24px rgba(251,156,9,0.16);
    }

    .section-heading {
      max-width: 820px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .section-heading.left {
      margin: 0 0 36px;
      text-align: left;
    }

    .section-heading h2 {
      margin: 0;
      color: var(--dark);
      font-size: clamp(34px, 4.6vw, 50px);
      line-height: 1.03;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .section-heading p {
      margin: 18px 0 0;
      color: var(--graphite);
      font-size: 19px;
      line-height: 1.72;
      font-weight: 520;
    }

    .season-grid,
    .cross-benefits,
    .opportunity-grid,
    .contact-grid,
    .product-showcase {
      display: grid;
      gap: 24px;
    }

    .season-grid,
    .cross-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .opportunity-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 48px; }
    .contact-grid { grid-template-columns: 0.95fr 1.05fr; align-items: start; gap: 50px; }
    .product-showcase { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 30px; margin-bottom: 34px; }

    .season-panel {
      border-radius: 42px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 10px 30px rgba(52,56,59,0.05);
    }

    .season-panel.warm { background: linear-gradient(135deg, #fff2d8, rgba(255,255,255,0.98)); }
    .season-panel.cold { background: linear-gradient(135deg, var(--cold), rgba(255,255,255,0.98)); }

    .season-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 4px 4px 20px;
    }

    .season-icon {
      width: 52px;
      height: 52px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--white);
      box-shadow: var(--soft-shadow);
      font-size: 26px;
    }

    .season-icon.warm { background: var(--amber); }
    .season-icon.cold { background: #357693; }

    .season-title h3 {
      margin: 0;
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.045em;
      font-weight: 950;
    }

    .season-title p {
      margin: 6px 0 0;
      color: var(--graphite);
      font-weight: 760;
      line-height: 1.35;
    }

    .cards-grid,
    .product-grid,
    .use-grid {
      display: grid;
      gap: 14px;
    }

    .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }

    .card,
    .benefit-card,
    .wide-card,
    .product-card,
    .quote-card,
    .contact-item,
    .form-card,
    .product-copy {
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 10px 24px rgba(52,56,59,0.045);
    }

    .benefit-card {
      min-height: 220px;
      padding: 23px;
      border-radius: 30px;
      transition: 0.22s ease;
    }

    .benefit-card:hover,
    .product-card:hover,
    .contact-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 38px rgba(52,56,59,0.10);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 17px;
      background: #fff3df;
      color: var(--orange);
      font-size: 24px;
    }

    .cold .card-icon { background: #edf7fb; color: #357693; }

    .benefit-card h4,
    .wide-card h3,
    .product-card h3 {
      margin: 0;
      color: var(--dark);
      line-height: 1.1;
      letter-spacing: -0.04em;
      font-weight: 950;
    }

    .benefit-card h4 { font-size: 20px; }
    .wide-card h3 { font-size: 26px; }
    .product-card h3 { font-size: 25px; }

    .benefit-card p,
    .wide-card p,
    .product-card p,
    .quote-card p,
    .product-copy p {
      margin: 12px 0 0;
      color: var(--graphite);
      line-height: 1.65;
      font-weight: 520;
    }

    .wide-card {
      padding: 28px;
      border-radius: 32px;
    }

    .dark-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(28px, 4vw, 44px);
      border-radius: 48px;
      color: var(--white);
      background:
        radial-gradient(circle at 82% 12%, rgba(251,156,9,0.45), transparent 16rem),
        linear-gradient(135deg, #494e51, #2f3336);
      box-shadow: 0 28px 70px rgba(52,56,59,0.22);
    }

    .dark-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      border: 40px solid rgba(255,255,255,0.06);
    }

    .dark-panel .eyebrow {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.14);
      box-shadow: none;
      color: rgba(255,255,255,0.92);
    }

    .dark-panel h2 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: clamp(36px, 5vw, 54px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 950;
    }

    .dark-panel p {
      position: relative;
      z-index: 1;
      margin: 22px 0 0;
      color: rgba(255,255,255,0.76);
      font-size: 18px;
      line-height: 1.7;
    }

    .steps {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 13px;
      margin-top: 30px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px;
      border-radius: 20px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.10);
      font-weight: 950;
    }

    .step-number {
      width: 40px;
      height: 40px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--amber);
      color: var(--white);
      box-shadow: var(--orange-shadow);
    }

    .use-pill {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 15px;
      border-radius: 20px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px rgba(52,56,59,0.045);
      font-weight: 950;
    }

    .quote-card {
      margin-top: 28px;
      padding: 28px;
      border-radius: 32px;
      border-color: rgba(251,156,9,0.18);
    }

    .quote-card strong {
      display: block;
      color: var(--dark);
      font-size: clamp(24px, 3vw, 32px);
      line-height: 1.15;
      letter-spacing: -0.05em;
      font-weight: 950;
    }

    .product-card {
      padding: 30px;
      border-radius: 34px;
      transition: 0.22s ease;
    }

    .product-photo {
      min-height: 360px;
      aspect-ratio: auto;
    }

    .product-copy {
      padding: clamp(24px, 4vw, 34px);
      border-radius: 34px;
      background: rgba(255,255,255,0.84);
    }

    .product-copy h3 {
      margin: 0;
      color: var(--dark);
      font-size: clamp(28px, 3.5vw, 40px);
      line-height: 1.05;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 30px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px;
      border-radius: 24px;
      transition: 0.2s ease;
    }

    .contact-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--dark);
      font-weight: 950;
    }

    .contact-item span,
    .contact-item p {
      margin: 0;
      color: var(--graphite);
      line-height: 1.5;
      font-weight: 520;
    }

    .promo-box {
      padding: 20px;
      border-radius: 24px;
      color: var(--white);
      background: linear-gradient(135deg, var(--amber), var(--orange));
      box-shadow: var(--orange-shadow);
    }

    .promo-box strong {
      display: block;
      margin-bottom: 5px;
      font-weight: 950;
    }

    .promo-box p {
      margin: 0;
      color: rgba(255,255,255,0.86);
      line-height: 1.55;
    }

    .form-card {
      padding: clamp(24px, 4vw, 34px);
      border-radius: 38px;
      box-shadow: var(--shadow);
    }

    .form-card h3 {
      margin: 0;
      color: var(--dark);
      font-size: 30px;
      line-height: 1.1;
      letter-spacing: -0.05em;
      font-weight: 950;
    }

    .form-card > p {
      margin: 10px 0 24px;
      color: var(--graphite);
      line-height: 1.6;
    }

    .field {
      display: grid;
      gap: 9px;
      margin-top: 15px;
    }

    .field label {
      color: var(--dark);
      font-size: 14px;
      font-weight: 950;
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 20px;
      background: var(--cream);
      color: var(--dark);
      font: inherit;
      font-weight: 600;
      outline: none;
      transition: 0.18s ease;
    }

    .field textarea {
      min-height: 142px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 5px rgba(251,156,9,0.14);
      background: var(--white);
    }

    .form-status {
      display: none;
      margin-top: 16px;
      padding: 13px 15px;
      border-radius: 18px;
      background: #edfff2;
      color: #1c7a3a;
      font-weight: 850;
      line-height: 1.45;
    }

    .form-status.show { display: block; }

    #contacto {
      background:
        radial-gradient(circle at 82% 12%, rgba(251,156,9,0.45), transparent 16rem),
        linear-gradient(135deg, #494e51, #2f3336);
      color: var(--white);
    }

    #contacto::before,
    #contacto::after {
      display: none;
    }

    #contacto .section-heading h2 {
      color: var(--white);
    }

    #contacto .section-heading p {
      color: rgba(255,255,255,0.82);
    }

    #contacto .eyebrow {
      color: var(--white);
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.18);
      box-shadow: none;
    }

    #contacto .dot {
      background: var(--amber);
    }

    #contacto .contact-item,
    #contacto .form-card {
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 22px 48px rgba(52,56,59,0.20);
    }

    .site-footer {
      padding: 34px 0;
      border-top: 1px solid rgba(255,255,255,0.10);
      background: #000000;
      color: var(--white);
    }

    .site-footer .brand-name .sunny,
    .site-footer .brand-name .flip,
    .site-footer .brand-subtitle,
    .site-footer .footer-text {
      color: var(--white);
    }

    .site-footer .brand-mark {
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-logo {
      width: 132px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
    }

    .footer-text {
      color: var(--graphite);
      font-family: ui-serif, Georgia, "Times New Roman", serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.01em;
      text-transform: none;
      text-align: right;
      opacity: 0.82;
    }

    @media (max-width: 1040px) {
      .header-phone, .main-nav { display: none; }
      .mobile-toggle { display: inline-flex; }
      .hero-grid, .opportunity-grid, .product-showcase, .contact-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 52px; }
      .photo-shell { width: min(100%, 470px); min-height: 0; justify-self: center; }
    }

    @media (max-width: 820px) {
      .container { width: min(100% - 28px, var(--max)); }
      .header-inner { min-height: 78px; }
      .brand-mark {
        width: clamp(128px, 38vw, 180px);
        height: auto;
      }

      .brand-subtitle {
        display: none;
      }

      .brand-rubro {
        padding: 12px 0 10px;
        letter-spacing: 0.16em;
      }
      .hero { padding: 42px 0 66px; }
      .hero-content { border-radius: 0; }
      .hero-points, .season-grid, .cards-grid, .cross-benefits, .product-grid, .use-grid { grid-template-columns: 1fr; }
      .section { padding: 66px 0; }
      .section::before { width: calc(100% - 28px); }
      .photo-shell { width: min(100%, 430px); min-height: 0; border-radius: 36px; padding: 12px; }
      .photo-frame { min-height: 0; aspect-ratio: 1 / 1; border-radius: 28px; }
      .product-photo { min-height: 300px; }
      .photo-card { margin-top: 14px; padding: 18px; }
      .section-heading { margin-bottom: 34px; }
      .benefit-card { min-height: auto; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-text { text-align: left; }
    }

    @media (max-width: 520px) {
      .brand { gap: 8px; }
      .brand-mark { width: 54px; }
      .brand-name { font-size: 25px; }
      .actions { flex-direction: column; }
      .button { width: 100%; }
      .hero h1 { font-size: 40px; }
      .hero-copy { font-size: 18px; }
      .floating-label { left: 16px; right: 16px; justify-content: center; }
      .season-panel, .dark-panel, .form-card { border-radius: 30px; }
    }