@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: #1a2a35; background: #fff; font-size: 17px; line-height: 1.8; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --sky: #2FA8D8;
  --sky-mid: #1A8FC0;
  --sky-dark: #0E72A0;
  --sky-deep: #085C84;
  --navy: #062F47;
  --sky-pale: #EBF7FD;
  --sky-light: #B8E2F5;
  --sky-xlight: #DCEFF9;
  --white: #ffffff;
  --text: #1a2a35;
  --text-soft: #344d5c;
  --muted: #5a7080;
  --border: #B8E2F5;
  --border-soft: #D8EEF8;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(8,92,132,.07);
  --shadow-md: 0 6px 28px rgba(8,92,132,.12);
  --shadow-lg: 0 14px 44px rgba(8,92,132,.17);
  --transition: 0.22s ease;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(8,92,132,.06);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 64px; height: 64px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name { font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700; color: var(--sky-deep); line-height: 1.2; }
.logo-tag { font-size: 0.72rem; color: var(--muted); letter-spacing: .07em; }

.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a { font-size: 0.92rem; font-weight: 500; color: var(--muted); padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color var(--transition), border-color var(--transition); }
.site-nav a:hover { color: var(--sky-deep); border-bottom-color: var(--sky); }
.nav-cta {
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep)) !important;
  color: #fff !important; padding: 10px 22px !important;
  border-radius: 24px; border-bottom: none !important;
  font-weight: 700 !important; font-size: 0.9rem !important;
  box-shadow: 0 3px 12px rgba(8,92,132,.25);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(8,92,132,.35) !important; }

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

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 32px 88px;
}

/* 背景写真 */
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.9) saturate(1.15);
}
/* グラデーションオーバーレイ：左～全体を暗くしてテキストを読みやすく */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(6,47,71,0.82) 0%,
      rgba(8,70,108,0.72) 30%,
      rgba(13,92,140,0.50) 55%,
      rgba(13,92,140,0.20) 75%,
      rgba(13,92,140,0.05) 100%
    ),
    linear-gradient(to bottom,
      rgba(6,47,71,0.30) 0%,
      rgba(6,47,71,0.0) 40%,
      rgba(6,47,71,0.0) 70%,
      rgba(6,47,71,0.45) 100%
    );
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  max-width: 760px;
}
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.16); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.32);
  margin-bottom: 22px; letter-spacing: .07em;
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.4;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(6,47,71,0.5);
}
.hero h1 em { font-style: normal; color: #9dd8f5; }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.92);
  max-width: 580px; line-height: 2; margin-bottom: 44px;
  text-shadow: 0 1px 8px rgba(6,47,71,0.4);
}
.hero-4btn { display: flex; gap: 14px; flex-wrap: wrap; }
.h4btn {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: rgba(255,255,255,.13);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius); padding: 22px 32px; color: #fff;
  min-width: 140px; cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.h4btn:hover {
  background: rgba(255,255,255,.24); border-color: rgba(255,255,255,.7);
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.h4btn-icon { line-height: 1; display: flex; align-items: center; justify-content: center; }
.h4btn strong { font-size: 1.05rem; font-weight: 700; }
.h4btn span { font-size: 0.78rem; color: rgba(255,255,255,.68); }

/* ヒーロー右側イラスト */


/* ===== SECTION BASE ===== */
.section { padding: 80px 32px; }
.section.bg-pale { background: var(--sky-pale); }
.section.bg-white { background: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 700; color: var(--sky-deep); margin-bottom: 12px;
}
.section-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--sky), var(--sky-deep)); border-radius: 2px; margin: 0 auto 10px; }
.section-sub { font-size: 0.75rem; color: var(--muted); letter-spacing: .12em; font-weight: 500; }

