/* =========================================================================
   Ogata Drivers — Theme Stylesheet
   Warm, friendly, nature-themed design inspired by sawagaku-saitama.com.
   Palette: coffee brown + fresh green + amber/orange + cream/paper.
   ========================================================================= */

:root {
	/* Brand — warm earthy */
	--brown:        #422a0a;
	--brown-2:      #3c2a10;
	--brown-soft:   #5a4327;
	--green:        #33b666;
	--green-dark:   #2a8f50;
	--green-deep:   #1f7a41;
	--amber:        #dd8925;
	--orange:       #c04e11;
	--yellow:       #fed935;
	--yellow-soft:  #ffe35e;

	/* Neutrals / paper */
	--cream:    #fffbf4;
	--paper:    #f7f1e1;
	--tan:      #eee4be;
	--mint:     #d7ecdd;
	--line:     #e7ddc6;
	--ink:      #3c2a10;
	--body:     #574a38;
	--muted:    #8a7c62;
	--bg:       #fffbf4;
	--bg-dark:  #422a0a;

	/* Effects */
	--radius:    18px;
	--radius-sm: 12px;
	--radius-lg: 28px;
	--shadow-sm: 0 3px 12px rgba(66, 42, 10, .07);
	--shadow:    0 14px 32px rgba(66, 42, 10, .12);
	--shadow-lg: 0 28px 60px rgba(66, 42, 10, .18);
	--ring:      0 0 0 4px rgba(51, 182, 102, .22);

	/* Type — Times New Roman (classic serif) */
	--font-head: 'Times New Roman', Times, 'YuMincho', '游明朝', 'Hiragino Mincho ProN', serif;
	--font-body: 'Times New Roman', Times, 'YuMincho', '游明朝', 'Hiragino Mincho ProN', serif;

	/* Layout */
	--container: 1180px;
	--gutter: clamp(1rem, 4vw, 2rem);
	--header-h: 122px;

	/* Grass tuft image (bumpy green edge) */
	--grass: #43a95c;
	--grass-dark: #2f8f4c;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--body);
	background-color: var(--bg);
	background-image: radial-gradient(rgba(66,42,10,.035) 1.1px, transparent 1.2px);
	background-size: 22px 22px;
	line-height: 1.7;
	font-size: 17px;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Accessibility ---------- */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--green-deep); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section--alt { background: var(--paper); }
