/*
Theme Name: COOLS Corporate
Theme URI: https://cools-inc.jp/
Author: COOLS Inc.
Description: 株式会社Cools コーポレートサイト用 オリジナルテーマ。住設会社向けの爽やかなティールトーンと信頼感のあるレイアウト。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: cools
*/

/* ============================================
   Corporate redesign — teal primary
   ============================================ */
:root {
  /* Brand — bright, fresh, anchored on #01A3B2 (housing equipment vibe) */
  --teal-900: #0A4A52;   /* deepest only for type emphasis */
  --teal-800: #086977;
  --teal-700: #018A99;
  --teal-600: #019AA9;
  --teal-500: #01A3B2;   /* MAIN — buttons, links, accents */
  --teal-400: #4FC4CF;
  --teal-300: #8FDDE4;
  --teal-200: #BFE9ED;
  --teal-100: #DDF1F4;
  --teal-50:  #F0F9FB;
  --sky:      #E8F4F7;   /* fresh background tint */

  /* Neutrals — softer, warmer */
  --ink-900: #14272A;
  --ink-800: #243A3D;
  --ink-700: #4A5C5F;
  --ink-600: #6B7C7E;
  --ink-500: #94A2A4;
  --ink-400: #B6C0C1;
  --ink-300: #D8DEDF;
  --ink-200: #E9EDED;
  --ink-100: #F4F6F6;
  --paper:   #F8FBFB;
  --white:   #FFFFFF;

  /* Accents — restrained */
  --gold:    #B08A3E;
  --signal:  #D14A3A;

  /* Type */
  --jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Spacing & layout */
  --maxw: 1280px;
  --gutter: 32px;
  --section-y: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--jp);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Utility bar (top, very thin)
   ============================================ */
.utility-bar {
  background: var(--teal-700);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  max-width: var(--maxw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.utility-bar a {
  color: rgba(255,255,255,0.85);
  margin-left: 20px;
  transition: color 0.15s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.utility-bar a:hover { color: var(--teal-400); }
.utility-bar .lang {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 24px;
}
.utility-bar .lang a {
  margin-left: 0;
  color: rgba(255,255,255,0.55);
}
.utility-bar .lang span { opacity: 0.4; }
.utility-bar .lang .active { color: var(--white); font-weight: 500; }

/* ============================================
   Header / Main nav
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
  height: 76px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--maxw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--teal-500);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--en);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink-900);
}
.brand-name .jp {
  font-family: var(--jp);
  font-size: 11px;
  display: block;
  color: var(--ink-600);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 2px;
}
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 70px;
  object-fit: contain;
}
.footer .brand-logo {
  max-width: 240px;
  max-height: 52px;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  position: relative;
  padding: 8px 0;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--teal-500); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.15s ease;
  border-radius: 2px;
}
.cta-button:hover { background: var(--teal-600); }
.cta-button.ghost {
  background: transparent;
  color: var(--teal-500);
  border: 1px solid var(--teal-500);
}
.cta-button.ghost:hover { background: var(--teal-50); }
.cta-button .arrow { font-family: var(--en); transition: transform 0.15s ease; }
.cta-button:hover .arrow { transform: translateX(3px); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--sky) 0%, var(--white) 60%, var(--teal-50) 100%);
  color: var(--ink-900);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,163,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,163,178,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,163,178,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal-500);
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--teal-500);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-700);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.hero .cta-button { background: var(--teal-500); color: var(--white); }
.hero .cta-button:hover { background: var(--teal-600); }
.hero .cta-button.ghost { background: transparent; color: var(--teal-700); border-color: var(--teal-500); }
.hero .cta-button.ghost:hover { background: var(--teal-50); }

/* Hero side panel — KPI snapshot */
.hero-panel {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--teal-100);
  padding: 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(1,163,178,0.08);
}
.hero-panel-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.hero-kpi .num {
  font-family: var(--en);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-kpi .num .unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--teal-500);
  margin-left: 4px;
}
.hero-kpi .label {
  font-size: 12px;
  color: var(--ink-600);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* News ticker under hero */
.news-strip {
  background: var(--white);
  color: var(--ink-700);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--ink-200);
}
.news-strip .container {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 24px;
}
.news-strip .label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  border-right: 1px solid var(--ink-200);
  padding-right: 24px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.news-strip .item {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  flex: 1;
  min-width: 0;
}
.news-strip .item .date {
  font-family: var(--en);
  color: var(--ink-500);
  flex-shrink: 0;
}
.news-strip .item .tag {
  font-size: 11px;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 3px 8px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 1px solid var(--teal-100);
}
.news-strip .item .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink-800);
}
.news-strip a.more {
  flex-shrink: 0;
  color: var(--teal-500);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ============================================
   Section heading pattern
   ============================================ */
.section { padding: var(--section-y) 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--ink-900); color: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-eyebrow {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--teal-500);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal-500);
}
.section-dark .section-eyebrow { color: var(--teal-400); }
.section-dark .section-eyebrow::before { background: var(--teal-400); }

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 16px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-700);
  max-width: 580px;
}
.section-dark .section-desc { color: var(--ink-300); }

/* ============================================
   Business cards (事業内容)
   ============================================ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.business-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.business-card .num {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.business-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.business-card .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.business-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.business-card .en-title {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-500);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.business-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 0;
  flex: 1;
}

/* ============================================
   実績数値 — Stats (light, fresh)
   ============================================ */
