/*
Theme Name: モッカツリーサービス
Theme URI: https://example.com/
Author: Mokka Tree Service
Description: 伐採・特殊伐採専門業者「モッカツリーサービス」のオリジナルWordPressテーマです。
Version: 1.0.0
Text Domain: mokka-tree-service
*/

/* =========================================
   Variables
========================================= */
:root {
	--color-main: #003753;
	--color-main-light: #0d5a82;
	--color-white: #ffffff;
	--color-bg-light: #f4f7f8;
	--color-accent: #f0a000;
	--color-text: #2b2b2b;
	--color-border: #dde4e7;
	--font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
	--max-width: 1140px;
}

/* =========================================
   Reset / Base
========================================= */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--color-text);
	line-height: 1.8;
	font-size: 16px;
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--color-main);
	text-decoration: none;
	transition: opacity .2s ease;
}

a:hover {
	opacity: .7;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	line-height: 1.4;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
}

/* =========================================
   Buttons
========================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
}

.btn-primary {
	background: var(--color-accent);
	color: var(--color-white);
	box-shadow: 0 6px 16px rgba(240, 160, 0, .35);
}

.btn-primary:hover {
	background: #d88f00;
	opacity: 1;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn-outline:hover {
	background: var(--color-white);
	color: var(--color-main);
	opacity: 1;
}

.btn-secondary {
	background: var(--color-main);
	color: var(--color-white);
}

.btn-secondary:hover {
	background: var(--color-main-light);
	opacity: 1;
}

/* =========================================
   Header
========================================= */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--color-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 12px 20px;
	gap: 20px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-branding img {
	max-height: 56px;
	width: auto;
}

.site-branding .site-logo-img {
	max-height: 64px;
	width: auto;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header-tel {
	text-align: right;
}

.header-tel .tel-label {
	display: block;
	font-size: 12px;
	color: var(--color-main);
	font-weight: 700;
}

.header-tel a {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-main);
	letter-spacing: 1px;
}

.header-tel .tel-hours {
	display: block;
	font-size: 11px;
	color: #777;
}

/* Navigation */
.main-navigation {
	border-top: 1px solid var(--color-border);
	background: var(--color-main);
}

.nav-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: var(--max-width);
	margin: 0 auto;
}

.nav-menu li a {
	display: block;
	padding: 14px 22px;
	color: var(--color-white);
	font-weight: 700;
	font-size: 15px;
	white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
	opacity: 1;
	background: var(--color-main-light);
}

.menu-toggle {
	display: none;
	background: var(--color-main);
	color: var(--color-white);
	border: none;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 22px;
	cursor: pointer;
}

.nav-tel {
	display: none;
}

/* =========================================
   Hero
========================================= */
.hero {
	position: relative;
	min-height: 540px;
	display: flex;
	align-items: center;
	background-color: var(--color-main);
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0,55,83,.72) 0%, rgba(0,55,83,.4) 42%, rgba(0,55,83,.05) 75%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 70px 20px;
	width: 100%;
}

.hero-content .catch {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--color-accent);
	margin-bottom: 16px;
	display: inline-block;
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: 4px;
}

.hero-content h1 {
	font-size: 44px;
	margin-bottom: 24px;
	text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-content h1 small {
	display: block;
	font-size: 20px;
	font-weight: 400;
	margin-top: 12px;
}

.hero-content .lead {
	font-size: 17px;
	max-width: 560px;
	margin-bottom: 32px;
	text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* =========================================
   Page Header (sub pages)
========================================= */
.page-header-banner {
	position: relative;
	background: var(--color-main);
	color: var(--color-white);
	padding: 90px 20px 50px;
	text-align: center;
	background-size: cover;
	background-position: center;
}

.page-header-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 55, 83, .65);
}

.page-header-banner .inner {
	position: relative;
	z-index: 2;
}

.page-header-banner h1 {
	font-size: 34px;
	letter-spacing: 2px;
}

.page-header-banner .en {
	display: block;
	font-size: 13px;
	letter-spacing: 4px;
	color: var(--color-accent);
	margin-bottom: 10px;
	font-weight: 700;
}

