/*
Theme Name: Node Create
Theme URI: https://node-create.com/
Author: Node Create
Description: 飲食店に特化したホームページ制作「Node Create」のオリジナルコーポレートテーマ。余白と罫線で見せる抑制の効いたデザイン。モバイルファースト。
Version: 1.4.3
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: node-create
*/

/* ==========================================================
   Design tokens — 白 × 墨 × 緑一点
   ========================================================== */
:root {
  --c-bg: #FFFFFF;
  --c-bg-soft: #F6F8F7;
  --c-green: #1E7A52;
  --c-green-deep: #175E40;
  --c-green-pale: #EBF2EE;
  --c-ink: #1C2420;
  --c-muted: #68746E;
  --c-line: #E4E8E6;
  --font-serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --radius-s: 4px;
  --radius: 8px;
  --container: 1040px;
}

/* ==========================================================
   Reset / base (mobile first)
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: "palt";
  letter-spacing: .02em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .7; }
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 .6em;
  letter-spacing: .05em;
}
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.4em; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: 76px; }

.profile-intro { margin-bottom: 32px; }
.profile-intro .profile-card__name { margin-bottom: 8px; }
.profile-intro__bio { font-size: 15px; margin: 0; }
.profile-intro__photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.profile-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  object-position: 60% 30%;
}
@media (min-width: 768px) {
  .profile-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 40px;
  }
  .profile-intro__photo { margin-bottom: 0; }
  .profile-intro__photo img { aspect-ratio: 4 / 3; }
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.site-brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--c-ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.site-brand:hover { opacity: 1; }
.site-brand__tag {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: .14em;
  display: none;
}

.nav-toggle {
  appearance: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--c-ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 4px 0 20px;
}
.site-nav li a {
  display: block;
  padding: 13px 24px;
  font-size: 14px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav .nav-cta a {
  margin: 16px 24px 0;
  background: var(--c-green);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-s);
  border-bottom: 0;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.btn--primary { background: var(--c-green); color: #fff; }
.btn--primary:hover { background: var(--c-green-deep); opacity: 1; }
.btn--white { background: #fff; color: var(--c-green); }
.btn--white:hover { opacity: .85; }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; opacity: 1; }

/* ==========================================================
   Sections
   ========================================================== */
.section { padding: 72px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--warm { background: var(--c-bg-soft); }
.section__head { margin-bottom: 44px; }
.section__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title { font-size: 25px; margin-bottom: 0; }
.section__lead { color: var(--c-muted); font-size: 14px; margin: 16px 0 0; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  padding: 64px 0 72px;
  background: url(assets/img/hero-bg.jpg) center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.72) 100%);
}
.hero > .container { position: relative; }
.hero__grid { display: grid; gap: 44px; max-width: 640px; }
.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--c-green);
  margin-bottom: 22px;
}
.hero__label::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--c-green);
}
.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--c-green);
}
.hero__lead {
  color: var(--c-muted);
  font-size: 14.5px;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__actions .btn--primary { min-width: 200px; }
.hero__actions .btn--ghost { background: rgba(255, 255, 255, .85); }
.hero__actions .btn--ghost:hover { background: var(--c-ink); color: #fff; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 2px 18px 18px;
}
.hero__stat {
  padding: 18px 4px 0;
  text-align: left;
}
.hero__stat + .hero__stat {
  border-left: 1px solid var(--c-line);
  padding-left: 16px;
}
.hero__stat-num {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1.4;
  letter-spacing: .02em;
}
.hero__stat-num small { font-size: 11px; font-weight: 500; }
.hero__stat-label {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: .06em;
}

/* ==========================================================
   Features — 枠なし・罫線区切り
   ========================================================== */
.features {
  display: grid;
  grid-template-columns: 1fr;
}
.feature-card {
  border-top: 1px solid var(--c-line);
  padding: 28px 0;
}
.features .feature-card:last-child { border-bottom: 1px solid var(--c-line); }
.feature-card__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-green);
  margin-bottom: 10px;
}
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card__text { font-size: 14px; color: var(--c-muted); margin: 0; }

