/* ===================================================
   AOYAMA Tax & Accounting — style.css
   =================================================== */

/* --- CSS Variables --- */
:root {
  --color-navy: #1B365D;
  --color-navy-dark: #122443;
  --color-navy-light: #2A4A7A;
  --color-gold: #B8860B;
  --color-gold-light: #D4A843;
  --color-white: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6F8;
  --color-bg-navy: #1B365D;
  --color-text: #2C2C2C;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #D5D8DC;
  --color-border-light: #E8EAED;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --header-height: 72px;
  --container-width: 1080px;
  --radius-btn: 6px;
  --radius-badge: 3px;
  --radius-none: 0px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- Utility --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--navy {
  background: var(--color-bg-navy);
  color: var(--color-white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-en {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}
.section--navy .section-header .section-en {
  color: var(--color-gold-light);
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
}
.section--navy .section-header h2 {
  color: var(--color-white);
}
.section-header .section-lead {
  font-size: 15px;
  color: var(--color-text-light);
  margin-top: 12px;
  line-height: 1.7;
}

/* --- Placeholder Images --- */
.placeholder-img {
  width: 100%;
  background: #E8EBF0;
  border: 2px dashed #B0B8C4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #6B7B8D;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}
.placeholder-img svg {
  opacity: 0.5;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.site-logo .logo-sub {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: var(--color-navy);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.2s;
}
.nav-desktop a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.nav-cta .btn-tel {
  font-size: 14px;
  color: var(--color-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-cta .btn-tel svg {
  width: 16px;
  height: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--color-gold-light);
}
.btn-primary--navy {
  background: var(--color-navy);
}
.btn-primary--navy:hover {
  background: var(--color-navy-light);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-btn);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-outline--white {
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline--white:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 54, 93, 0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile a {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 500;
  padding: 8px 0;
}
.nav-mobile .nav-mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.nav-mobile .btn-tel-mobile {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile .btn-tel-mobile svg {
  width: 20px;
  height: 20px;
}

/* --- Hero --- */
.hero {
  background: var(--color-bg-navy);
  color: var(--color-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 0;
  max-width: 540px;
  margin-left: auto;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero-content .hero-sub {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-image .placeholder-img {
  height: 100%;
  min-height: 520px;
  background: #243F66;
  border: 2px dashed #3D5A80;
  color: #7B9FCC;
}

/* --- Strengths --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strength-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
}
.strength-card .strength-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}
.strength-card .strength-icon svg {
  width: 28px;
  height: 28px;
}
.strength-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.strength-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Service Cards --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: var(--color-gold);
}
.service-card .service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  border-radius: var(--radius-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.service-card .service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.service-card .service-link {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --- Reasons --- */
.reasons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason-item {
  text-align: center;
}
.reason-item .reason-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.reason-item .reason-unit {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.reason-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}
.reason-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* --- News --- */
.news-list {
  max-width: 720px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.news-item:first-child {
  border-top: 1px solid var(--color-border-light);
}
.news-date {
  font-size: 13px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  width: 100px;
}
.news-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-navy);
  padding: 2px 8px;
  border-radius: var(--radius-badge);
  flex-shrink: 0;
}
.news-title {
  font-size: 14px;
  color: var(--color-text);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  padding: 64px 0;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 28px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-gold-light);
  padding: 4px 16px;
  border-radius: var(--radius-badge);
  margin-bottom: 16px;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-info .footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-info p {
  font-size: 13px;
  line-height: 1.8;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

/* --- Mobile Bottom Bar --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  height: 60px;
}
.mobile-bottom-bar .bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.mobile-bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}
.mobile-bottom-bar .bar-tel {
  color: var(--color-navy);
  background: var(--color-white);
}
.mobile-bottom-bar .bar-tel svg {
  width: 20px;
  height: 20px;
}
.mobile-bottom-bar .bar-contact {
  color: var(--color-white);
  background: var(--color-gold);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--color-navy);
}
.breadcrumb span {
  margin: 0 6px;
}

/* --- Page Header --- */
.page-header {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 48px 0;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.page-header .page-header-en {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--color-gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== SERVICE PAGE ===== */
.service-detail {
  padding: 60px 0;
}
.service-detail + .service-detail {
  padding-top: 0;
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-detail-inner.reverse {
  direction: rtl;
}
.service-detail-inner.reverse > * {
  direction: ltr;
}
.service-detail-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}
.service-detail-content p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-content ul {
  list-style: none;
  padding: 0;
}
.service-detail-content ul li {
  font-size: 14px;
  color: var(--color-text);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--color-border-light);
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}
.service-detail .placeholder-img {
  height: 320px;
}
.service-detail-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

/* ===== PRICE PAGE ===== */
.price-section {
  padding: 48px 0;
}
.price-section h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--color-gold);
}
.price-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  text-align: center;
  overflow: hidden;
}
.price-card.recommended {
  border-color: var(--color-gold);
  position: relative;
}
.price-card .price-card-badge {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 0;
  text-align: center;
}
.price-card-head {
  padding: 24px 20px 16px;
  background: var(--color-bg-alt);
}
.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.price-card .price-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.price-card .price-amount small {
  font-size: 14px;
  font-weight: 400;
}
.price-card .price-tax {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.price-card-body {
  padding: 20px;
}
.price-card-body ul {
  text-align: left;
}
.price-card-body ul li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--color-border-light);
}
.price-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
}
.price-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-navy);
  width: 40%;
}
.price-table td {
  color: var(--color-text);
}
.price-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}
.about-profile .placeholder-img {
  height: 360px;
}
.about-profile-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-profile-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.about-profile-content .profile-name-en {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.about-profile-content .profile-title {
  font-size: 14px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-profile-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-profile-content .profile-career {
  margin-top: 24px;
}
.about-profile-content .profile-career h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.about-profile-content .profile-career ul li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  color: var(--color-text-light);
}
.about-profile-content .profile-career ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.about-table th,
.about-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
}
.about-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-navy);
  width: 200px;
}
.about-access h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--color-gold);
}
.about-access .access-info {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.8;
}
.about-access .map-placeholder {
  width: 100%;
  height: 300px;
  background: #E8EBF0;
  border: 2px dashed #B0B8C4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7B8D;
  font-size: 14px;
}