.section--tan { background: var(--tan); }
.section--dark { background: var(--bg-dark); color: #f0e6d2; }
.section--dark .section__title { color: #fff; }

.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__head--light .section__title { color: #fff; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
.section__lead { color: var(--muted); font-size: 1.075rem; }
.section--dark .section__lead { color: #cbb99a; }
.section__foot { text-align: center; margin-top: 2.5rem; }

.eyebrow {
	display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700;
	font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
	color: #fff; background: var(--green); padding: .3rem .9rem; border-radius: 999px; margin-bottom: .9rem;
}
.eyebrow--amber { background: var(--amber); }
.eyebrow--light { background: rgba(255,255,255,.16); color: #fff; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Icons ---------- */
.icon { width: 24px; height: 24px; flex: none; }
.icon--sm { width: 18px; height: 18px; }

/* ---------- Grass edge (reusable) ---------- */
.grass-band {
	position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
	background: linear-gradient(180deg, var(--grass), var(--grass-dark));
	z-index: 1; pointer-events: none;
}
.grass-band::before {
	content: ''; position: absolute; left: 0; right: 0; top: -13px; height: 16px;
	background: radial-gradient(circle at 50% 100%, var(--grass) 0 11px, transparent 12px);
	background-size: 30px 16px; background-repeat: repeat-x;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	font-family: var(--font-head); font-weight: 700; font-size: 1rem;
	padding: .9rem 1.6rem; border-radius: 999px; border: 3px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .62rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 0 var(--green-deep), 0 14px 26px rgba(51,182,102,.3); }
.btn--primary:hover { background: var(--green-dark); color: #fff; box-shadow: 0 6px 0 var(--green-deep), 0 12px 22px rgba(51,182,102,.34); }
.btn--primary:active { transform: translateY(4px); box-shadow: 0 3px 0 var(--green-deep); }

.btn--accent { background: var(--amber); color: #fff; box-shadow: 0 8px 0 #b06d17, 0 14px 26px rgba(221,137,37,.3); }
.btn--accent:hover { background: #cf7d1f; color: #fff; box-shadow: 0 6px 0 #b06d17, 0 12px 22px rgba(221,137,37,.34); }
.btn--accent:active { transform: translateY(4px); box-shadow: 0 3px 0 #b06d17; }

.btn--ghost { background: #fff; color: var(--brown); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-deep); }

.btn--white { background: #fff; color: var(--green-deep); box-shadow: 0 8px 0 rgba(0,0,0,.12); }
.btn--white:hover { color: var(--green-dark); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Badges / pills ---------- */
.badge--pill {
	display: inline-flex; align-items: center; gap: .5rem;
	background: var(--green); color: #fff;
	font-family: var(--font-head); font-weight: 700; font-size: .92rem;
	padding: .55rem 1.15rem; border-radius: 999px; margin-bottom: 1.25rem;
	box-shadow: var(--shadow-sm);
}
.hl { color: var(--orange); font-weight: 800; }
.hl--u { background: linear-gradient(transparent 62%, var(--yellow-soft) 62%); padding: 0 .1em; }

/* ---------- Logo mark (fallback) ---------- */
.logo-mark {
	width: 52px; height: 52px; border-radius: 50%;
	background: conic-gradient(from 210deg, var(--amber), #f6e27a, var(--amber), #b8901f);
	display: grid; place-items: center; position: relative; flex: none;
	box-shadow: inset 0 0 0 3px rgba(255,255,255,.55);
}
.logo-mark__leaf {
	width: 24px; height: 24px;
	background: linear-gradient(90deg, var(--yellow) 0 50%, var(--green) 50% 100%);
	clip-path: path('M12 22C12 22 2 15 2 8C2 4 5 2 7 4C9 5.5 12 7 12 7C12 7 15 5.5 17 4C19 2 22 4 22 8C22 15 12 22 12 22Z');
	-webkit-clip-path: path('M12 22C12 22 2 15 2 8C2 4 5 2 7 4C9 5.5 12 7 12 7C12 7 15 5.5 17 4C19 2 22 4 22 8C22 15 12 22 12 22Z');
}
.logo-text { display: inline-flex; flex-direction: column; line-height: 1.15; }
.logo-text__top { font-family: var(--font-body); font-size: .68rem; font-weight: 700; color: var(--amber); letter-spacing: .02em; }
.logo-text strong { font-family: var(--font-head); font-weight: 800; letter-spacing: .01em; font-size: 1.5rem; color: #fff; }
.logo-text strong em { font-style: normal; color: var(--yellow); }
.logo-text--light strong { color: #fff; }

/* Real logo image (bundled logo.png or Customizer custom logo) */
.site-logo--img { gap: .7rem; }
.logo-img { height: 68px; width: auto; display: block; filter: drop-shadow(0 3px 5px rgba(0,0,0,.28)); }
.logo-text--badge strong { font-size: 1.15rem; }
.logo-text--badge .logo-text__top { font-size: .64rem; }
.footer-logo .logo-img { height: 60px; }

/* =========================================================================
   TOP BAR
   ========================================================================= */
.topbar { background: #2b1c07; color: #cdbb9a; font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; color: #cdbb9a; }
.topbar__item:hover { color: #fff; }
.topbar__item .icon { color: var(--yellow); }
.topbar__social { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.topbar__social:hover { background: var(--green); color: #fff; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-switch__toggle {
	display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.1);
	color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
	padding: .3rem .7rem; font-family: var(--font-head); font-weight: 700; font-size: .82rem; line-height: 1;
}
.lang-switch__toggle:hover { background: var(--green); border-color: var(--green); }
.lang-switch__toggle .icon { color: var(--yellow); width: 15px; height: 15px; }
.lang-switch__toggle:hover .icon { color: #fff; }
.lang-switch__flag { font-size: .95rem; }
.lang-switch__caret { font-size: .7rem; transition: transform .2s ease; }
.lang-switch.is-open .lang-switch__caret { transform: rotate(180deg); }

.lang-switch__menu {
	position: absolute; right: 0; top: calc(100% + 8px); z-index: 200;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	box-shadow: var(--shadow); padding: .4rem; width: 200px;
	display: none; grid-template-columns: 1fr; gap: 2px; max-height: 70vh; overflow: auto;
}
.lang-switch.is-open .lang-switch__menu { display: grid; }
.lang-switch__item {
	display: flex; align-items: center; gap: .6rem; width: 100%; text-align: left;
	background: transparent; border: 0; border-radius: 8px; padding: .5rem .6rem;
	font-family: var(--font-body); font-weight: 700; font-size: .9rem; color: var(--ink); cursor: pointer;
}
.lang-switch__item:hover { background: var(--mint); color: var(--green-deep); }
.lang-switch__item-flag { font-size: 1.15rem; line-height: 1; }

/* Neutralise the Google Translate banner & body shift */
#google_translate_element { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.goog-te-banner-frame, .goog-te-gadget-icon, iframe.skiptranslate, .goog-te-balloon-frame { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
body { top: 0 !important; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 100; }
.site-header__brand { background: var(--brown); color: #fff; }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 82px; }
.site-branding { margin-right: auto; }
.site-logo { display: inline-flex; align-items: center; gap: .7rem; }
.custom-logo { max-height: 62px; width: auto; }

.header-contact { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; }
.header-phone:hover { color: var(--yellow); }
.header-phone .icon { color: var(--yellow); width: 26px; height: 26px; }
.header-phone__num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; letter-spacing: .01em; }
.header-hours { display: inline-flex; flex-direction: column; font-size: .82rem; color: #cdbb9a; line-height: 1.3; }
.header-hours__label { display: inline-block; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .68rem; padding: .1rem .5rem; border-radius: 6px; margin-bottom: .2rem; width: max-content; }

.main-nav { background: var(--brown-soft); box-shadow: 0 4px 12px rgba(66,42,10,.18); }
.main-nav__inner { display: flex; align-items: center; }
.main-nav .nav-menu { list-style: none; display: flex; align-items: stretch; }
.main-nav .nav-menu li { position: relative; }
.main-nav .nav-menu li + li::before { content: ''; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: rgba(255,255,255,.2); }
.main-nav .nav-menu a {
	display: inline-flex; align-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
	color: #fff; padding: 1rem 1.5rem;
}
.main-nav .nav-menu a:hover,
.main-nav .nav-menu .current-menu-item > a { color: var(--yellow); }
.nav-cta { margin-left: auto; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 2px solid rgba(255,255,255,.35); background: transparent; border-radius: 12px; position: relative; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { content: ''; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: #fff; transform: translate(-50%,-50%); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: translate(-50%,-50%) rotate(45deg); background: #fff; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { top: 0; transform: translate(-50%,-50%) rotate(-45deg); background: #fff; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(900px 500px at 88% 0%, rgba(255,227,94,.28), transparent 60%),
		linear-gradient(180deg, #fdf8ec, #f2ead3);
	padding: clamp(2.75rem, 5vw, 4.5rem) 0 calc(64px + clamp(2rem, 4vw, 3.5rem));
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; position: relative; z-index: 3; }
.hero__title { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: 1rem; color: var(--brown); }
.hero__subtitle { font-size: 1.12rem; color: var(--body); max-width: 42ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.75rem; }
.hero__ticks { list-style: none; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.hero__ticks li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--brown); font-size: .95rem; }
.hero__ticks .icon { color: #fff; background: var(--green); border-radius: 50%; padding: 3px; }

/* Hero photo — framed, playful tilt */
.hero__figure { position: relative; }
.hero__photo {
	position: relative; border-radius: var(--radius-lg); overflow: hidden;
	border: 8px solid #fff; box-shadow: var(--shadow-lg); transform: rotate(1.4deg);
}
.hero__photo img { width: 100%; height: 420px; object-fit: cover; }
.hero__bubble {
	position: absolute; left: -14px; bottom: -22px; background: #fff; color: var(--brown);
	border-radius: 20px; padding: .85rem 1.15rem; box-shadow: var(--shadow); transform: rotate(-3deg);
	font-family: var(--font-head); font-weight: 700; line-height: 1.25; max-width: 62%;
}
.hero__bubble strong { color: var(--orange); }
.hero__bubble::after { content: ''; position: absolute; left: 34px; bottom: -12px; border: 10px solid transparent; border-top-color: #fff; border-bottom: 0; }
.hero__stamp {
	position: absolute; right: -16px; top: -18px; width: 92px; height: 92px; border-radius: 50%;
	background: var(--yellow); color: var(--brown); display: grid; place-content: center; text-align: center;
	font-family: var(--font-head); font-weight: 800; line-height: 1; box-shadow: var(--shadow); transform: rotate(8deg);
	border: 4px dashed #fff;
}
.hero__stamp span { display: block; }
.hero__stamp .big { font-size: 1.5rem; }
.hero__stamp .small { font-size: .6rem; letter-spacing: .04em; margin-top: 2px; }

/* Decorative clovers/trees floating */
.hero__decor { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.deco-clover { position: absolute; color: var(--green); opacity: .5; }
.deco-clover--1 { top: 16%; left: 44%; width: 26px; }
.deco-clover--2 { bottom: 22%; left: 3%; width: 20px; transform: rotate(20deg); }
.sign { position: absolute; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.sign--wakaba { top: 6%; right: 38%; width: 58px; height: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,.22)); animation: floaty 6s ease-in-out infinite; z-index: 2; }
.sign--stop { bottom: 90px; right: 44%; width: 60px; height: 54px; color: #fff; font-size: .78rem; background: #e2231a; clip-path: polygon(50% 100%, 0 0, 100% 0); padding-bottom: 12px; box-shadow: var(--shadow); animation: floaty 7s ease-in-out infinite reverse; z-index: 2; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(4deg); } }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { background: var(--green-deep); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: clamp(1.75rem, 4vw, 2.5rem) var(--gutter); }
.stat { text-align: center; color: #fff; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.22); }
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.stat__num span { color: var(--yellow); }
.stat__label { display: block; margin-top: .4rem; font-size: .9rem; color: #cde6d6; }

/* =========================================================================
   CARDS
   ========================================================================= */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.85rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(51,182,102,.4); }

/* Service card */
.service-card { position: relative; overflow: hidden; }
.service-card__icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 1.1rem; background: var(--mint); color: var(--green-deep); }
.service-card__icon .icon { width: 30px; height: 30px; }
.service-card:nth-child(3n+2) .service-card__icon { background: #fbe7c4; color: var(--amber); }
.service-card:nth-child(3n+3) .service-card__icon { background: #f6dcc9; color: var(--orange); }
.service-card__title { font-size: 1.22rem; margin-bottom: .5rem; color: var(--brown); }
.service-card__desc { color: var(--muted); font-size: .98rem; margin: 0; }
.service-card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem; font-weight: 700; font-size: .92rem; color: var(--green-deep); }

/* =========================================================================
   WHY US — wooden signboards
   ========================================================================= */
.whyus { position: relative; }
.whyus__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.whyus__media { position: relative; }
.whyus__photo { border-radius: var(--radius-lg); overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); }
.whyus__photo img { width: 100%; height: 380px; object-fit: cover; }
.whyus__badge { position: absolute; right: -14px; bottom: -16px; background: var(--yellow); color: var(--brown); border-radius: 18px; padding: .9rem 1.15rem; text-align: center; box-shadow: var(--shadow); transform: rotate(-4deg); border: 3px solid #fff; }
.whyus__badge-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.whyus__badge-text { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; }

.feature-list { list-style: none; display: grid; gap: 1rem; margin: 1.5rem 0; }
/* Wooden signboard treatment */
.wood-sign {
	position: relative; display: flex; gap: 1rem; align-items: center;
	background: linear-gradient(180deg, #7a5326, #5e3f1c); color: #fff8ea;
	border-radius: 14px; padding: 1.1rem 1.35rem; box-shadow: var(--shadow), inset 0 2px 0 rgba(255,255,255,.12), inset 0 -3px 0 rgba(0,0,0,.2);
	border: 2px solid #4a3016;
}
.wood-sign::before, .wood-sign::after { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #d8b98a, #7a5b30); box-shadow: inset 0 0 0 1px rgba(0,0,0,.25); }
.wood-sign::before { top: 8px; left: 8px; }
.wood-sign::after { top: 8px; right: 8px; }
.wood-sign__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: var(--yellow); }
.wood-sign strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.wood-sign div { font-size: .95rem; color: #eaddc4; }

/* =========================================================================
   PROCESS / STEPS
   ========================================================================= */
.process { overflow: hidden; }
.step { position: relative; text-align: center; }
.step__num { display: inline-grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; background: var(--green); margin-bottom: 1rem; box-shadow: 0 6px 0 var(--green-deep); position: relative; z-index: 2; }
.step:nth-child(2) .step__num { background: var(--amber); box-shadow: 0 6px 0 #b06d17; }
.step:nth-child(3) .step__num { background: var(--orange); box-shadow: 0 6px 0 #93390b; }
.step:nth-child(4) .step__num { background: var(--green-deep); box-shadow: 0 6px 0 #155b30; }
.step__title { font-size: 1.15rem; margin-bottom: .4rem; color: var(--brown); }
.step__desc { color: var(--muted); font-size: .96rem; margin: 0; }

/* =========================================================================
   COUNTRIES
   ========================================================================= */
.countries { position: relative; }
.countries__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.country-chip { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #f0e6d2; padding: .7rem 1.2rem; border-radius: 999px; font-weight: 700; font-family: var(--font-head); font-size: .95rem; transition: background .2s ease, transform .15s ease; }
.country-chip:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.flag { font-size: 1.15rem; line-height: 1; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials { position: relative; }
.testimonial { display: flex; flex-direction: column; position: relative; }
.testimonial::before { content: '\201C'; position: absolute; top: -.4rem; right: 1rem; font-family: var(--font-head); font-size: 4rem; color: var(--tan); line-height: 1; }
.testimonial__stars { display: flex; gap: 2px; color: var(--amber); margin-bottom: .85rem; }
.testimonial__star { fill: var(--amber); stroke: var(--amber); }
.testimonial blockquote { margin: 0 0 1.25rem; font-size: 1.02rem; color: var(--ink); }
.testimonial figcaption { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--green), var(--amber)); color: #fff; font-family: var(--font-head); font-weight: 800; }
.testimonial__meta { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial__meta strong { color: var(--brown); }
.testimonial__meta em { font-style: normal; color: var(--muted); font-size: .88rem; }

/* =========================================================================
   CTA STRIP
   ========================================================================= */
.cta-strip { position: relative; background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #fff; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; top: auto; height: 100%; background: radial-gradient(600px 300px at 90% 120%, rgba(255,227,94,.28), transparent 60%); }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.25rem, 5vw, 3.25rem) var(--gutter); flex-wrap: wrap; position: relative; z-index: 2; }
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .35rem; }
.cta-strip p { color: rgba(255,255,255,.9); margin: 0; }
.cta-strip__actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--brown); color: #cdbb9a; position: relative; }
.site-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 14px; background: radial-gradient(circle at 50% 0%, var(--grass) 0 11px, transparent 12px); background-size: 30px 14px; background-repeat: repeat-x; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr; gap: 2rem; padding: clamp(3.25rem, 6vw, 4.5rem) var(--gutter) 2.5rem; }
.footer-logo { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer__tagline { font-size: .95rem; line-height: 1.7; max-width: 34ch; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; }
.footer__social a:hover { background: var(--green); }
.footer__title { color: #fff; font-size: 1.1rem; margin-bottom: 1.1rem; }
.footer__menu, .footer__contact, .footer__countries { list-style: none; display: grid; gap: .7rem; }
.footer__menu a { color: #cdbb9a; }
.footer__menu a:hover { color: var(--yellow); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.footer__contact .icon { color: var(--yellow); margin-top: 2px; }
.footer__contact a { color: #cdbb9a; }
.footer__contact a:hover { color: #fff; }
.footer__countries { grid-template-columns: 1fr 1fr; gap: .5rem .75rem; font-size: .9rem; }
.footer__countries li { display: flex; align-items: center; gap: .4rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: .5rem 1.5rem; padding: 1.25rem var(--gutter); font-size: .85rem; flex-wrap: wrap; }
.footer__bottom-inner p { margin: 0; }
.footer__credit a { color: var(--yellow); font-weight: 700; }
.footer__credit a:hover { color: #fff; }

/* Floating WhatsApp */
.float-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px rgba(37,211,102,.5); animation: pulse 2.4s ease-out infinite; }
.float-whatsapp:hover { color: #fff; transform: scale(1.06); transition: transform .15s ease; }
.float-whatsapp .icon { width: 28px; height: 28px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =========================================================================
   PAGE HERO (inner pages)
   ========================================================================= */
.page-hero { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(2.75rem, 6vw, 4.5rem) 0 calc(64px + clamp(1.5rem, 3vw, 2.5rem)); background: linear-gradient(135deg, var(--brown), #5e3f1c); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 350px at 82% 0%, rgba(221,137,37,.35), transparent 60%); }
.page-hero__inner { position: relative; z-index: 3; }
.page-hero__title { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .5rem; }
.page-hero__subtitle { color: rgba(255,255,255,.9); max-width: 60ch; margin: 0 auto; font-size: 1.075rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.breadcrumb a { color: var(--yellow); }
.breadcrumb__current { color: #fff; }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.about-intro { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.about-intro__figure { margin-bottom: 1.5rem; }
.about-intro__figure img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); border: 6px solid #fff; box-shadow: var(--shadow); }
.about-intro__cta { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-intro__card { background: var(--mint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.85rem; position: sticky; top: calc(var(--header-h) + 16px); }
.about-intro__card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--brown); }
.about-facts { list-style: none; display: grid; gap: .9rem; margin-bottom: 1.5rem; }
.about-facts li { display: grid; gap: .1rem; padding-bottom: .9rem; border-bottom: 1px dashed rgba(66,42,10,.2); }
.about-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-facts span { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.about-facts strong { color: var(--brown); font-family: var(--font-head); }

.value-card { text-align: center; }
.value-card .service-card__icon { margin-inline: auto; }
.value-card h3 { color: var(--brown); }
.reasons { gap: 1.5rem 2rem; }
.reason { display: flex; gap: 1rem; align-items: flex-start; }
.reason__icon { flex: none; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--mint); color: var(--green-deep); }
.reason h3 { font-size: 1.12rem; margin-bottom: .3rem; color: var(--brown); }
.reason p { color: var(--muted); font-size: .96rem; margin: 0; }

/* =========================================================================
   SERVICES PAGE — pricing & FAQ
   ========================================================================= */
.price-card { display: flex; flex-direction: column; text-align: center; position: relative; }
.price-card--featured { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.price-card__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .78rem; padding: .35rem 1rem; border-radius: 999px; }
.price-card__name { font-size: 1.3rem; margin-bottom: .75rem; color: var(--brown); }
.price-card__price { display: flex; align-items: baseline; justify-content: center; gap: .35rem; margin-bottom: .5rem; }
.price-card__from { color: var(--muted); font-size: .85rem; }
.price-card__amount { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--green-deep); }
.price-card__note { color: var(--muted); font-size: .92rem; margin-bottom: 1.25rem; }
.price-card__list { list-style: none; display: grid; gap: .65rem; text-align: left; margin-bottom: 1.5rem; }
.price-card__list li { display: flex; gap: .55rem; align-items: center; font-size: .95rem; }
.price-card__list .icon { color: var(--green); flex: none; }
.price-card .btn { margin-top: auto; }

/* ---------- Price list (course fees) ---------- */
.price-list { display: grid; gap: 1rem; }
.price-row {
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(51,182,102,.35); }
.price-row--featured { border-color: var(--green); background: linear-gradient(135deg, #fff, var(--mint)); }
.price-row__info { flex: 1; min-width: 0; }
.price-row__heading { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin-bottom: .35rem; }
.price-row__name { font-size: 1.15rem; margin: 0; color: var(--brown); }
.price-row__tag { display: inline-flex; align-items: center; background: var(--amber); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; padding: .2rem .65rem; border-radius: 999px; }
.price-row--featured .price-row__tag { background: var(--green); }
.price-row__duration { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--muted); font-weight: 700; }
.price-row__duration .icon { color: var(--green-deep); }
.price-row__note { margin: 0; color: var(--muted); font-size: .95rem; }
.price-row__side { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; flex: none; }
.price-row__amount { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--green-deep); white-space: nowrap; line-height: 1; text-align: right; }
.price-row--featured .price-row__amount { color: var(--orange); }
.price-row__amount small { display: block; font-size: .6rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; margin-top: .2rem; }
.price-list__footnote { margin-top: 1.75rem; text-align: center; font-size: .88rem; color: var(--muted); }

@media (max-width: 640px) {
	.price-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
	.price-row__side { align-items: flex-start; width: 100%; flex-direction: row; justify-content: space-between; }
}

.faq { display: grid; gap: .85rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item[open] { border-color: rgba(51,182,102,.5); box-shadow: var(--shadow-sm); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; padding: 1.15rem 1.35rem; font-family: var(--font-head); font-weight: 700; color: var(--brown); }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--green); border-radius: 2px; }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; transition: transform .2s ease; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 1.35rem 1.25rem; color: var(--muted); }
.faq__a p { margin: 0; }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__list { list-style: none; display: grid; gap: 1.1rem; margin: 1.75rem 0; }
.contact__list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact__icon { flex: none; width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: var(--mint); color: var(--green-deep); }
.contact__list span { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.contact__list a, .contact__list strong, .contact__list address { color: var(--brown); font-family: var(--font-head); font-weight: 700; font-style: normal; }
.contact__list a:hover { color: var(--green-deep); }

.contact-card { padding: clamp(1.5rem, 3vw, 2.25rem); }
.contact-card h3 { font-size: 1.45rem; margin-bottom: .25rem; color: var(--brown); }
.contact-card__sub { color: var(--muted); margin-bottom: 1.5rem; }

.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--brown); }
.req { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea { width: 100%; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); padding: .8rem .95rem; border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--cream); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--green); box-shadow: var(--ring); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact-form__submit { position: relative; }
.btn__spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; display: none; animation: spin .7s linear infinite; }
.is-sending .btn__label { opacity: .7; }
.is-sending .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-form__status { margin: 0; font-size: .95rem; font-weight: 700; }
.contact-form__status.is-success { color: var(--green-deep); }
.contact-form__status.is-error { color: var(--orange); }

.map-section { line-height: 0; border-top: 6px solid var(--green); }
.map-section iframe { display: block; filter: saturate(1.05); }

/* =========================================================================
   BLOG / PROSE
   ========================================================================= */
.prose { font-size: 1.05rem; }
.prose h2, .prose h3 { margin-top: 1.75rem; color: var(--brown); }
.prose a { text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.5rem; border-left: 4px solid var(--green); background: var(--paper); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card__thumb img { width: 100%; height: 210px; object-fit: cover; }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.post-card__title { font-size: 1.2rem; margin: .4rem 0 .5rem; color: var(--brown); }
.post-card__excerpt { color: var(--muted); font-size: .96rem; }
.post-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; }

.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .5rem; border: 2px solid var(--line); border-radius: 12px; margin: .15rem; font-family: var(--font-head); font-weight: 700; color: var(--brown); background: #fff; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
	.footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	:root { --header-h: 76px; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__figure { order: -1; max-width: 480px; margin-inline: auto; }
	.whyus__grid, .about-intro, .contact { grid-template-columns: 1fr; }
	.about-intro__card { position: static; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.price-card--featured { transform: none; }
	.sign--wakaba, .sign--stop { display: none; }

	/* Header collapses to a single brand bar */
	.header-contact { display: none; }
	.nav-toggle { display: block; }
	.main-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--brown-soft); box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height .3s ease; z-index: 99; }
	.main-nav.is-open { max-height: 90vh; overflow: auto; }
	.main-nav__inner { flex-direction: column; align-items: stretch; padding-block: .5rem 1.25rem; }
	.main-nav .nav-menu { flex-direction: column; align-items: stretch; }
	.main-nav .nav-menu li + li::before { display: none; }
	.main-nav .nav-menu a { padding: .95rem 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
	.nav-cta { margin: 1rem; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.topbar__item--hide-sm { display: none; }
	.grid--3 { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
	.stat:nth-child(3)::before { display: none; }
	.footer__grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.cta-strip__inner { flex-direction: column; text-align: center; }
	.cta-strip__actions { justify-content: center; }
	.footer__bottom-inner { justify-content: center; text-align: center; }
	.header-phone__num { font-size: 1.4rem; }
}

@media (max-width: 420px) {
	.grid--4 { grid-template-columns: 1fr; }
	.hero__actions .btn, .cta-strip__actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