/* ===== NEWS ===== */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
  border-radius: var(--radius-sm);
}
.news-item:first-child { border-top: 1px solid var(--border-soft); }
.news-item:hover { background: var(--sky-pale); }
.news-date { font-size: 0.82rem; color: var(--muted); white-space: nowrap; min-width: 96px; padding-top: 2px; }
.news-badge {
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 10px;
  white-space: nowrap; flex-shrink: 0;
}
.news-badge.info { background: var(--sky-pale); color: var(--sky-dark); border: 1px solid var(--sky-light); }
.news-badge.property { background: #e8f7ee; color: #1a7a40; border: 1px solid #b3e6c5; }
.news-badge.notice { background: #fff8e8; color: #8a6000; border: 1px solid #f5e0a0; }
.news-title { font-size: 0.93rem; color: var(--text); line-height: 1.6; }
.news-title a { color: var(--sky-deep); }
.news-title a:hover { text-decoration: underline; }
.news-empty {
  text-align: center; padding: 48px; color: var(--muted);
  font-size: 0.9rem; background: var(--sky-pale);
  border-radius: var(--radius); border: 1px dashed var(--border);
}

/* ===== PROPERTIES ===== */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.no-properties {
  text-align: center; padding: 64px 24px;
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sky-pale), #fff);
}
.no-properties .np-icon { color: var(--sky-light); margin-bottom: 16px; display: flex; justify-content: center; }
.no-properties p { font-size: 0.97rem; color: var(--muted); line-height: 2; }
.no-properties p strong { color: var(--sky-deep); }
.np-btn {
  display: inline-block; margin-top: 22px;
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep));
  color: #fff; font-size: 0.9rem; font-weight: 700;
  padding: 13px 30px; border-radius: 24px;
  box-shadow: 0 4px 16px rgba(8,92,132,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.np-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,92,132,.35); }

.prop-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-img-wrap { position: relative; }
.prop-img { width: 100%; height: 210px; object-fit: cover; }
.prop-img-placeholder {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, var(--sky-light), #8CCFE8);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(8,92,132,.2);
}
.prop-tag {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep));
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 12px; letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.prop-body { padding: 20px 22px 24px; }
.prop-price { font-family: 'Noto Serif JP', serif; font-size: 1.6rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 4px; }
.prop-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted); margin-left: 3px; }
.prop-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.prop-loc { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.prop-specs { display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border-soft); padding-top: 12px; margin-bottom: 14px; }
.prop-specs span { font-size: 0.82rem; color: var(--muted); }
.prop-btn {
  display: block; text-align: center;
  background: var(--sky-pale); color: var(--sky-dark);
  font-size: 0.88rem; font-weight: 700;
  padding: 10px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.prop-btn:hover { background: var(--sky-deep); color: #fff; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.svc-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 36px 26px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
/* 各カードに写真を透過させたグラデーション背景 */
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0; pointer-events: none;
}
.svc-card:nth-child(1)::after {
  background: linear-gradient(160deg, rgba(14,114,160,.07) 0%, rgba(8,92,132,.03) 100%);
}
.svc-card:nth-child(2)::after {
  background: linear-gradient(160deg, rgba(47,168,216,.07) 0%, rgba(14,114,160,.03) 100%);
}
.svc-card:nth-child(3)::after {
  background: linear-gradient(160deg, rgba(26,143,192,.07) 0%, rgba(47,168,216,.03) 100%);
}
.svc-card:nth-child(4)::after {
  background: linear-gradient(160deg, rgba(6,47,71,.07) 0%, rgba(14,114,160,.03) 100%);
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
  opacity: 0; transition: opacity var(--transition); z-index: 2;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sky-light); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-pale), var(--sky-xlight));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 18px rgba(8,92,132,.12);
  border: 1.5px solid var(--sky-light);
}
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 12px; }
.svc-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.9; }
.svc-badge {
  display: inline-block; margin-top: 14px;
  font-size: 0.7rem; padding: 4px 12px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-pale), var(--sky-xlight));
  color: var(--sky-dark); border: 1px solid var(--sky-light);
  font-weight: 700;
}