.breadcrumb {
	font-size: 13px;
	margin-top: 14px;
	color: rgba(255,255,255,.85);
}

.breadcrumb a {
	color: var(--color-white);
	text-decoration: underline;
}

/* =========================================
   Section common
========================================= */
.section {
	padding: 80px 0;
}

.section-bg {
	background: var(--color-bg-light);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title .en {
	display: block;
	font-size: 13px;
	letter-spacing: 4px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 10px;
}

.section-title h2 {
	font-size: 30px;
	color: var(--color-main);
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--color-accent);
	border-radius: 2px;
}

.section-title p {
	margin-top: 18px;
	color: #555;
}

/* =========================================
   Top: Strengths / Reasons
========================================= */
.reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.reason-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.reason-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px 22px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}

.reason-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 24px rgba(0,55,83,.12);
}

.reason-card .num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-main);
	color: var(--color-white);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
}

.reason-card h3 {
	font-size: 17px;
	color: var(--color-main);
	margin-bottom: 10px;
}

.reason-card p {
	font-size: 14px;
	color: #555;
	margin-bottom: 0;
}

.reason-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* =========================================
   Service intro (top page)
========================================= */
.service-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.service-intro img {
	border-radius: 12px;
}

.service-intro .text h3 {
	font-size: 24px;
	color: var(--color-main);
	margin-bottom: 16px;
}

.service-intro .text ul {
	margin: 20px 0;
}

.service-intro .text ul li {
	padding-left: 28px;
	position: relative;
	margin-bottom: 10px;
}

.service-intro .text ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-white);
	background: var(--color-main);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =========================================
   Works (施工事例 Before/After)
========================================= */

/* ---- カードグリッド ---- */
.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.works-card {
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(0,0,0,.08);
	transition: transform .22s ease, box-shadow .22s ease;
}

.works-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

.works-card-link {
	display: block;
	text-decoration: none;
	color: var(--color-text);
}

.works-badge {
	display: inline-block;
	background: var(--color-main);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 4px;
	margin: 14px 14px 0;
	letter-spacing: .5px;
}

/* ---- Before / After 横並び ---- */
.before-after-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
}

.ba-col {
	flex: 1;
	min-width: 0;
}

.ba-col img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.ba-label {
	display: block;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 3px 0;
	border-radius: 4px 4px 0 0;
	margin-bottom: 4px;
}

.ba-before {
	background: #e8eff4;
	color: #555;
}

.ba-after {
	background: var(--color-main);
	color: var(--color-white);
}

.ba-arrow {
	font-size: 22px;
	color: var(--color-accent);
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1;
}

/* ---- カード本文 ---- */
.works-card-body {
	padding: 12px 16px 18px;
}

.works-card-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 6px;
	line-height: 1.5;
}

.works-area {
	font-size: 12px;
	color: #777;
	margin: 0 0 8px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.works-icon {
	font-size: 13px;
}

.works-more {
	font-size: 13px;
	color: var(--color-main);
	font-weight: 700;
}

/* ---- ページネーション ---- */
.works-pagination {
	margin-top: 48px;
	text-align: center;
}

.works-empty {
	text-align: center;
	color: #999;
	padding: 60px 0;
}

/* ---- 詳細ページ ---- */
.works-detail-header {
	margin-bottom: 28px;
}

.works-detail-title {
	font-size: 28px;
	font-weight: 700;
	margin: 10px 0 14px;
	line-height: 1.45;
}

.works-info-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 32px;
	font-size: 14px;
}

.works-info-table th {
	background: var(--color-main);
	color: var(--color-white);
	text-align: left;
	padding: 10px 16px;
	font-weight: 500;
	width: 30%;
	font-size: 13px;
}

.works-info-table td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-white);
}

.works-info-table tr:last-child td {
	border-bottom: none;
}

.works-info-table tr:nth-child(even) td {
	background: var(--color-bg-light);
}

.works-detail-ba {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}

.works-detail-col {
	flex: 1;
	min-width: 0;
}

.works-detail-col .ba-label {
	border-radius: 6px 6px 0 0;
	font-size: 13px;
	padding: 6px 0;
}

