:root {
  --primary: #2f80ed;
  --primary-dark: #1d5fb9;
  --accent: #eef6ff;
  --accent-warm: #fff6e8;
  --text: #223046;
  --muted: #5f6f82;
  --line: #d9e6f5;
  --bg: #f8fbff;
  --bg-soft: #fdfefe;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(27, 79, 150, 0.10);
  --shadow-soft: 0 10px 24px rgba(51, 88, 132, 0.08);
  --radius: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  line-height: 1.85;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.bg-light { background: var(--bg); }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin: 0 0 14px;
}
.section-lead { color: var(--muted); max-width: 760px; margin: 0; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.lead-large { font-size: 1.08rem; line-height: 1.9; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .25s ease;
  box-shadow: 0 10px 20px rgba(31, 111, 214, 0.10);
}
.btn-primary { background: linear-gradient(135deg, #ff9f43, #ff7b54); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, #ff9248, #ef6f4f); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,.96); color: var(--primary-dark); border-color: #cfe2ff; }
.btn-secondary:hover { border-color: #ffb469; }
.btn-ghost { color: var(--primary); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eef3f8;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--primary-dark);
}
.logo.logo-image {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}
.logo.logo-image img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-menu a {
  color: #334155;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); }
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.28), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(255,237,213,.38), transparent 24%),
    linear-gradient(135deg, #4a9cff, #2f80ed 55%, #1d5fb9);
  color: var(--white);
  padding: 96px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.18;
  margin: 0 0 18px;
}
.hero p {
  margin: 0;
  font-size: 1.03rem;
  color: rgba(255,255,255,.92);
  max-width: 720px;
}
.hero-card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stat {
  background: rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}
.stat strong { display: block; font-size: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid #e7eef8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.list li {
  padding: 10px 0;
  border-bottom: 1px solid #eef3f8;
}
.list li:last-child { border-bottom: none; }
.badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2da, #ffe4b8);
  color: #8c4b00;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.visual-box {
  min-height: 340px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), transparent 20%),
    linear-gradient(160deg, #f4f9ff, #dceeff 60%, #c4e0ff);
  border: 1px solid #dbe7f5;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visual-box .mock-line {
  height: 14px;
  background: rgba(31,111,214,.12);
  border-radius: 999px;
  margin: 10px 0;
}
.visual-box .mock-line.w80 { width: 80%; }
.visual-box .mock-line.w60 { width: 60%; }
.visual-box .mock-line.w40 { width: 40%; }
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-step {
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  border-radius: 999px;
  text-align: center;
  padding: 10px 12px;
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  padding: 16px 18px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
}
th {
  background: #f0f7ff;
  color: var(--primary-dark);
  font-size: .95rem;
}
tr:last-child td { border-bottom: none; }
.post-list, .works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.post-card, .work-card {
  background: var(--white);
  border: 1px solid #ebf1f7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-thumb, .work-thumb {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.85), transparent 18%),
    linear-gradient(135deg, #eaf4ff, #b8d8ff 60%, #8fc2ff);
  position: relative;
}
.post-thumb::after, .work-thumb::after {
  content: "🏠🔧";
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 2rem;
  letter-spacing: 6px;
}
.post-body, .work-body { padding: 20px; }
.meta { color: var(--muted); font-size: .9rem; }
.contact-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
}
.contact-panel {
  background: var(--white);
  border: 1px solid #e8eff8;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 8px; }
label { font-weight: 700; font-size: .95rem; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d7e3f1;
  font: inherit;
  background: #fff;
}
textarea { min-height: 160px; resize: vertical; }
.note { color: var(--muted); font-size: .92rem; }
.cta {
  background: linear-gradient(135deg, #2f80ed, #1d5fb9 55%, #ff9f43 140%);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 20px 50px rgba(22, 79, 152, .25);
}
.site-footer {
  background: linear-gradient(135deg, #0f2747, #173c6c);
  color: rgba(255,255,255,.88);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero {
  padding: 68px 0 56px;
  background: linear-gradient(180deg, #f4f9ff, #ffffff);
  border-bottom: 1px solid #edf2f7;
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumbs { color: var(--muted); font-size: .92rem; }
.map-placeholder {
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 1px solid #d7e3f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
}
.notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 16px;
}
.friendly-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.friendly-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #eaf4ff);
  box-shadow: var(--shadow-soft);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.soft-card {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid #e5eef8;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.soft-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.soft-card p { margin: 0; color: var(--muted); }
.illustration-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  padding: 22px;
  margin-top: 24px;
}
.illustration-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.mini-illust {
  background: rgba(255,255,255,.16);
  border-radius: 22px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 16px;
}
.mini-illust strong { font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.info-chips span {
  background: var(--accent-warm);
  color: #7b4c00;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.notice-soft {
  background: #ffffff;
  border-left: 6px solid #ffd27d;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.notice-soft p { margin: 0; }
.page-hero.soft {
  background: linear-gradient(180deg, #f5faff, #ffffff 75%);
}
.photo-panel {
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.photo-panel img,
.service-photo img,
.story-photo img,
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-panel figcaption,
.story-photo figcaption,
.service-photo figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .93rem;
  background: #fff;
}
.photo-stack {
  display: grid;
  gap: 18px;
}
.service-photo,
.story-photo {
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-photo { min-height: 260px; }
.story-photo { min-height: 230px; }
.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.16);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}
.hero-photo .caption {
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: 16px 18px;
}
.hero-photo .caption strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.accent-box {
  background: linear-gradient(135deg, #fff7e8, #fff1d6);
  border: 1px solid #ffd9a6;
  border-radius: 22px;
  padding: 18px 20px;
  margin-top: 24px;
}
.accent-box p { margin: 0; color: #7a4d12; font-weight: 700; }
.mizuplus-teaser-link {
  display: block;
}
.mizuplus-teaser-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8fbff 55%, #fff7ec 120%);
  border: 1px solid #e2edf9;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mizuplus-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(31, 76, 139, 0.14);
  border-color: #cfe1f5;
}
.mizuplus-teaser-card .section-lead {
  max-width: 960px;
}
.mizuplus-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 128, 237, 0.06), transparent 18%),
    radial-gradient(circle at 92% 18%, rgba(255, 159, 67, 0.08), transparent 16%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.mizuplus-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}
.mizuplus-price-card,
.mizuplus-card,
.mizuplus-compare-card {
  background: #fff;
  border: 1px solid #e3edf8;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.mizuplus-price-card {
  padding: 28px;
  background: linear-gradient(145deg, #f1f8ff, #ffffff 50%, #fff5ea 115%);
}
.mizuplus-price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #1d5fb9;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}
.mizuplus-price-main {
  margin-top: 14px;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
  color: #1d5fb9;
}
.mizuplus-price-main span {
  font-size: 1rem;
  margin-left: 6px;
  color: var(--muted);
  font-weight: 700;
}
.mizuplus-price-card p {
  margin: 16px 0 0;
  color: var(--muted);
}
.mizuplus-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  margin-top: 28px;
}
.mizuplus-card {
  padding: 26px;
}
.mizuplus-card h3,
.mizuplus-compare-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}
.mizuplus-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mizuplus-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #d4e5fb;
  color: #204b86;
  font-weight: 700;
  font-size: .94rem;
}
.mizuplus-note {
  margin: 18px 0 0;
  color: var(--muted);
}
.mizuplus-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.benefit-box {
  border: 1px solid #dfeaf7;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.benefit-box strong {
  display: block;
  color: #1d5fb9;
  font-size: .98rem;
}
.benefit-box span {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 900;
  color: #e24a1a;
}
.benefit-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
}
.mizuplus-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.mizuplus-compare-card {
  padding: 24px;
}
.mizuplus-compare-card.accent {
  background: linear-gradient(145deg, #fffaf1, #ffffff 70%);
  border-color: #ffe0b0;
}
.mizuplus-compare-card p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 960px) {
  .mizuplus-head,
  .mizuplus-grid,
  .mizuplus-compare,
  .mizuplus-benefit-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .split,
  .contact-box,
  .grid-3,
  .grid-2,
  .post-list,
  .works-list,
  .soft-grid,
  .illustration-row,
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 16px 22px;
    border-bottom: 1px solid #edf2f7;
    box-shadow: 0 14px 30px rgba(15, 39, 71, .08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 58px 0; }
  .hero { padding: 82px 0 70px; }
  .hero-stats { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .cta { padding: 28px 22px; }
  .mizuplus-price-card,
  .mizuplus-card,
  .mizuplus-compare-card {
    padding: 22px;
  }
  .mizuplus-chip-list span {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }
}
.form-status {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.form-status.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 700;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/* emoji overlay removed */
.post-thumb::after,
.work-thumb::after {
  content: none !important;
  display: none !important;
}

/* round2 visual refresh */
.site-header {
  box-shadow: 0 8px 24px rgba(17, 54, 106, 0.06);
}
.logo {
  position: relative;
}
.logo::after {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(90deg, #2f80ed, #ff9f43);
}
.logo.logo-image::after {
  display: none;
}
.nav-menu a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: .25s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: #eef6ff;
  color: var(--primary);
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.20), rgba(255,255,255,0));
  pointer-events: none;
}
.section-title {
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed, #ff9f43);
}
.soft-card,
.post-card,
.work-card,
.contact-panel,
.photo-panel,
.service-photo,
.story-photo,
.card,
.notice-soft {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.soft-card:hover,
.post-card:hover,
.work-card:hover,
.contact-panel:hover,
.photo-panel:hover,
.service-photo:hover,
.story-photo:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(31, 76, 139, 0.14);
  border-color: #cfe1f5;
}
.soft-card {
  position: relative;
  overflow: hidden;
}
.soft-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #2f80ed, #ff9f43);
}
.post-card,
.work-card {
  border-top: 4px solid #d8e8fb;
}
.post-card:hover,
.work-card:hover {
  border-top-color: #ffb157;
}
.post-thumb::after, .work-thumb::after {
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  padding: 6px 10px;
  letter-spacing: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.page-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 194, 115, .18), transparent 20%),
    linear-gradient(180deg, #f4f9ff, #ffffff);
}
.info-chips span {
  box-shadow: 0 8px 18px rgba(255, 172, 84, .12);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #6ea8ff;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.10);
}
.btn-primary {
  box-shadow: 0 16px 30px rgba(255, 132, 84, .24);
}
.cta {
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.20), rgba(255,255,255,0));
}
.site-footer {
  border-top: 4px solid rgba(255, 165, 77, .55);
}
@media (max-width: 960px) {
  .logo::after { width: 34px; }
  .logo.logo-image img { height: 40px; }
  .soft-card:hover,
  .post-card:hover,
  .work-card:hover,
  .contact-panel:hover,
  .photo-panel:hover,
  .service-photo:hover,
  .story-photo:hover,
  .card:hover {
    transform: none;
  }
}