/* ===== COLUMN PAGE ===== */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.column-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: border-color 0.2s;
}
.column-card:hover {
  border-color: var(--color-gold);
}
.column-card .placeholder-img {
  height: 180px;
}
.column-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.column-card-body {
  padding: 20px;
}
.column-card .column-date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.column-card .column-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-navy);
  padding: 2px 8px;
  border-radius: var(--radius-badge);
  margin-left: 8px;
}
.column-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 8px;
}
.column-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--color-white);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.form-group label .required {
  font-size: 11px;
  color: var(--color-white);
  background: #CC3333;
  padding: 1px 6px;
  border-radius: var(--radius-badge);
  margin-left: 8px;
  font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-navy);
}
.form-group textarea {
  height: 160px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-submit .btn-primary {
  padding: 14px 48px;
  font-size: 16px;
}
.contact-sidebar {
  background: var(--color-bg-alt);
  padding: 32px 24px;
}
.contact-sidebar .sidebar-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-gold);
  padding: 6px 20px;
  border-radius: var(--radius-badge);
  margin-bottom: 20px;
}
.contact-sidebar h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.contact-sidebar .sidebar-tel {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-sidebar .sidebar-tel svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}
.contact-sidebar .sidebar-hours {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  body {
    padding-bottom: 60px;
  }
  .hamburger {
    display: flex;
  }
  .nav-desktop,
  .nav-cta {
    display: none;
  }
  .mobile-bottom-bar {
    display: block;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 40px 20px;
    max-width: none;
    margin: 0;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }
  .hero-image .placeholder-img {
    min-height: 240px;
  }
  .hero-image img {
    min-height: 240px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header h2 {
    font-size: 22px;
  }

  /* Strengths */
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strength-card {
    padding: 28px 20px;
  }

  /* Service cards */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Reasons */
  .reasons-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* News */
  .news-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .news-date {
    width: auto;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Service detail */
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-detail-inner.reverse {
    direction: ltr;
  }

  /* Price */
  .price-plans {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-profile .placeholder-img {
    height: 280px;
    max-width: 280px;
    margin: 0 auto;
  }
  .about-profile-img {
    height: 280px;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Column */
  .column-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Page header */
  .page-header {
    padding: 32px 0;
  }
  .page-header h1 {
    font-size: 24px;
  }

  /* CTA */
  .cta-section {
    padding: 48px 0;
  }
  .cta-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 22px;
  }
  .price-card .price-amount {
    font-size: 26px;
  }
}