.works-detail-col img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 0 0 10px 10px;
	display: block;
}

.ba-arrow-lg {
	font-size: 36px;
	color: var(--color-accent);
	font-weight: 700;
	flex-shrink: 0;
	align-self: center;
	line-height: 1;
}

.works-point-box {
	background: var(--color-bg-light);
	border-left: 4px solid var(--color-main);
	padding: 24px 28px;
	border-radius: 0 8px 8px 0;
	margin-bottom: 36px;
}

.works-point-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-main);
	margin: 0 0 12px;
}

.works-content {
	margin-bottom: 40px;
	line-height: 1.95;
}

.works-nav {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

/* ---- ページヘッダー ---- */
.page-hero {
	background: var(--color-main);
	color: var(--color-white);
	padding: 60px 0 50px;
	text-align: center;
}

.page-hero .en {
	display: block;
	font-size: 12px;
	letter-spacing: 3px;
	opacity: .7;
	margin-bottom: 8px;
}

.page-hero h1 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 12px;
}

.page-hero p {
	font-size: 15px;
	opacity: .85;
	margin: 0;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
	.works-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.works-detail-ba {
		flex-direction: column;
	}
	.works-detail-col img {
		height: 240px;
	}
	.ba-arrow-lg {
		transform: rotate(90deg);
		align-self: auto;
	}
}

@media (max-width: 680px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
	.works-detail-col img {
		height: 200px;
	}
	.works-detail-title {
		font-size: 22px;
	}
}

/* =========================================
   Gallery
========================================= */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.gallery-grid a,
.gallery-grid .gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 1 / 1;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.gallery-grid a:hover img {
	transform: scale(1.08);
}

/* =========================================
   CTA Section
========================================= */
.cta {
	background: var(--color-main);
	color: var(--color-white);
	text-align: center;
	padding: 60px 20px;
}

.cta h2 {
	font-size: 28px;
	margin-bottom: 16px;
}

.cta p {
	margin-bottom: 28px;
	color: rgba(255,255,255,.85);
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cta .tel-big {
	font-size: 34px;
	font-weight: 700;
	color: var(--color-white);
}

.cta .tel-big::before {
	content: "\1F4DE  ";
}

/* =========================================
   Flow steps
========================================= */
.flow-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: flow;
}

.flow-item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	position: relative;
}

.flow-item::before {
	counter-increment: flow;
	content: "STEP " counter(flow);
	display: inline-block;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 14px;
}

.flow-item h3 {
	font-size: 16px;
	color: var(--color-main);
	margin-bottom: 8px;
}

.flow-item p {
	font-size: 14px;
	color: #555;
	margin-bottom: 0;
}

/* =========================================
   Tables (pricing / company info)
========================================= */
.table-wrap {
	overflow-x: auto;
}

table.price-table,
table.company-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
}

table.price-table th,
table.price-table td,
table.company-table th,
table.company-table td {
	border: 1px solid var(--color-border);
	padding: 16px 18px;
	text-align: left;
	font-size: 15px;
}

table.price-table thead th {
	background: var(--color-main);
	color: var(--color-white);
	font-weight: 700;
}

table.price-table tbody tr:nth-child(even) {
	background: var(--color-bg-light);
}

table.company-table th {
	background: var(--color-bg-light);
	color: var(--color-main);
	width: 200px;
	font-weight: 700;
}

.price-note {
	margin-top: 20px;
	font-size: 14px;
	color: #666;
	background: var(--color-bg-light);
	border-left: 4px solid var(--color-accent);
	padding: 16px 20px;
	border-radius: 0 8px 8px 0;
}

/* =========================================
   Content blocks (generic page)
========================================= */
.entry-content {
	font-size: 16px;
}

.entry-content h2 {
	font-size: 26px;
	color: var(--color-main);
	margin: 40px 0 20px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--color-main);
}

.entry-content h3 {
	font-size: 20px;
	color: var(--color-main);
	margin: 28px 0 14px;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin: 30px 0;
}

.two-col.reverse {
	direction: rtl;
}

.two-col.reverse > * {
	direction: ltr;
}

.two-col img {
	border-radius: 12px;
}

