/* Cloud Innovate — modern minimalist theme */
:root {
  --bg: #ffffff;
  --bg-soft: #f7faf9;
  --bg-muted: #eef5f3;
  --ink: #1a2b28;
  --ink-soft: #4a5e5a;
  --line: #d8e5e1;
  --accent: #0f766e;
  --accent-hover: #0d5f59;
  --accent-soft: #ccfbf1;
  --accent-mist: #f0fdfa;
  --warn: #b45309;
  --error: #b91c1c;
  --ok: #047857;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 18px 50px rgba(15, 60, 55, 0.08);
  --font-display: "Fraunces", "Noto Serif KR", Georgia, serif;
  --font-body: "IBM Plex Sans KR", "Noto Sans KR", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #99f6e4 0 28%, transparent 29%),
    linear-gradient(145deg, #0f766e, #134e4a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-nav .nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav.is-open {
    display: flex;
    animation: dropIn 0.35s var(--ease);
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  animation: rise 0.8s var(--ease) both;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — full-bleed visual plane */
.hero-bleed {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #134e4a;
}

.hero-bleed__media {
  position: absolute;
  inset: 0;
}

.hero-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeSoft 1.4s var(--ease);
}

.hero-bleed__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 40, 38, 0.35) 0%, rgba(10, 40, 38, 0.72) 55%, rgba(10, 40, 38, 0.9) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(15, 118, 110, 0.35), transparent 55%);
}

.hero-bleed__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
}

.hero-bleed .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  line-height: 1.05;
}

.hero-bleed .lede {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.hero-bleed .btn-primary {
  background: #fff;
  color: var(--accent);
}

.hero-bleed .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-muted {
  background:
    linear-gradient(180deg, var(--accent-mist), var(--bg-soft));
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* Proof strip */
.proof-strip {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proof-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--accent);
  letter-spacing: -0.03em;
}

.proof-grid span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Feature list (not cards by default — open layout) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.feature-list article h3 {
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.feature-list article p {
  color: var(--ink-soft);
  margin: 0;
}

.feature-list .num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 800px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Course preview / listing — interaction containers */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.course-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.course-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.course-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.course-item .body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.course-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.course-meta {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
}

/* Featured course band */
.featured-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.featured-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.featured-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0.4rem 0 1rem;
}

.featured-band p {
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .featured-band {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Quotes */
.quote-stack {
  display: grid;
  gap: 2rem;
}

.quote {
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.35rem;
}

.quote p {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.quote footer {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.quote.compact p {
  font-size: 1rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 253, 250, 0.9)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(15, 118, 110, 0.03) 18px,
      rgba(15, 118, 110, 0.03) 19px
    );
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, var(--accent-mist), #fff 80%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.85rem;
}

.page-hero .lede {
  max-width: 40rem;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.1rem;
}

.page-hero-media {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 38, 0.2), rgba(10, 40, 38, 0.82));
}

.page-hero-media .content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}

.page-hero-media h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.page-hero-media .lede {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* Prose / legal */
.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  margin-bottom: 1rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-tier {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.price-tier.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--accent-mist), #fff 40%);
}

.price-tier h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.price-tier .price {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.75rem 0;
  letter-spacing: -0.03em;
}

.price-tier .price span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.price-tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.price-tier li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-tier li:last-child {
  border-bottom: none;
}

.price-note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.blog-list {
  display: grid;
  gap: 2rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s var(--ease);
}

.blog-row:hover {
  opacity: 0.88;
  color: inherit;
}

.blog-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-row h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.blog-row p {
  color: var(--ink-soft);
  margin: 0;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
}

.article {
  max-width: 44rem;
  margin: 0 auto;
}

.article-hero {
  margin: 0 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 1rem;
}

.article .meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.form-group .hint {
  font-weight: 400;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-success {
  display: block;
  background: #ecfdf5;
  color: var(--ok);
  border: 1px solid #a7f3d0;
}

.form-status.is-error {
  display: block;
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
}

.inline-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
  border-radius: var(--radius);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Course detail */
.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.module-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.module-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.instructor {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.instructor img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

/* Reviews page */
.case-study {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.case-study h3 {
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

/* 404 */
.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  margin: 0 0 0.5rem;
  color: var(--accent);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  animation: rise 0.45s var(--ease);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cookie-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #0f2a27;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer-tag {
  max-width: 28rem;
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-cols h2 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99f6e4;
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cols li {
  margin-bottom: 0.45rem;
}

.footer-cols a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Split content helpers */
.split-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 760px) {
  .split-text {
    grid-template-columns: 1fr;
  }
}

.pill-note {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
