﻿:root {
    --sakura: #E8A7AD;
    --sakura-deep: #D87587;
    --sakura-light: #F4C6CB;
    --sakura-pale: #FFF3F5;
    --logo-brown: #9B897F;
    --logo-brown-dark: #6D5F58;
    --sage: #9AAE9D;
    --sage-light: #DDE8DE;
    --greige: #B9AAA0;
    --greige-light: #F3EEEA;
    --cream: #FFFDFC;
    --white: #FFFFFF;
    --text-dark: #2D2927;
    --text-mid: #665C58;
    --text-light: #9B908B;
    --border: #EADDD9;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,253,252,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: box-shadow 0.3s;
  }
  header.scrolled { box-shadow: 0 2px 20px rgba(180,140,150,0.12); }

  .logo-img { height: 58px; width: auto; display: block; }

  nav { display: flex; gap: 32px; align-items: center; }
  nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--sakura); }

  .nav-cta {
    background: linear-gradient(135deg, var(--sakura-deep), var(--sakura));
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 13px;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(216,117,135,0.22); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-mid);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    background:
      linear-gradient(90deg, rgba(255,253,252,0.94) 0%, rgba(255,250,250,0.86) 38%, rgba(255,247,248,0.50) 64%, rgba(255,247,248,0.20) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.18)),
      url('../img/hero-photo.png') center right / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 24% 22%, rgba(244,198,203,0.30), transparent 24%),
      radial-gradient(circle at 62% 86%, rgba(255,255,255,0.48), transparent 28%);
    pointer-events: none;
  }
  .hero-petals {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
  }
  .petal {
    position: absolute;
    width: 18px; height: 22px;
    border-radius: 50% 50% 50% 0;
    opacity: 0.10;
    animation: floatPetal linear infinite;
  }
  @keyframes floatPetal {
    0% { transform: translateY(-40px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.12; }
    90% { opacity: 0.08; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
  }

  .hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 86px 40px 132px;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-text {
    width: min(100%, 560px);
  }
  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.24em;
    color: var(--sakura-deep);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .hero-text h1 {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 600;
    line-height: 1.62;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 18px rgba(255,255,255,0.72);
  }
  .hero-text h1 span { color: var(--text-dark); }

  .hero-text p {
    font-size: 15px;
    line-height: 2.05;
    color: var(--text-mid);
    margin-bottom: 38px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 16px rgba(255,255,255,0.9);
  }

  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--sakura-deep), var(--sakura));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.25s;
    box-shadow: 0 12px 30px rgba(216,117,135,0.28);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(216,117,135,0.36); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.76);
    color: var(--logo-brown-dark);
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    border: 1.5px solid rgba(155,137,127,0.24);
    transition: all 0.25s;
    backdrop-filter: blur(8px);
  }
  .btn-secondary:hover { border-color: var(--sakura); color: var(--sakura-deep); background: var(--white); }

  .hero-wave { background: linear-gradient(150deg,#fffdfc 0%,#fff7f8 46%,#f4efeb 100%); }

  /* ===== PAIN POINTS ===== */
  #pain {
    padding: 80px 40px;
    background: var(--white);
  }
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--sakura);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 48px;
  }

  .pain-grid {
    max-width: 900px;
    margin: 0 auto;
  }

  .pain-intro {
    text-align: center;
    margin-bottom: 40px;
  }

  .pain-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--sakura-pale);
    border-radius: 12px;
    border-left: 3px solid var(--sakura-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }
  .pain-item.visible { opacity: 1; transform: translateY(0); }
  .pain-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--sakura-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pain-check svg { width: 10px; }
  .pain-item p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .pain-resolve {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--sakura-pale), var(--greige-light));
    border-radius: 16px;
  }
  .pain-resolve p {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .pain-resolve span { color: var(--sakura); }

  /* ===== SERVICES ===== */
  #services {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--greige-light), #fffaf9);
  }

  .services-inner { max-width: 1100px; margin: 0 auto; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sakura), var(--sage));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card.visible { opacity: 1; transform: translateY(0); }
  .service-card:hover { box-shadow: 0 12px 40px rgba(150,100,110,0.12); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--sakura-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 24px; height: 24px; }

  .service-card h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
  }
  .service-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 13px;
    color: var(--sakura);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }

  /* ===== REASONS ===== */
  #reasons {
    padding: 100px 40px;
    background: var(--white);
  }
  .reasons-inner { max-width: 1100px; margin: 0 auto; }

  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }

  .reason-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--sakura-pale);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
  }
  .reason-card.visible { opacity: 1; transform: translateX(0); }

  .reason-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--sakura-light);
    line-height: 1;
    flex-shrink: 0;
  }
  .reason-text h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .reason-text p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-mid);
  }

  /* ===== MESSAGE ===== */
  #message {
    padding: 100px 40px;
    background: var(--greige-light);
  }
  .message-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }

  .message-portrait {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(150,100,110,0.18);
    aspect-ratio: 4/5;
    position: relative;
  }
  .message-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .message-portrait::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(180,130,140,0.15), transparent);
  }

  .message-text .section-label { margin-bottom: 8px; }
  .message-text h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .message-text p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-mid);
    margin-bottom: 16px;
  }
  .message-name {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .message-name .title {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .message-name .name {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
  }

  /* ===== COMPANY ===== */
  #company {
    padding: 100px 40px;
    background: var(--white);
  }
  .company-inner { max-width: 800px; margin: 0 auto; }

  .company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
  }
  .company-table tr {
    border-bottom: 1px solid var(--border);
  }
  .company-table td {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.7;
    vertical-align: top;
  }
  .company-table td:first-child {
    width: 140px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding-top: 20px;
    white-space: nowrap;
  }
  .company-table td:last-child { color: var(--text-dark); }

  .company-table ul {
    list-style: none;
    padding: 0;
  }
  .company-table ul li::before {
    content: '・';
    color: var(--sakura);
    margin-right: 4px;
  }

  /* ===== CONTACT ===== */
  #contact {
    padding: 100px 40px;
    background: var(--sakura-pale);
  }
  .contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  .contact-desc {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 48px;
    line-height: 1.9;
  }

  .contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 44px;
    text-align: left;
    box-shadow: 0 8px 40px rgba(150,100,110,0.1);
  }

  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #C8C0BC;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--sakura);
    box-shadow: 0 0 0 3px rgba(212,138,150,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sakura-deep), var(--sakura));
    color: var(--white);
    border: none;
    border-radius: 32px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(212,138,150,0.3);
  }
  .btn-submit:hover { background: var(--sakura-deep); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(216,117,135,0.34); }

  /* ===== FOOTER ===== */
  footer {
    background: linear-gradient(180deg, #f5eeee 0%, #eee5e0 100%);
    color: var(--text-mid);
    padding: 48px 40px 32px;
    border-top: 1px solid rgba(155,137,127,0.14);
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(155,137,127,0.18);
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo { height: 58px; opacity: 0.95; }
  .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    letter-spacing: 0.06em;
  }
  .footer-nav a:hover { color: var(--sakura-deep); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }

  /* ===== MOBILE NAV ===== */
  .mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(150,100,110,0.1);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 15px;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .btn-primary { border-bottom: none; text-align: center; justify-content: center; }

  /* ===== SCROLL REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    header { padding: 0 24px; }
    nav { display: none; }
    .hamburger { display: flex; }

    #hero {
      min-height: 820px;
      background:
        linear-gradient(180deg, rgba(255,253,252,0.84) 0%, rgba(255,248,249,0.66) 42%, rgba(255,248,249,0.12) 100%),
        url('../img/hero-photo.png') 58% 72% / cover no-repeat;
      align-items: flex-start;
    }
    .hero-inner {
      padding: 62px 24px 300px;
    }
    .hero-text { width: min(100%, 560px); }

    #pain { padding: 60px 24px; }
    .pain-list { grid-template-columns: 1fr; }

    #services { padding: 70px 24px; }
    .services-grid { grid-template-columns: 1fr; }

    #reasons { padding: 70px 24px; }
    .reasons-grid { grid-template-columns: 1fr; }

    #message { padding: 70px 24px; }
    .message-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .message-portrait { max-width: 280px; margin: 0 auto; }

    #company { padding: 70px 24px; }
    .company-table td:first-child { width: 100px; }

    #contact { padding: 70px 24px; }
    .contact-form { padding: 36px 28px; }

    footer { padding: 40px 24px 28px; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
  }

  @media (max-width: 480px) {
    .logo-img { height: 44px; }
    #hero {
      min-height: 620px;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 54%, rgba(255,255,255,0) 82%),
        linear-gradient(180deg, rgba(255,253,252,0.82) 0%, rgba(255,248,249,0.62) 62%, rgba(255,248,249,0.08) 100%),
        url('../img/hero-mobile-brand-v2.png') center center / cover no-repeat;
      background-color: var(--cream);
    }
    .hero-inner { padding: 46px 24px 76px; }
    .hero-text h1 { font-size: 30px; line-height: 1.7; }
    .hero-text p { font-size: 14px; line-height: 1.95; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .petal:nth-child(n+11) { display: none; }

    /* Keep the long-form mobile page moving at a comfortable rhythm. */
    .section-label { margin-bottom: 8px; }
    .section-title { margin-bottom: 28px; }

    #services,
    #reasons,
    #message,
    #company,
    #contact { padding: 56px 24px; }

    .services-grid,
    .reasons-grid {
      gap: 16px;
      margin-top: 0;
    }
    .service-card {
      padding: 28px 24px;
      border-radius: 16px;
    }
    .service-icon { margin-bottom: 16px; }
    .service-card p { margin-bottom: 16px; }

    .reason-card {
      gap: 14px;
      padding: 22px 18px;
    }
    .reason-num { font-size: 34px; }

    .message-inner { gap: 28px; }
    .message-text h2 { margin-bottom: 18px; }
    .message-name { margin-top: 22px; }

    .company-table { margin-top: 24px; }
    .company-table td { padding: 15px 10px; }
    .company-table td:first-child {
      width: 86px;
      padding-top: 17px;
    }

    .contact-form { padding: 30px 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .pain-item,
    .service-card,
    .reason-card {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* ===== WAVES ===== */
  .wave-divider {
    position: relative;
    height: 70px;
    overflow: hidden;
    margin-bottom: -2px;  /* prevent 1px gap */
  }
  .wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .hero-wave-divider {
    z-index: 2;
    margin-top: -70px;
  }
  @media (max-width: 480px) {
    .wave-divider { height: 48px; }
    .hero-wave-divider { margin-top: -48px; }
  }
.pain-item.full-row { grid-column: 1 / -1; }

.page-main {
  padding-top: 70px;
  background: var(--white);
}
.page-hero {
  padding: 88px 40px 56px;
  background: linear-gradient(160deg, var(--sakura-pale) 0%, #fff8f9 45%, #f5f8f5 100%);
  text-align: center;
}
.page-hero-inner,
.page-content {
  max-width: 880px;
  margin: 0 auto;
}
.page-hero h1,
.thanks-panel h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.page-hero p,
.thanks-panel p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}
.page-content {
  padding: 64px 40px 96px;
}
.policy-section {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.policy-section:first-child { padding-top: 0; }
.policy-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  margin-bottom: 14px;
}
.policy-section p,
.policy-section li {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}
.policy-section ul {
  padding-left: 1.2em;
}
.thanks-wrap {
  min-height: calc(100vh - 70px);
  padding: 110px 24px 90px;
  background: linear-gradient(160deg, var(--sakura-pale), #fff8f9 48%, var(--greige-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-panel {
  max-width: 680px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(150,100,110,0.14);
  padding: 56px 44px;
}
.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.footer-copy a {
  color: inherit;
  text-decoration: none;
}
.footer-copy a:hover { color: var(--sakura-light); }

@media (max-width: 640px) {
  .page-hero { padding: 68px 24px 44px; }
  .page-content { padding: 48px 24px 72px; }
  .thanks-panel { padding: 42px 28px; }
  .thanks-actions { flex-direction: column; }
}
button.hamburger { border: 0; background: transparent; }
