/* Growing Rhino theme styles
   Palette: hide slate, stone, mist, savanna green, horn ochre */
:root {
	--hide: #2b3438;
	--stone: #5f6c71;
	--mist: #eef1f0;
	--line: #d5dcda;
	--paper: #ffffff;
	--grass: #2f6b4f;
	--grass-dark: #234f3b;
	--horn: #e3a72f;
	--display: "Archivo", "Arial Narrow", system-ui, sans-serif;
	--body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--wrap: 1200px;
	--r-sm: 4px;
	--r-md: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body {
	margin: 0;
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--hide);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--grass); text-underline-offset: 3px; }
a:hover { color: var(--grass-dark); }
:focus-visible { outline: 3px solid var(--horn); outline-offset: 2px; }

h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .6em; color: var(--hide); }
h1 { font-stretch: 125%; font-weight: 900; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-stretch: 112%; font-weight: 800; font-size: clamp(1.45rem, 2.6vw, 2rem); }
h3 { font-stretch: 112%; font-weight: 700; font-size: 1.15rem; }
p { margin: 0 0 1em; }

.gr-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.gr-skip { position: absolute; left: -999px; top: 8px; background: var(--paper); padding: 8px 12px; z-index: 100; }
.gr-skip:focus { left: 8px; }

/* Header */
.gr-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.gr-header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.gr-logo { display: flex; align-items: center; gap: 10px; color: var(--hide); text-decoration: none; font-family: var(--display); font-stretch: 125%; font-weight: 900; font-size: 1.2rem; }
.gr-logo svg { color: var(--hide); }
.gr-nav { display: flex; align-items: center; gap: 22px; }
.gr-nav ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.gr-nav a:not(.gr-btn) { color: var(--hide); text-decoration: none; font-weight: 600; font-size: .95rem; }
.gr-nav a:not(.gr-btn):hover { color: var(--grass); }
.gr-menu-btn { display: none; font: 600 1rem var(--body); background: none; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px 14px; color: var(--hide); }