/* ==========================================================
   About band（想い × 写真）
   ========================================================== */
.about-band__grid { display: grid; gap: 36px; align-items: center; }
.about-band__photo { overflow: hidden; border-radius: var(--radius); }
.about-band__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.about-band__copy .section__label { margin-bottom: 14px; }
.about-band__title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-band__text { font-size: 14px; color: var(--c-muted); margin-bottom: 26px; }

/* ==========================================================
   Works
   ========================================================== */
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.work-card { background: transparent; }
.work-card:hover { opacity: 1; }
.work-card__thumb {
  aspect-ratio: 16 / 10;
  background: var(--c-bg-soft);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.work-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-card:hover .work-card__thumb img { transform: scale(1.03); }
.work-card__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .12em;
}
.work-card__body { padding: 14px 2px 0; }
.work-card__genre {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-green);
  margin-bottom: 4px;
}
.work-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--c-ink);
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  justify-content: center;
  margin-bottom: 40px;
}
.works-filter a {
  font-size: 13px;
  padding: 7px 18px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  color: var(--c-muted);
}
.works-filter a.is-active {
  border-color: var(--c-ink);
  color: var(--c-ink);
  font-weight: 500;
}

/* Works single */
.work-detail__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  margin-bottom: 32px;
}
.work-detail__meta {
  border-top: 1px solid var(--c-line);
  margin-bottom: 36px;
}
.work-detail__meta dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0;
  margin: 0;
  font-size: 14px;
}
.work-detail__meta dt {
  color: var(--c-muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--c-line);
}
.work-detail__meta dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-line);
  word-break: break-all;
}
.work-detail__point-title {
  font-size: 19px;
  padding-left: 14px;
  border-left: 3px solid var(--c-green);
  margin: 44px 0 20px;
  line-height: 1.5;
}

/* ==========================================================
   Flow（制作の流れ）
   ========================================================== */
.flow { max-width: 720px; margin: 0 auto; }
.flow-step {
  position: relative;
  padding: 0 0 36px 56px;
}
.flow-step::before {
  content: "";
  position: absolute;
  left: 17px; top: 38px; bottom: 0;
  width: 1px;
  background: var(--c-line);
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step:last-child::before { display: none; }
.flow-step__num {
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  background: #fff;
  letter-spacing: .04em;
}
.flow-step__title {
  font-size: 16.5px;
  font-weight: 700;
  padding-top: 4px;
  margin-bottom: 6px;
}
.flow-step__text { font-size: 14px; color: var(--c-muted); margin: 0; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--c-line); }
.faq .faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.faq-item__q {
  display: flex;
  gap: 14px;
  align-items: baseline;
  list-style: none;
  cursor: pointer;
  padding: 22px 2px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.8;
  transition: color .2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--c-green); }
.faq-item__q::before {
  content: "Q.";
  color: var(--c-green);
  font-weight: 700;
  flex: 0 0 auto;
}
.faq-item__q::after {
  content: "＋";
  margin-left: auto;
  padding-left: 14px;
  color: var(--c-green);
  font-weight: 500;
  flex: 0 0 auto;
}
.faq-item[open] > .faq-item__q::after { content: "－"; }
.faq-item__a {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  padding: 0 2px 24px;
}
.faq-item__a::before {
  content: "A.";
  color: var(--c-ink);
  font-weight: 700;
  flex: 0 0 auto;
}

/* ==========================================================
   Pricing
   ========================================================== */
.price-hero {
  text-align: center;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 40px 24px 36px;
  margin-bottom: 16px;
  background: #fff;
}
.price-hero__label { font-size: 13px; font-weight: 500; color: var(--c-muted); margin-bottom: 8px; letter-spacing: .1em; }
.price-hero__num {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-green);
  letter-spacing: .02em;
}
.price-hero__num small { font-size: 22px; margin-left: 4px; }
.price-hero__note { font-size: 13px; color: var(--c-muted); margin: 10px 0 0; }