.stats-section {
  background: linear-gradient(180deg, var(--sky) 0%, var(--teal-50) 100%);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,163,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,163,178,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-section .section-eyebrow { color: var(--teal-700); }
.stats-section .section-eyebrow::before { background: var(--teal-700); }
.stats-section .section-desc { color: var(--ink-700); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--teal-100);
  border: 1px solid var(--teal-100);
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  padding: 48px 32px;
  position: relative;
}
.stat-card .label-en {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.stat-card .value {
  font-family: var(--en);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-card .value .unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-500);
}
.stat-card .value .plus {
  color: var(--teal-500);
  font-size: 32px;
}
.stat-card .label-jp {
  font-size: 13px;
  color: var(--ink-700);
  margin-top: 16px;
  line-height: 1.7;
}
.stat-note {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 11px;
  line-height: 1.5;
}
.stat-card .corner {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--en);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.1em;
}

/* ============================================
   Company info table (企業概要)
   ============================================ */
.company-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.company-info-table {
  border-top: 1px solid var(--ink-300);
}
.company-info-table .row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-200);
  font-size: 14px;
  line-height: 1.8;
}
.company-info-table .row dt {
  font-weight: 500;
  color: var(--ink-700);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.company-info-table .row dt::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--teal-500);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}
.company-info-table .row dd { color: var(--ink-900); }
.company-info-table .row dd .small {
  font-size: 12px;
  color: var(--ink-600);
  display: block;
  margin-top: 4px;
}

.company-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  overflow: hidden;
}
.company-visual .placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 14px,
      rgba(11,110,110,0.08) 14px,
      rgba(11,110,110,0.08) 15px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal-500);
  letter-spacing: 0.1em;
}
.company-visual .label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  background: var(--white);
  padding: 6px 12px;
}
.company-visual .badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--teal-500);
  color: var(--white);
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.company-visual .badge .yr {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}

/* ============================================
   Recruit section — fresh accent
   ============================================ */
.recruit {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.recruit::before {
  content: "RECRUIT";
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--en);
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  letter-spacing: -0.05em;
  line-height: 1;
}
.recruit-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recruit h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.recruit h2 .accent { color: var(--teal-100); }
.recruit p {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 480px;
}
.recruit-positions {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px;
  backdrop-filter: blur(8px);
}
.recruit-positions-title {
  margin: 0;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.recruit-language-note {
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  line-height: 1.7;
}
.recruit-positions .pos {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  cursor: default;
}
a.pos {
  cursor: pointer;
  transition: background 0.15s ease;
}
.recruit-positions a.pos {
  cursor: pointer;
}
a.pos:hover {
  background: rgba(255,255,255,0.08);
}
.recruit-positions .pos:last-child { border-bottom: none; }
.recruit-positions .pos .num {
  font-family: var(--en);
  font-size: 11px;
  color: var(--teal-100);
  letter-spacing: 0.15em;
  width: 30px;
}
.recruit-positions .pos .info .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.recruit-positions .pos .info .meta {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.55;
}
.recruit-positions .pos .arrow {
  font-family: var(--en);
  font-size: 20px;
  color: var(--white);
  transition: transform 0.2s ease;
}
.recruit-positions a.pos:hover .arrow { transform: translateX(4px); }
.recruit .cta-button { background: var(--white); color: var(--teal-700); }
.recruit .cta-button:hover { background: var(--teal-50); }

/* ============================================
   Footer — light, airy
   ============================================ */
.footer {
  background: var(--paper);
  color: var(--ink-700);
  padding: 80px 0 0;
  border-top: 1px solid var(--ink-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-200);
}
.footer-brand .brand-name { color: var(--ink-900); }
.footer-brand .brand-name .jp { color: var(--ink-600); }
.footer-brand p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-600);
  margin-top: 24px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--ink-700);
}
.footer-col a:hover { color: var(--teal-500); }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.05em;
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ============================================
   Contact page
   ============================================ */
.contact-page {
  background:
    linear-gradient(180deg, var(--teal-50) 0, var(--white) 360px);
}
.contact-container {
  max-width: 1180px;
}
.contact-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.contact-head h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contact-head p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.95;
}
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.contact-aside,
.contact-form-panel {
  background: var(--white);
}
.contact-aside {
  padding: 44px 36px;
}
.contact-aside h2 {
  color: var(--ink-900);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-aside p {
  color: var(--teal-700);
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-aside dl {
  display: grid;
  gap: 24px;
}
.contact-aside dt {
  color: var(--teal-500);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.contact-aside dd {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.75;
}
.contact-form-panel {
  padding: 44px 48px;
}
.wpcf7 form {
  display: grid;
  gap: 22px;
}
.wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 700;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--ink-300);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink-900);
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
  padding: 14px 16px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 163, 178, 0.12);
}
.wpcf7 input[type="submit"] {
  justify-self: start;
  min-width: 180px;
  border: 0;
  border-radius: 2px;
  background: var(--teal-500);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 28px;
  transition: background 0.15s ease;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--teal-600);
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--signal);
  font-size: 12px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--teal-200);
  color: var(--ink-800);
  font-size: 13px;
}

/* ============================================
   Responsive — basic
   ============================================ */
@media (max-width: 1100px) {
  .hero-inner, .recruit-inner, .company-layout { grid-template-columns: 1fr; gap: 48px; }
  .main-nav { gap: 24px; }
  .main-nav a { font-size: 13px; }
}
@media (max-width: 960px) {
  .business-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 30px; }
  .stat-card .value { font-size: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .main-nav { display: none; }
  .utility-bar { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-panel,
  .contact-aside { padding: 32px 24px; }
  .contact-head h1 { font-size: 34px; }
}
