/* ---------------------------------------------------------------------------
   The Farm Stays
   Palette drawn from the Deccan: lime-washed walls, mango leaf, granite,
   marigold. Display type is Fraunces, and it is used for the numbers as well
   as the headings, because on this site the numbers are the argument.
   ------------------------------------------------------------------------ */

@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-latin-wght-normal.woff2') format('woff2-variations');
	font-weight: 300 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20B9, U+2122;
}

:root {
	--paper: #FCFBF7;
	--sand: #F1EEE4;
	--ink: #1A2420;
	--stone: #6B756D;
	--line: #E0E3D9;
	--leaf: #23543C;
	--leaf-deep: #17392A;
	--leaf-bright: #2E7A52;
	--marigold: #E39B0C;
	--alert: #A8331B;

	--display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

	--gutter: 20px;
	--max: 1200px;
	--r: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--leaf); text-underline-offset: 3px; }
a:hover { color: var(--leaf-bright); }

h1, h2, h3 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.012em;
	margin: 0 0 .5em;
	font-variation-settings: 'SOFT' 20;
}

h1 { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem); }
h2 { font-size: clamp(1.35rem, 1.05rem + 1.2vw, 1.9rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

:focus-visible {
	outline: 2.5px solid var(--marigold);
	outline-offset: 2px;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 720px; }
.muted { color: var(--stone); }
.visually-hidden {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip {
	position: absolute; left: -9999px; top: 0; z-index: 100;
	background: var(--leaf); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font: inherit; font-weight: 600; line-height: 1;
	padding: 14px 20px; border: 1.5px solid transparent; border-radius: var(--r);
	cursor: pointer; text-decoration: none; text-align: center;
	transition: background-color .12s linear, color .12s linear, border-color .12s linear;
}
.btn-sm { padding: 10px 14px; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--leaf-deep); color: var(--paper); }

.btn-wa { background: var(--leaf); color: #fff; }
.btn-wa:hover { background: var(--leaf-bright); color: #fff; }
.btn-wa .wa-mark { flex: none; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline[aria-pressed="true"] { background: var(--sand); border-color: var(--leaf); color: var(--leaf); }

.link-plain {
	background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
	color: var(--leaf); text-decoration: underline;
}

/* --- Header ------------------------------------------------------------- */

.site-head {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: sticky; top: 0; z-index: 40;
}
.head-inner { display: flex; align-items: center; gap: 20px; min-height: 66px; }
.brand { text-decoration: none; margin-right: auto; }
.brand-mark {
	font-family: var(--display); font-weight: 700; font-size: 1.2rem;
	color: var(--ink); letter-spacing: -0.02em;
}
.brand img { max-height: 40px; width: auto; }

.head-nav { display: none; }
.nav-list, .head-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.head-nav a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.head-nav a:hover { text-decoration: underline; }

.head-actions { display: flex; align-items: center; gap: 12px; }
.shortlist-link {
	display: none; color: var(--ink); text-decoration: none; font-size: .95rem;
}
.shortlist-count {
	display: inline-block; min-width: 20px; padding: 1px 6px; margin-left: 4px;
	background: var(--marigold); color: var(--ink);
	border-radius: 20px; font-size: .78rem; font-weight: 700; text-align: center;
}

@media (min-width: 800px) {
	.head-nav, .shortlist-link { display: block; }
}

/* --- Hero --------------------------------------------------------------- */

.hero { position: relative; background: var(--leaf-deep); color: var(--paper); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(23,57,42,.55) 0%, rgba(23,57,42,.82) 78%);
}
.hero-inner { position: relative; padding-block: clamp(48px, 9vw, 104px) 0; }
.hero-plain .hero-inner { padding-top: 56px; }

.hero-title { max-width: 17ch; color: var(--paper); margin-bottom: .3em; }
.hero-sub { max-width: 46ch; color: #DDE6DE; font-size: 1.05rem; margin-bottom: 28px; }

/* --- The finder --------------------------------------------------------- */

.finder {
	display: grid; gap: 12px;
	background: var(--paper); color: var(--ink);
	padding: 18px; border-radius: var(--r);
	box-shadow: 0 18px 40px -28px rgba(15,32,24,.9);
}
.finder-bar { box-shadow: none; border: 1px solid var(--line); }
.finder-field { display: flex; flex-direction: column; gap: 5px; }
.finder-field label, .filter label, .field label {
	font-size: .8rem; font-weight: 600; color: var(--stone);
}
.finder input, .finder select,
.filter input, .filter select,
.field input, .field textarea {
	font: inherit; color: var(--ink); background: #fff;
	border: 1px solid var(--line); border-radius: var(--r);
	padding: 11px 12px; width: 100%; min-height: 46px;
}
.finder input:focus, .finder select:focus { border-color: var(--leaf); }
.finder-go { min-height: 48px; }

.finder-note {
	position: relative; max-width: 62ch; margin: 14px 0 0;
	font-size: .84rem; line-height: 1.5; color: #C2CEC4;
}
.finder-bar + .finder-note { color: var(--stone); }

.hero-inner .finder-note { padding-bottom: 34px; }

@media (min-width: 760px) {
	.finder { grid-template-columns: 1.4fr 1fr 1fr .8fr auto; align-items: end; }
	.finder-go { grid-column: auto; }
}

/* --- Page heads --------------------------------------------------------- */

.page-head { background: var(--sand); border-bottom: 1px solid var(--line); padding-block: 26px 30px; }
.page-lede { max-width: 62ch; color: #48534A; }
.page-head .finder { margin-top: 18px; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 14px; padding: 0; font-size: .82rem; color: var(--stone); }
.crumbs li + li::before { content: '/'; margin-right: 6px; color: var(--line); }
.crumbs a { color: var(--stone); }

/* --- Card grid ---------------------------------------------------------- */

.listing { display: grid; gap: 28px; padding-block: 28px 56px; }
@media (min-width: 960px) { .listing { grid-template-columns: 268px 1fr; gap: 40px; align-items: start; } }

.listing-count { font-family: var(--display); font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; }

.grid { display: grid; gap: 26px 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .grid { grid-template-columns: repeat(3, 1fr); } }
.listing-main .grid { grid-template-columns: 1fr; }
@media (min-width: 620px) { .listing-main .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .listing-main .grid { grid-template-columns: repeat(3, 1fr); } }

.card { position: relative; display: flex; flex-direction: column; }
.card-media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); border-radius: var(--r); }
.card-media .stay-photo { width: 100%; height: 100%; object-fit: cover; }
.stay-photo-empty { display: block; width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #E9E6DA, #E9E6DA 12px, #F1EEE4 12px, #F1EEE4 24px); }

.card-save {
	position: absolute; top: 10px; right: 10px; z-index: 3;
	width: 38px; height: 38px; display: grid; place-items: center;
	background: rgba(252,251,247,.92); color: var(--ink);
	border: 0; border-radius: 50%; cursor: pointer;
}
.card-save[aria-pressed="true"] { color: var(--alert); }
.card-save[aria-pressed="true"] svg path { fill: currentColor; stroke: currentColor; }

.card-body { padding: 12px 0 0; }
.card-capacity { margin: 0 0 2px; font-size: .9rem; color: var(--stone); }
.card-capacity strong {
	font-family: var(--display); font-size: 1.15rem; font-weight: 700;
	color: var(--ink); font-variant-numeric: tabular-nums; margin-right: 3px;
}
.card-rooms { display: block; font-size: .82rem; }
.card-title { font-size: 1.12rem; margin: 4px 0 3px; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-place { font-size: .88rem; color: var(--stone); margin: 0 0 10px; }

.drive {
	display: inline-block; margin-left: 8px; padding: 2px 8px;
	background: var(--sand); border-radius: 20px;
	font-size: .78rem; color: #45514A; font-variant-numeric: tabular-nums;
}

.card-foot {
	display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
	border-top: 1px solid var(--line); padding-top: 9px; margin-top: auto;
}
.card-price { margin: 0; font-size: .86rem; color: var(--stone); }
.card-price strong {
	font-family: var(--display); font-size: 1.08rem; font-weight: 700;
	color: var(--ink); font-variant-numeric: tabular-nums; margin-right: 3px;
}

.card-hit { position: absolute; inset: 0; z-index: 1; }
.card-save, .card-title a { position: relative; z-index: 2; }

.badge {
	display: inline-flex; align-items: center; gap: 5px; flex: none;
	font-size: .75rem; font-weight: 600; color: #4A5A4E;
}
.badge-verified svg { color: var(--marigold); flex: none; }

/* --- Filters ------------------------------------------------------------ */

.filters { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; background: #fff; }
.filters-row { display: grid; gap: 12px; }
@media (min-width: 620px) and (max-width: 959px) { .filters-row { grid-template-columns: repeat(2, 1fr); } }
.filter { display: flex; flex-direction: column; gap: 5px; }

.filter-features { border: 0; border-top: 1px solid var(--line); margin: 16px 0 0; padding: 14px 0 0; }
.filter-features legend { font-size: .8rem; font-weight: 600; color: var(--stone); padding: 0; }
.feature-grid { display: grid; gap: 7px; margin-top: 8px; }
@media (min-width: 620px) and (max-width: 959px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-check { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.feature-check input { width: 17px; height: 17px; accent-color: var(--leaf); }

.filters-actions { display: flex; align-items: center; gap: 16px; margin-top: 16px; }

/* --- Pagination --------------------------------------------------------- */

.pagination { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 40px; }
.pagination .page-numbers {
	min-width: 42px; padding: 10px 12px; text-align: center;
	border: 1px solid var(--line); border-radius: var(--r);
	color: var(--ink); text-decoration: none; font-variant-numeric: tabular-nums;
}
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination .dots { border-color: transparent; }

/* --- Empty state -------------------------------------------------------- */

.empty { max-width: 56ch; padding: 36px 0; }
.empty h2 { margin-bottom: .35em; }
.empty-alt { margin-top: 16px; font-size: .9rem; }

/* --- Property page ------------------------------------------------------ */

.stay-top { padding-top: 22px; }
.stay-headline { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.stay-headline h1 { margin-bottom: .2em; }
.stay-place { color: var(--stone); font-size: .95rem; margin: 0 0 18px; }
.ref {
	display: inline-block; margin-left: 8px; font-size: .78rem;
	color: var(--stone); font-variant-numeric: tabular-nums;
	border: 1px solid var(--line); border-radius: 20px; padding: 2px 8px;
}

.gallery { display: grid; gap: 8px; }
.gallery figure { margin: 0; }
.gallery-lead { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.gallery-lead .g-img { width: 100%; height: 100%; object-fit: cover; }
.g-empty { display: block; width: 100%; height: 100%; background: var(--sand); }
.gallery-rest { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-rest figure { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.gallery-rest .g-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more { grid-column: 1 / -1; margin: 2px 0 0; font-size: .82rem; color: var(--stone); }

@media (min-width: 900px) {
	.gallery { grid-template-columns: 1.55fr 1fr; align-items: start; }
	.gallery-rest { grid-template-columns: repeat(2, 1fr); }
	.gallery-lead { aspect-ratio: 4 / 3; }
	.gallery-rest figure { aspect-ratio: 4 / 3; }
}

.stay-body { display: grid; gap: 36px; padding-block: 34px 60px; }
@media (min-width: 960px) { .stay-body { grid-template-columns: 1fr 336px; gap: 56px; align-items: start; } }

/* The signature strip: four figures set in the display face, on a single rule. */
.glance {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 18px 12px;
	border-block: 1px solid var(--line);
	padding-block: 20px; margin-bottom: 34px;
}
@media (min-width: 640px) { .glance { grid-template-columns: repeat(4, 1fr); } }
.glance-item { display: flex; flex-direction: column; gap: 2px; }
.glance-figure {
	font-family: var(--display); font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem);
	font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums;
	font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
.glance-label { font-size: .84rem; color: var(--stone); line-height: 1.3; }

.stay-section { margin-bottom: 38px; }
.stay-section h2 { margin-bottom: .55em; }

.highlights, .features, .rules { list-style: none; margin: 0; padding: 0; }
.highlights li, .rules li { position: relative; padding-left: 20px; margin-bottom: 9px; max-width: 66ch; }
.highlights li::before, .rules li::before {
	content: ''; position: absolute; left: 2px; top: .62em;
	width: 7px; height: 7px; background: var(--marigold); border-radius: 50%;
}
.rules li::before { background: var(--line); }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(3, 1fr); } }
.features li { font-size: .93rem; padding-left: 18px; position: relative; }
.features li::before {
	content: ''; position: absolute; left: 0; top: .55em;
	width: 8px; height: 2px; background: var(--leaf);
}

.prose p { max-width: 68ch; }

/* --- Price chips -------------------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 14px; padding: 0; }
.chip {
	display: flex; flex-direction: column; gap: 2px;
	border: 1px solid var(--line); border-radius: var(--r);
	padding: 11px 16px 12px; background: #fff; min-width: 132px;
}
.chip-label { font-size: .78rem; color: var(--stone); }
.chip-value {
	font-family: var(--display); font-weight: 700; font-size: 1.2rem;
	font-variant-numeric: tabular-nums;
}
.chips-compact .chip { flex: 1 1 auto; min-width: 0; padding: 8px 10px; }
.chips-compact .chip-value { font-size: 1rem; }

.price-note { font-size: .89rem; color: #4B564D; max-width: 62ch; margin-bottom: .5em; }
.price-caveat { color: var(--stone); }

.photo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-strip figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }

/* --- The ask panel ------------------------------------------------------ */

.stay-rail { position: static; }
@media (min-width: 960px) { .stay-rail { position: sticky; top: 86px; } }

.ask { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 20px; }
.ask-price { margin: 0 0 14px; font-size: .88rem; color: var(--stone); }
.ask-price strong {
	display: block; font-family: var(--display); font-size: 1.75rem; font-weight: 700;
	color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.1;
}
.ask .btn { margin-bottom: 10px; }
.ask-promise { font-size: .84rem; color: var(--stone); margin: 0 0 14px; }
.ask-fine { font-size: .82rem; color: var(--stone); margin: 12px 0 0; line-height: 1.45; }

/* --- Sticky mobile bar -------------------------------------------------- */

.sticky-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
	display: flex; align-items: center; gap: 14px;
	padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
	background: var(--paper); border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px -20px rgba(15,32,24,.9);
}
.sticky-bar[hidden] { display: none; }
.sticky-price { margin-right: auto; line-height: 1.15; }
.sticky-price strong {
	display: block; font-family: var(--display); font-size: 1.2rem; font-weight: 700;
	font-variant-numeric: tabular-nums;
}
.sticky-price span { font-size: .78rem; color: var(--stone); }
@media (min-width: 960px) { .sticky-bar { display: none !important; } }
body.has-sticky { padding-bottom: 76px; }

/* --- Home sections ------------------------------------------------------ */

.promise { background: var(--sand); border-block: 1px solid var(--line); padding-block: 40px; }
.promise-grid { display: grid; gap: 26px; }
@media (min-width: 800px) { .promise-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.promise h2 { font-size: 1.15rem; margin-bottom: .35em; }
.promise p { font-size: .93rem; color: #48534A; margin: 0; max-width: 44ch; }

.home-block { padding-block: 48px; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.block-head h2 { margin: 0; }

.collections { padding-block: 8px 48px; }
.collection-list { display: grid; gap: 1px; list-style: none; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (min-width: 620px) { .collection-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .collection-list { grid-template-columns: repeat(4, 1fr); } }
.collection-list a {
	display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
	background: var(--paper); padding: 18px 16px; height: 100%;
	text-decoration: none; color: var(--ink);
}
.collection-list a:hover { background: var(--sand); }
.collection-name { font-family: var(--display); font-weight: 600; font-size: 1.02rem; line-height: 1.2; }
.collection-count { font-size: .8rem; color: var(--stone); font-variant-numeric: tabular-nums; }

.areas { padding-block: 8px 52px; }
.area-list { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; }
@media (min-width: 700px) { .area-list { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
.area-list a {
	display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
	padding: 15px 0; border-bottom: 1px solid var(--line);
	text-decoration: none; color: var(--ink);
}
.area-name { font-family: var(--display); font-weight: 600; font-size: 1.08rem; }
.area-meta { font-size: .84rem; color: var(--stone); text-align: right; }

.concierge { background: var(--leaf-deep); color: var(--paper); padding-block: 52px; }
.concierge h2 { color: var(--paper); max-width: 20ch; }
.concierge p { color: #C7D6CB; max-width: 54ch; }
.concierge .btn-wa { background: var(--paper); color: var(--leaf-deep); }
.concierge .btn-wa:hover { background: #fff; color: var(--leaf-deep); }
.concierge-alt { margin-top: 16px; font-size: .9rem; }
.concierge-alt a { color: var(--marigold); }

/* --- Forms -------------------------------------------------------------- */

.callback { margin-top: 16px; }
.callback-row { display: grid; gap: 12px; }
@media (min-width: 620px) { .callback-row { grid-template-columns: 1.2fr 1fr .6fr; } }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.hp { position: absolute; left: -9999px; }
.callback-fine { font-size: .82rem; color: var(--stone); margin-top: 10px; }
.callback-done {
	border-left: 3px solid var(--leaf); background: var(--sand);
	padding: 14px 16px; margin: 0; font-weight: 600;
}
.callback-error {
	border-left: 3px solid var(--alert); background: #FBF0ED;
	padding: 12px 14px; margin: 0 0 16px; color: #7A2413;
}
.callback-or { margin: 34px 0 60px; padding-top: 24px; border-top: 1px solid var(--line); }

.page-body { padding-block: 34px 64px; }

/* --- Shortlist ---------------------------------------------------------- */

.shortlist-page { padding-block: 30px 64px; max-width: 760px; }
.shortlist-items { list-style: none; margin: 0 0 26px; padding: 0; }
.shortlist-items li {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 0; border-bottom: 1px solid var(--line);
}
.shortlist-items img { width: 78px; height: 58px; object-fit: cover; border-radius: var(--r); flex: none; background: var(--sand); }
.shortlist-body { flex: 1; min-width: 0; }
.shortlist-body a { font-family: var(--display); font-weight: 600; color: var(--ink); text-decoration: none; }
.shortlist-body span { display: block; font-size: .8rem; color: var(--stone); font-variant-numeric: tabular-nums; }
.shortlist-remove { background: none; border: 0; color: var(--stone); cursor: pointer; font-size: .85rem; text-decoration: underline; padding: 4px; }
.shortlist-note { font-size: .86rem; color: var(--stone); margin: 12px 0; }

/* --- Similar ------------------------------------------------------------ */

.similar { background: var(--sand); border-top: 1px solid var(--line); padding-block: 46px 56px; }

/* --- Footer ------------------------------------------------------------- */

.site-foot { background: var(--ink); color: #C3CDC5; padding-block: 46px 0; margin-top: auto; }
.foot-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.foot-name { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--paper); margin: 0 0 .3em; }
.foot-line { max-width: 34ch; margin-bottom: .6em; }
.foot-hours, .foot-phone { font-size: .9rem; margin: 0 0 .4em; }
.foot-phone a { color: var(--marigold); }
.foot-head { font-size: .85rem; font-weight: 600; color: var(--paper); margin-bottom: .8em; font-family: var(--body); }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 8px; font-size: .9rem; }
.site-foot a { color: #C3CDC5; text-decoration: none; }
.site-foot a:hover { color: var(--paper); text-decoration: underline; }
.foot-base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-block: 18px 26px; }
.foot-base p { font-size: .8rem; color: #8D998F; margin: 0; max-width: 70ch; }

html, body { min-height: 100%; }
body { display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