.price-maint {
  text-align: center;
  font-size: 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-bg-soft);
  padding: 18px 20px;
  margin-bottom: 56px;
}
.price-maint strong { font-size: 18px; font-weight: 700; color: var(--c-green); letter-spacing: .04em; }

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.plan-card__head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--c-line);
}
.plan-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.plan-card__name { font-size: 20px; font-weight: 700; margin: 0; color: var(--c-ink); }
.plan-card__body { padding: 22px 26px 28px; }
.plan-card__for {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.9;
}
.plan-card__list { list-style: none; padding: 0; margin: 0 0 16px; }
.plan-card__list li {
  position: relative;
  padding: 10px 0 10px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
}
.plan-card__list li:last-child { border-bottom: 0; }
.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 21px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-green);
}
.plan-card__note {
  font-size: 13px;
  font-weight: 700;
  color: #C0392B;
  border-top: 1px solid var(--c-line);
  padding: 14px 0 0;
  margin: 0;
}
.plan-card__price {
  font-size: 27px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: .02em;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.plan-card__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  margin-left: 2px;
}
.plan-card--featured { border: 2px solid var(--c-green); }
.plan-card--featured .plan-card__price { color: var(--c-green); }
.price-table .is-caution { color: #C0392B; font-weight: 700; }

/* お問い合わせ — LINE案内 */
.contact-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin-bottom: 40px;
  text-align: center;
}
.contact-line__qr {
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
}
.contact-line__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.contact-line__text {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0 0 16px;
}
.contact-form-lead {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .contact-line {
    flex-direction: row;
    text-align: left;
    padding: 28px 32px;
  }
}
.price-table-wrap { overflow-x: auto; margin-bottom: 16px; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  min-width: 560px;
}
.price-table th, .price-table td {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  text-align: center;
  vertical-align: middle;
}
.price-table thead th {
  background: var(--c-ink);
  color: #fff;
  font-weight: 500;
  letter-spacing: .06em;
  border-color: var(--c-ink);
}
.price-table thead th:first-child { background: transparent; border: 1px solid var(--c-line); border-bottom-color: var(--c-ink); }
.price-table tbody th {
  background: var(--c-bg-soft);
  font-weight: 500;
  text-align: left;
  width: 34%;
}
.price-table .is-strong { color: var(--c-green); font-weight: 700; }

/* ==========================================================
   Profile
   ========================================================== */
.profile-card {
  border-top: 1px solid var(--c-line);
  padding: 36px 0 8px;
  margin-bottom: 56px;
}
.profile-card__name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2px;
}
.profile-card__name-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--c-green);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.profile-card dl {
  display: grid;
  grid-template-columns: 84px 1fr;
  margin: 24px 0 0;
  font-size: 14px;
}
.profile-card dt {
  color: var(--c-muted);
  padding: 12px 0;
  border-top: 1px solid var(--c-line);
}
.profile-card dd {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--c-line);
}

.founding {
  background: var(--c-bg-soft);
  color: var(--c-ink);
  border-radius: var(--radius);
  padding: 48px 28px;
}
.founding__title {
  color: var(--c-ink);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  margin-bottom: 8px;
}
.founding__title::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--c-green);
  margin: 20px auto 0;
}
.founding__text {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 2.4;
  margin-top: 24px;
}
.founding__text p { margin-bottom: 1.6em; }
.founding__text p:last-child { margin-bottom: 0; }

/* ==========================================================
   CTA band
   ========================================================== */
.cta-band {
  background: var(--c-green);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-band__title { color: #fff; font-size: 23px; font-weight: 700; margin-bottom: 10px; }
.cta-band__text { font-size: 13.5px; color: rgba(255, 255, 255, .85); margin-bottom: 28px; }

/* ==========================================================
   Blog / archive
   ========================================================== */
.post-list { display: grid; }
.post-item {
  border-top: 1px solid var(--c-line);
  padding: 24px 2px;
}
.post-list .post-item:last-child { border-bottom: 1px solid var(--c-line); }
.post-item__date {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-green);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 4px;
}
.post-item__title { font-size: 16px; margin: 0 0 6px; }
.post-item__title a { color: var(--c-ink); }
.post-item__excerpt { font-size: 13.5px; color: var(--c-muted); margin: 0; }

.entry-header { margin-bottom: 32px; }
.entry-title { font-size: 25px; }
.entry-meta { font-size: 13px; font-weight: 500; color: var(--c-green); letter-spacing: .08em; }
.entry-content { font-size: 15px; }
.entry-content h2 {
  font-size: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--c-green);
  margin: 44px 0 20px;
  line-height: 1.6;
}
.entry-content h3 { font-size: 17px; margin: 36px 0 14px; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
  margin: 24px 0;
  padding: 4px 20px;
  border-left: 3px solid var(--c-line);
  color: var(--c-muted);
}

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 8px;
  border-radius: var(--radius-s);
  border: 1px solid var(--c-line);
  background: #fff;
  font-size: 13px;
  color: var(--c-ink);
}
.pagination .page-numbers.current {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}