/* ===== REASONS ===== */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.reason-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 30px 26px; display: flex; gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.reason-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reason-num {
  font-family: 'Noto Serif JP', serif; font-size: 2.4rem;
  font-weight: 700; line-height: 1; min-width: 48px; padding-top: 2px;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reason-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 8px; }
.reason-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.9; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(145deg, var(--navy) 0%, var(--sky-deep) 55%, var(--sky-mid) 100%);
  padding: 80px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700; color: #fff; margin-bottom: 14px;
  position: relative;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 36px; position: relative; }
.cta-btn {
  display: inline-block;
  background: #fff; color: var(--sky-deep);
  font-size: 1rem; font-weight: 700;
  padding: 16px 44px; border-radius: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.25); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.about-text h3 {
  font-family: 'Noto Serif JP', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--sky-deep); margin-bottom: 20px; line-height: 1.5;
}
.about-text p { font-size: 0.97rem; color: var(--text-soft); line-height: 2.1; margin-bottom: 14px; }

/* 会社概要テーブル */
.company-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.company-table tr { border-bottom: 1px solid var(--border-soft); }
.company-table tr:last-child { border-bottom: none; }
.company-table th { width: 32%; text-align: left; padding: 14px 18px; background: var(--sky-pale); color: var(--muted); font-weight: 500; }
.company-table td { padding: 14px 18px; color: var(--text); background: #fff; }

.map-area {
  margin-top: 40px; width: 100%; height: 300px;
  border-radius: var(--radius); background: var(--sky-xlight);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--muted); font-size: 0.9rem;
  text-align: center; flex-direction: column; gap: 10px;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 24px; }
.cinfo {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border-soft);
}
.cinfo:last-child { border-bottom: none; }
.cinfo-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--sky-pale), var(--sky-xlight));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(8,92,132,.1);
}
.cinfo p { font-size: 0.85rem; color: var(--muted); margin-bottom: 3px; }
.cinfo strong { font-size: 1rem; color: var(--text); }
.form-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.form-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 24px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--sky-pale);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--sky-mid);
  box-shadow: 0 0 0 3px rgba(47,168,216,.15); background: #fff;
}
.fg textarea { min-height: 120px; resize: vertical; }
.req { color: #e05; margin-left: 2px; }
.submit-btn {
  width: 100%; padding: 14px; border: none;
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep));
  color: #fff; border-radius: 28px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 16px rgba(8,92,132,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,92,132,.35); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(160deg, var(--navy) 0%, #073a5a 100%);
  padding: 56px 32px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 360px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); opacity: .8; }
.footer-logo-text strong { font-family: 'Noto Serif JP', serif; font-size: 1.05rem; color: #fff; font-weight: 700; }
.footer-logo-text span { font-size: 0.65rem; color: rgba(255,255,255,.45); letter-spacing: .07em; display: block; margin-top: 2px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.6); line-height: 2; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav h4 {
  font-family: 'Noto Serif JP', serif; font-size: 0.88rem;
  color: #fff; margin-bottom: 2px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-nav a:hover { color: #9dd8f5; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0; text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,.32);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  box-shadow: var(--shadow-md); z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== SCROLL MARGIN ===== */
[id] { scroll-margin-top: 82px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px 24px;
    box-shadow: var(--shadow-md); gap: 18px;
    border-top: 1px solid var(--border-soft);
  }
  .hero { padding: 60px 20px 56px; }
  .hero-4btn { gap: 12px; }
  .h4btn { padding: 18px 22px; min-width: 120px; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .news-item { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .h4btn { min-width: 105px; padding: 16px 16px; }
  .h4btn strong { font-size: 0.9rem; }
}

/* ===== NEWS SPINNER ===== */
.news-spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid var(--sky-light);
  border-top-color: var(--sky-dark);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