.greeting-catch {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-main);
	border-left: 4px solid var(--color-accent);
	padding-left: 14px;
	margin-top: 24px;
}

/* =========================================
   Map
========================================= */
.map-wrap iframe {
	width: 100%;
	height: 360px;
	border: 0;
	border-radius: 12px;
}

/* =========================================
   Contact Form
========================================= */
.contact-form {
	max-width: 720px;
	margin: 0 auto;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 40px;
}

.form-row {
	margin-bottom: 22px;
}

.form-row label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--color-main);
}

.form-row label .required {
	color: #d6336c;
	font-size: 12px;
	margin-left: 8px;
	border: 1px solid #d6336c;
	border-radius: 4px;
	padding: 1px 6px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	font-size: 15px;
	font-family: var(--font-base);
}

.form-row textarea {
	min-height: 160px;
	resize: vertical;
}

.form-submit {
	text-align: center;
	margin-top: 30px;
}

.form-submit button {
	border: none;
}

.form-message {
	max-width: 720px;
	margin: 0 auto 24px;
	padding: 16px 20px;
	border-radius: 8px;
	font-weight: 700;
	text-align: center;
}

.form-message.success {
	background: #e6f6ee;
	color: #1a7a4c;
	border: 1px solid #b6e6cb;
}

.form-message.error {
	background: #fdecec;
	color: #c0392b;
	border: 1px solid #f5c2c0;
}

.contact-info-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 50px;
}

.contact-info-item {
	background: var(--color-bg-light);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
}

.contact-info-item h3 {
	color: var(--color-main);
	font-size: 16px;
	margin-bottom: 10px;
}

.contact-info-item .big {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-main);
}

/* =========================================
   Footer
========================================= */
.site-footer {
	background: var(--color-main);
	color: rgba(255,255,255,.9);
	padding-top: 60px;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px 40px;
}

.footer-brand img {
	max-height: 60px;
	width: auto;
	margin-bottom: 16px;
	filter: brightness(0) invert(1);
}

.footer-brand p {
	font-size: 14px;
	color: rgba(255,255,255,.7);
}

.footer-col h3 {
	font-size: 15px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,.2);
	padding-bottom: 10px;
}

.footer-col ul li {
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-col ul li a {
	color: rgba(255,255,255,.85);
}

.footer-col address {
	font-size: 14px;
	font-style: normal;
	line-height: 1.9;
	color: rgba(255,255,255,.85);
}

.footer-col address a {
	color: rgba(255,255,255,.85);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.15);
	text-align: center;
	padding: 18px 20px;
	font-size: 13px;
	color: rgba(255,255,255,.6);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 900px) {
	.reason-grid,
	.flow-list,
	.reason-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-intro,
	.two-col,
	.two-col.reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}

	.two-col .img-col {
		order: -1;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-info-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.header-right {
		gap: 12px;
	}

	.header-tel,
	.header-right .btn.btn-secondary {
		display: none;
	}

	.main-navigation {
		display: none;
		width: 100%;
	}

	.main-navigation.is-open {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
	}

	.nav-menu li a {
		padding: 14px 20px;
		border-bottom: 1px solid rgba(255,255,255,.1);
	}

	.menu-toggle {
		display: inline-flex;
	}

	.nav-tel {
		display: block;
		text-align: center;
		padding: 16px 20px;
		color: var(--color-white);
		border-top: 1px solid rgba(255,255,255,.15);
	}

	.nav-tel-label {
		display: block;
		font-size: 12px;
		opacity: .85;
	}

	.nav-tel-number {
		display: block;
		font-size: 22px;
		font-weight: 700;
		letter-spacing: 1px;
		margin-top: 4px;
	}

	.nav-tel-hours {
		display: block;
		font-size: 11px;
		opacity: .7;
		margin-top: 4px;
	}

	.hero-content h1 {
		font-size: 30px;
	}

	.hero {
		min-height: 460px;
	}

	.hero-content {
		padding: 60px 20px;
	}

	.reason-grid,
	.flow-list,
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reason-grid-3 {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 50px 0;
	}

	.contact-form {
		padding: 24px;
	}

	table.company-table th {
		width: 110px;
	}
}
