/*
Theme Name: GigsComm Brand
Theme URI: http://localhost/gigscomm
Author: Gigscomm
Description: Light marketing theme matched to gigscomm.com for GigsComm Google Shopping Feed.
Version: 3.5.2
Text Domain: gigscomm-brand
*/

:root {
  --blue: #1a73e8;
  --blue-dark: #1558c0;
  --ink: #1a1d23;
  --text: #4a5160;
  --muted: #7a8294;
  --white: #ffffff;
  --paper: #f7f5fb;
  --lavender: #eee7f7;
  --lavender-2: #e8dff8;
  --pink: #f8e4ef;
  --purple: #ece4fb;
  --yellow: #f8f0d4;
  --mint: #e3f4ea;
  --mint-deep: #d7efe2;
  --line: rgba(26, 29, 35, 0.08);
  --shadow: 0 18px 50px rgba(40, 30, 80, 0.08);
  --radius: 22px;
  --pill: 999px;
  --font: "Poppins", "Segoe UI", sans-serif;
  --font-heading: "Figtree", "Poppins", sans-serif;
  /* Match gigscomm.com Bootstrap-style content width */
  --max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --heading-color: rgb(9, 11, 14);
}

@media (min-width: 1600px) {
  :root {
    --max: 1440px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(0.75rem + 5px) 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.brand-mark {
  --brand-blue: #1a68b0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Montserrat", "Poppins", sans-serif;
  color: var(--brand-blue);
  line-height: 1;
}

.brand-mark__g {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark__rule {
  display: block;
  width: 1.5px;
  height: 1.55rem;
  background: var(--brand-blue);
  opacity: 0.55;
  flex-shrink: 0;
}

.brand-mark__word {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-right: 0.08em;
}

.site-header .brand-mark__g {
  font-size: 2.15rem;
}

.site-header .brand-mark__word {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.site-header .brand-mark__rule {
  height: 1.4rem;
}

.brand-mark--hero .brand-mark__g {
  font-size: 2.2rem;
}

.brand-mark--hero .brand-mark__word {
  font-size: 0.98rem;
}

.hero__badge .brand-mark {
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.site-header__actions {
  display: none;
}

.site-header__end {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

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

.site-nav {
  display: none;
  gap: 2.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: var(--blue);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 24, 0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index: 210;
  background: #ffffff;
  padding: 1.25rem 1.35rem 1.75rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none;
  pointer-events: none;
  backface-visibility: hidden;
}

body.nav-open .nav-drawer {
  transform: translateX(0);
  pointer-events: auto;
}

.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
}

.brand-mark--drawer .brand-mark__g {
  font-size: 2.4rem;
  color: #1a68b0;
}

.nav-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #0b0b0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-nav--drawer {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  overflow: visible;
}

.site-nav--drawer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav--drawer a {
  display: block;
  padding: 0.95rem 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #0b0b0b;
  border: 0;
  text-decoration: none;
}

.site-nav--drawer .current-menu-item > a {
  color: var(--blue);
}

.nav-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.nav-drawer__cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  flex-shrink: 0;
}

.site-header .header-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

@media (min-width: 980px) {
  .nav-drawer,
  .nav-backdrop,
  .nav-toggle {
    display: none !important;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: calc(0.85rem + 5px) 0;
    gap: 1rem;
  }

  .site-header .site-logo {
    justify-self: start;
    align-self: center;
    flex-shrink: 0;
  }

  .site-header .brand-mark__g {
    font-size: 2.55rem;
  }

  .site-header .brand-mark__word {
    font-size: 1.12rem;
    letter-spacing: 0.24em;
  }

  .site-header .brand-mark__rule {
    height: 1.7rem;
  }

  .site-nav--desktop {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 2.15rem;
    justify-self: center;
    align-self: center;
    grid-column: 2;
  }

  .site-header__end {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    align-self: center;
    grid-column: 3;
    gap: 0;
    margin-left: 0;
  }

  .site-header .header-cta {
    display: inline-flex;
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.95rem;
  }

  body.nav-open {
    overflow: auto !important;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

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

.button--primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.28);
}

.button--primary:hover {
  background: var(--blue-dark);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.34);
}

a.button--primary,
a.button--primary:visited,
a.button--primary:hover,
.site-footer a.button--primary,
.site-footer a.button--primary:hover,
.entry-content a.button--primary,
.cta-band a.button--primary,
.panel a.button--primary {
  color: #ffffff;
  text-decoration: none;
}

a.button,
a.button:hover,
a.button:visited,
.entry-content a.button,
.entry-content a.button:hover {
  text-decoration: none;
}

.button--outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.button--outline:hover {
  background: #f3f7ff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(232, 180, 245, 0.55), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(186, 170, 255, 0.45), transparent 36%),
    linear-gradient(180deg, #f6f1fb 0%, #fbf9fe 55%, #ffffff 100%);
  padding: 3.5rem var(--gutter) 2.5rem;
}

.hero__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    min-height: 72vh;
  }
}

.hero__copy {
  text-align: left;
  max-width: 38rem;
  animation: riseIn 0.85s var(--ease) both;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.95rem 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(205, 218, 245, 0.75);
  color: #3b6fd4;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero__tag-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.28rem;
  background: #1a73e8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__tag-rule {
  width: 1px;
  height: 0.9rem;
  background: #3b6fd4;
  opacity: 0.4;
  flex-shrink: 0;
}

.hero__eyebrow {
  display: none;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0b0b0b;
}

.hero__lead {
  margin: 0 0 2.35rem;
  max-width: 32rem;
  color: #555555;
  font-size: clamp(1.02rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  animation: riseIn 0.95s var(--ease) 0.1s both;
}

.hero__orb {
  width: min(100%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, #e7d8ff 0%, #d9c3f8 45%, #f3e8ff 70%, transparent 72%);
  display: grid;
  place-items: center;
  position: relative;
}

.hero__badge {
  width: min(86%, 300px);
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.hero__badge span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.float-chip {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.float-chip--one {
  top: 12%;
  left: 4%;
}

.float-chip--two {
  right: 2%;
  bottom: 12%;
}

@media (min-width: 960px) {
  .float-chip {
    animation-name: animation-1;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }

  .float-chip--two {
    animation-delay: 0.4s;
  }
}

.trust {
  padding: 1.25rem var(--gutter);
  background: #f3f4f8;
}

.trust__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust strong {
  color: var(--ink);
}

.section {
  padding: 4.5rem var(--gutter);
}

.section__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  text-transform: none;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 44px;
  line-height: 52px;
  letter-spacing: normal;
  color: var(--heading-color);
  max-width: min(720px, 100%);
}

.section--center h2 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .section h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.section .lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--text);
}

.section--center {
  text-align: center;
}

.section--center .lead {
  margin-left: auto;
  margin-right: auto;
}

.section--lavender {
  background: linear-gradient(180deg, #f7f2fc 0%, #ffffff 100%);
}

.section--mint {
  background: linear-gradient(180deg, #eef8f2 0%, #ffffff 100%);
}

.feature-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 800px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(28, 36, 52, 0.12);
}

.card--pink { background: #f3d4e4; }
.card--purple { background: #ddd2f5; }
.card--yellow { background: #f0e4b8; }
.card--mint { background: #c8e9d6; }

.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  flex: 1;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.split {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.panel {
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}

.panel--dark {
  background: linear-gradient(145deg, #1d2430, #2a3344);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
  min-height: 280px;
}

.panel--dark .panel__eyebrow {
  margin: 0;
  color: #8eb6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel--dark h3 {
  margin: 0;
}

.panel--dark p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.panel--dark .panel__list {
  margin: 0.15rem 0 0.35rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.panel--dark .panel__list li {
  margin: 0.25rem 0;
}

.panel--dark .button {
  margin-top: auto;
  align-self: flex-start;
}

.panel--mission {
  background: #ddd2f5;
  padding: 2.4rem 2rem;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel--vision {
  background: #f3d4e4;
  padding: 2.4rem 2rem;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel h3 {
  margin: 0 0 0.5rem;
  color: inherit;
}

.panel p {
  margin: 0 0 1rem;
  color: inherit;
}

.panel--dark,
.panel--dark h3,
.entry-content .panel--dark h3 {
  color: #ffffff;
}

.entry-content .panel--dark h3 {
  margin: 0 0 0.65rem;
}

.panel--dark p,
.entry-content .panel--dark p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.panel--dark strong {
  color: #ffffff;
}

.panel--dark a,
.entry-content .panel--dark a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.panel--dark a.button,
.panel--dark a.button:hover,
.panel--dark a.button:visited,
.entry-content .panel--dark a.button {
  color: #ffffff;
  text-decoration: none;
}

.panel--mission p,
.panel--vision p {
  margin: 0;
  color: var(--text);
}

.stack {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  height: 100%;
  grid-template-rows: 1fr 1fr;
}

.final {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
}

.final h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 44px;
  line-height: 52px;
  color: var(--heading-color);
}

@media (max-width: 640px) {
  .final h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.final p {
  margin: 0;
  color: var(--text);
}

.final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 3rem var(--gutter) 1.5rem;
  background: var(--mint-deep);
}

.site-footer__grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer__brand p {
  color: var(--text);
  margin: 0.85rem 0 1.1rem;
  max-width: 28ch;
  font-size: 0.92rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer li,
.site-footer a {
  color: var(--text);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.site-footer__bottom {
  max-width: var(--max);
  width: 100%;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 29, 35, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer__bottom p {
  margin: 0;
}

.page-shell {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 0 4.5rem;
}

.page-shell--wide {
  max-width: var(--max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (min-width: 900px) {
  .page-shell--wide {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-shell--legal {
  max-width: var(--max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (min-width: 900px) {
  .page-shell--legal {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-hero {
  margin-bottom: 1.75rem;
}

.page-shell h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 44px;
  line-height: 52px;
  color: var(--heading-color);
}

@media (max-width: 640px) {
  .page-shell h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

.page-lead {
  font-size: 1.08rem;
  color: var(--text);
  margin: 0 0 1.75rem;
}

.entry-content {
  color: var(--text);
}

.entry-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: var(--heading-color);
}

.entry-content h3 {
  margin: 1.5rem 0 0.55rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.entry-content ul {
  padding-left: 1.2rem;
}

.entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content code {
  font-size: 0.86em;
  background: var(--lavender);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.legal-meta {
  background: var(--lavender-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
}

.content-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

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

.content-card {
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(28, 36, 52, 0.12);
}

.content-card h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.content-card ul {
  margin: 0;
  color: var(--text);
}

.content-card--pink { background: #f3d4e4; }
.content-card--purple { background: #ddd2f5; }
.content-card--yellow { background: #f0e4b8; }
.content-card--mint { background: #c8e9d6; }

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #e0d6f0;
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  margin-top: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 44px;
  line-height: 52px;
  color: var(--heading-color);
}

.cta-band p {
  margin: 0;
}

.steps--page {
  margin: 1.5rem 0;
  align-items: stretch;
}

@media (min-width: 800px) {
  .steps--page {
    grid-template-columns: 1fr 1fr;
  }
}

.steps--page .step {
  height: 100%;
  border: 0;
}

.steps--page .step:nth-child(1) { background: #f3d4e4; }
.steps--page .step:nth-child(2) { background: #ddd2f5; }
.steps--page .step:nth-child(3) { background: #f0e4b8; }
.steps--page .step:nth-child(4) { background: #c8e9d6; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  margin: 0 0 0.75rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0.25rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.contact-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.35fr 0.85fr;
  }
}

.contact-layout__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem;
}

.contact-layout__form h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: var(--heading-color);
}

@media (max-width: 640px) {
  .contact-layout__form h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .cta-band h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.contact-layout__aside {
  display: grid;
  gap: 1rem;
}

.contact-layout__aside .panel {
  min-height: 0;
  height: auto;
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}

.contact-layout__aside .panel--dark {
  background: linear-gradient(145deg, #1d2430, #2a3344);
  color: #fff;
  display: block;
}

.contact-layout__aside .panel--dark h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.contact-layout__aside .panel--dark p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.contact-layout__aside .panel--dark p:last-child {
  margin-bottom: 0;
}

.contact-layout__aside .panel--dark a {
  color: #ffffff;
}

.contact-layout__aside .panel--mission {
  background: #ddd2f5;
  flex: none;
  display: block;
  justify-content: flex-start;
}

.contact-layout__aside .panel--mission h3 {
  margin: 0 0 0.65rem;
  color: var(--heading-color);
  font-size: 1.15rem;
}

.contact-layout__aside .panel--mission p {
  color: var(--text);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.contact-layout__aside .panel--mission p:last-child {
  margin-bottom: 0;
}

.contact-layout__aside .panel--mission a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form__row {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(26, 115, 232, 0.35);
  border-color: var(--blue);
  background: var(--white);
}

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

.contact-form .button {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form__fine {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form__fine a {
  color: var(--blue);
}

.contact-form__hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.form-notice--ok {
  background: var(--mint);
  color: #1a5c38;
}

.form-notice--err {
  background: var(--pink);
  color: #8a2448;
}

.contact-grid a {
  color: inherit;
}

.split--about {
  margin: 1.5rem 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes animation-1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-14px);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__visual {
    animation: none !important;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

}