/* ==========================================================
   Contact form (Contact Form 7)
   ========================================================== */
.contact-note {
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 36px;
}
.wpcf7 form { padding: 0; }
.wpcf7 label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 22px;
}
.wpcf7 .req {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #B0402E;
  border: 1px solid #B0402E;
  border-radius: 2px;
  padding: 0 6px;
  margin-left: 8px;
  vertical-align: 1px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid #C9D2CD;
  border-radius: var(--radius-s);
  outline: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 2px rgba(30, 122, 82, .12);
}
.wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .1em;
  color: #fff;
  background: var(--c-green);
  border: 0;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background .2s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--c-green-deep); }
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--c-green);
  color: var(--c-green);
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  padding: 52px 0 32px;
  font-size: 13px;
}
.site-footer__brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.site-footer__tag { font-size: 12px; margin-bottom: 28px; }
.site-footer__nav ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.site-footer__nav a { color: var(--c-muted); }
.site-footer__nav a:hover { color: var(--c-green); }
.site-footer__copy {
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
  font-size: 11px;
  letter-spacing: .08em;
}

/* ==========================================================
   Page header (lower pages)
   ========================================================== */
.page-hero {
  border-bottom: 1px solid var(--c-line);
  padding: 44px 0;
}
.page-hero__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero__title { color: var(--c-ink); font-size: 26px; font-weight: 700; margin: 0; }

/* ==========================================================
   Desktop
   ========================================================== */
@media (min-width: 768px) {
  .section { padding: 100px 0; }
  .section__title { font-size: 30px; }
  .section__head--center { text-align: center; }

  .site-header__inner { min-height: 72px; }
  .site-brand { font-size: 21px; }
  .site-brand__tag { display: inline; }
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
  }
  .site-nav li a {
    border: 0;
    font-size: 13.5px;
    padding: 8px 14px;
  }
  .site-nav .nav-cta a {
    margin: 0 0 0 12px;
    padding: 10px 26px;
  }

  .hero { padding: 124px 0 132px; }
  .hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 44%, rgba(255,255,255,.30) 100%);
  }
  .hero__title { font-size: 42px; }
  .hero__lead { font-size: 15px; }
  .hero__stat { padding-top: 20px; }

  .features { grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
  .feature-card { padding: 32px 0 8px; }
  .features .feature-card:last-child { border-bottom: 0; }

  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .works-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .about-band__grid { grid-template-columns: 1fr 1.1fr; gap: 72px; }
  .about-band__title { font-size: 28px; }

  .price-hero { padding: 52px; }
  .price-hero__num { font-size: 64px; }

  .profile-card { display: flex; gap: 56px; padding: 44px 0 12px; }
  .profile-card__intro { flex: 0 0 240px; }
  .profile-card dl { flex: 1; margin-top: 0; grid-template-columns: 100px 1fr; align-content: start; }
  .founding { padding: 72px 64px; }
  .founding__text { max-width: 620px; margin: 28px auto 0; font-size: 15px; }

  .work-detail__meta dl { grid-template-columns: 130px 1fr; }
  .cta-band { padding: 88px 0; }
  .cta-band__title { font-size: 28px; }
  .page-hero { padding: 56px 0; }
  .page-hero__title { font-size: 30px; }
  .entry-title { font-size: 30px; }
}