/* Buttons */
.gr-btn { display: inline-block; font: 700 1rem var(--body); background: var(--grass); color: #fff; border: 0; border-radius: var(--r-sm); padding: 14px 22px; text-decoration: none; cursor: pointer; }
.gr-btn:hover { background: var(--grass-dark); color: #fff; }
.gr-btn[disabled] { opacity: .65; cursor: progress; }
.gr-btn-sm { padding: 10px 16px; font-size: .92rem; }
.gr-btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.gr-btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Hero: slate slab with a horn angled lower edge */
.gr-hero {
	background: var(--hide);
	color: #e6ebea;
	padding: 48px 0 110px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
	position: relative;
}
.gr-hero::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
	background: linear-gradient(to right bottom, transparent 49.5%, var(--horn) 50%, var(--horn) 52%, transparent 52.5%);
	pointer-events: none;
}
.gr-hero h1 { color: #fff; max-width: 20ch; }
.gr-hero-kicker { font-family: var(--display); font-stretch: 112%; font-weight: 700; font-size: 1.2rem; color: var(--horn); margin-bottom: 1.2em; }
.gr-lead { max-width: 68ch; font-size: 1.1rem; }
.gr-lead p { color: #d4dbda; }
.gr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.gr-hero-home { padding-top: 72px; padding-bottom: 140px; }
.gr-hero-home h1 { font-size: clamp(2.4rem, 6.5vw, 4.8rem); max-width: 16ch; }

.gr-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 22px; font-size: .9rem; }
.gr-crumbs li + li::before { content: "/"; margin-right: 6px; color: #8c9a9e; }
.gr-crumbs a { color: #c9d2d0; }
.gr-crumbs span { color: #fff; }

/* Two column layout */
.gr-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; margin-top: -24px; padding-bottom: 72px; position: relative; }
.gr-article { max-width: 72ch; padding-top: 48px; }
.gr-aside { position: relative; }
.gr-sticky { position: sticky; top: 88px; }

.gr-sec { padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--line); }
.gr-sec:first-of-type { border-top: 0; }

/* Quick answer and key facts */
.gr-answer { background: var(--mist); border-left: 5px solid var(--horn); padding: 18px 22px; border-radius: 0 var(--r-md) var(--r-md) 0; }
.gr-answer p { margin: 0; }
.gr-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 28px 0 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.gr-facts div { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.gr-facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.gr-facts dt { font-size: .82rem; color: var(--stone); font-weight: 600; }
.gr-facts dd { margin: 0; font-weight: 600; word-break: break-word; }

/* Offerings */
.gr-offer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; margin-top: 12px; }
.gr-offer article { border-top: 3px solid var(--hide); padding-top: 14px; }
.gr-offer p { font-size: .98rem; }

/* Process: a real sequence, so numbered */
.gr-steps { list-style: none; counter-reset: step; padding: 0; margin: 20px 0 0; }
.gr-steps li { counter-increment: step; position: relative; padding: 0 0 18px 64px; }
.gr-steps li::before {
	content: counter(step);
	position: absolute; left: 0; top: -4px;
	width: 44px; height: 44px; display: grid; place-items: center;
	font-family: var(--display); font-stretch: 125%; font-weight: 900; font-size: 1.2rem;
	background: var(--hide); color: var(--horn); border-radius: 50%;
}
.gr-steps li:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
.gr-steps h3 { margin-bottom: .3em; }

/* Reasons */
.gr-reasons { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 32px; }
.gr-reasons li { border-left: 3px solid var(--grass); padding-left: 16px; }
.gr-reasons p { font-size: .97rem; margin: 0; }

/* Link lists */
.gr-links { list-style: none; padding: 0; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 6px; }
.gr-links-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px 20px; }
.gr-links a { font-weight: 600; }
.gr-cross { list-style: none; padding: 0; margin: 12px 0 0; }
.gr-cross li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.gr-cross a { font-family: var(--display); font-stretch: 112%; font-weight: 700; font-size: 1.1rem; }
.gr-cross span { color: var(--stone); font-size: .95rem; }
.gr-chips { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.gr-chips a { display: inline-block; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: .88rem; font-weight: 600; }
.gr-chips a:hover { border-color: var(--grass); }
.gr-mini { font-weight: 700; margin: 8px 0 0; }

/* FAQ */
.gr-faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.gr-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; }
.gr-faq summary::-webkit-details-marker { display: none; }
.gr-faq summary::after { content: "+"; font-family: var(--display); font-weight: 900; font-size: 1.5rem; line-height: 1; color: var(--grass); }
.gr-faq details[open] summary::after { content: "\2212"; }
.gr-faq summary h3 { margin: 0; font-size: 1.05rem; }

.gr-loc { border-bottom: 1px solid var(--line); }
.gr-loc summary { cursor: pointer; padding: 12px 0; }
.gr-loc summary h3 { display: inline; }

.gr-ind-grid, .gr-svc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.gr-ind-grid article, .gr-svc-grid article { border-top: 3px solid var(--hide); padding-top: 14px; }
.gr-ind-grid h2 { font-size: 1.25rem; }

/* Form */
.gr-form { background: var(--paper); border: 1px solid var(--line); border-top: 6px solid var(--horn); border-radius: var(--r-md); padding: 24px; box-shadow: 0 18px 40px -24px rgba(43, 52, 56, .45); }
.gr-form-title { font-family: var(--display); font-stretch: 112%; font-weight: 800; font-size: 1.35rem; margin: 0 0 4px; line-height: 1.2; }
.gr-form-sub { color: var(--stone); font-size: .92rem; margin-bottom: 16px; }
.gr-field { margin-bottom: 12px; }
.gr-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.gr-field input, .gr-field select, .gr-field textarea {
	width: 100%; font: 400 1rem var(--body); color: var(--hide);
	padding: 11px 12px; border: 1px solid #b9c4c1; border-radius: var(--r-sm); background: #fff;
}
.gr-field input:focus, .gr-field select:focus, .gr-field textarea:focus { border-color: var(--grass); outline: 2px solid rgba(47, 107, 79, .25); }
.gr-field [aria-invalid="true"] { border-color: #b3261e; }
.gr-form .gr-btn { width: 100%; margin-top: 4px; }
.gr-form-msg { font-size: .92rem; margin: 10px 0 0; min-height: 1em; color: #b3261e; }
.gr-hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Modal */
.gr-modal { position: fixed; inset: 0; background: rgba(27, 33, 36, .6); display: grid; place-items: center; z-index: 200; padding: 20px; }
.gr-modal[hidden] { display: none; }
.gr-modal-card { background: #fff; border-radius: var(--r-md); padding: 36px 32px 28px; max-width: 420px; width: 100%; text-align: center; color: var(--hide); animation: gr-pop .25s ease-out; }
.gr-modal-card svg { color: var(--grass); }
.gr-modal-title { font-family: var(--display); font-stretch: 125%; font-weight: 900; font-size: 1.6rem; margin: 12px 0 6px; }
@keyframes gr-pop { from { transform: scale(.94); opacity: 0; } to { transform: none; opacity: 1; } }

/* WhatsApp */
.gr-wa { position: fixed; right: 18px; bottom: 18px; background: #1f8f4e; color: #fff; padding: 12px 18px; border-radius: 999px; font-weight: 700; text-decoration: none; z-index: 60; }
.gr-wa:hover { color: #fff; background: #17733e; }

/* Footer */
.gr-footer { background: var(--hide); color: #cfd7d5; padding: 56px 0 24px; }
.gr-footer a { color: #fff; }
.gr-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.gr-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.gr-footer-brand { font-family: var(--display); font-stretch: 125%; font-weight: 900; font-size: 1.4rem; color: #fff; }
.gr-footer-h { font-weight: 700; color: var(--horn); }
.gr-footer address { font-style: normal; }
.gr-footer-base { border-top: 1px solid rgba(255,255,255,.15); margin-top: 36px; padding-top: 18px; font-size: .9rem; }
.gr-prose { max-width: 72ch; }

/* Responsive */
@media (max-width: 980px) {
	.gr-layout { grid-template-columns: 1fr; gap: 0; }
	.gr-aside { order: 2; margin-top: 40px; }
	.gr-sticky { position: static; }
	.gr-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
	.gr-menu-btn { display: block; }
	.gr-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px 20px 20px; border-bottom: 1px solid var(--line); }
	.gr-nav.is-open { display: flex; }
	.gr-nav ul { flex-direction: column; gap: 12px; }
	.gr-offer, .gr-reasons, .gr-ind-grid, .gr-svc-grid, .gr-facts { grid-template-columns: 1fr; }
	.gr-facts div:nth-child(odd) { border-right: 0; }
	.gr-hero { padding-bottom: 90px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%); }
	.gr-hero::after { height: 36px; }
	.gr-footer-grid { grid-template-columns: 1fr; }
}

/* Hero call to action and modal state */
.gr-hero-cta { margin-top: 22px; display: inline-block; }
.gr-btn-horn { background: var(--horn); color: var(--hide); }
.gr-btn-horn:hover, .gr-btn-horn:focus-visible { background: #f0b848; color: var(--hide); }
body.gr-modal-open { overflow: hidden; }
.gr-modal-title { font-size: 1.3rem; line-height: 1.25; }
.gr-aside { scroll-margin-top: 90px; }
@media (min-width: 981px) { .gr-hero-cta { display: none; } }
