:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #23312b;
  --muted: #65736d;
  --forest: #245442;
  --forest-2: #3d7257;
  --leaf: #d9e7d2;
  --clay: #b76d42;
  --sky: #dceaf0;
  --line: rgba(35, 49, 43, 0.14);
  --shadow: 0 20px 60px rgba(35, 49, 43, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header .brand {
  flex: 0 0 auto;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
}

.brand-mark {
  background:
    radial-gradient(circle at 50% 35%, var(--leaf) 0 19%, transparent 20%),
    linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  height: 38px;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.6vw, 18px);
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  background: var(--forest);
  border-radius: var(--radius);
  color: #fffdf8;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--clay);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  min-height: 40px;
  padding: 0 14px;
}

.hero {
  min-height: calc(78vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 26, 22, 0.76) 0%, rgba(14, 26, 22, 0.46) 48%, rgba(14, 26, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 26, 22, 0.42), rgba(14, 26, 22, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fffdf8;
  max-width: 780px;
  padding: clamp(72px, 12vw, 138px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 86px);
  position: relative;
}

.eyebrow {
  color: #d7e5d4;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  hyphens: auto;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 650;
  margin-bottom: 22px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 650;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-copy {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--clay);
  box-shadow: 0 14px 32px rgba(183, 109, 66, 0.28);
  color: #fffdf8;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fffdf8;
}

.button.ghost.dark {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-facts div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  min-width: 118px;
  padding: 0 18px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.section,
.booking-section,
.intro-band {
  padding: clamp(42px, 6vw, 76px) 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 34px);
}

.intro-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split,
.practical-grid {
  display: grid;
  gap: clamp(24px, 5vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.intro-grid p,
.section-heading p,
.split p,
.host-copy p {
  color: var(--muted);
  font-size: 18px;
}

.host-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 49, 43, 0.07);
  padding: clamp(24px, 4vw, 34px);
}

.host-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 49, 43, 0.08);
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.feature-card div {
  padding: 22px;
}

.feature-card p,
.specs p,
.practical-items p {
  color: var(--muted);
  margin-bottom: 0;
}

.specs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.specs > div,
.admin-summary > div,
.practical-items article,
.list-panel,
.booking-form,
.admin-panel,
.pin-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 49, 43, 0.07);
}

.specs > div,
.practical-items article {
  padding: 22px;
}

.spec-label {
  color: var(--clay);
  display: block;
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gallery-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.gallery-item {
  background: var(--leaf);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item figcaption {
  backdrop-filter: blur(10px);
  background: rgba(14, 26, 22, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  bottom: 12px;
  color: #fffdf8;
  font-size: 13px;
  font-weight: 760;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  position: absolute;
}

.photo-band {
  align-items: stretch;
  background: var(--forest);
  color: #fffdf8;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.photo-band img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.photo-band div {
  align-self: center;
  padding: clamp(30px, 5vw, 64px);
}

.photo-band p {
  color: rgba(255, 253, 248, 0.78);
}

.list-panel {
  padding: 26px;
}

.check-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  border-left: 3px solid var(--forest-2);
  padding-left: 14px;
}

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

.review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 49, 43, 0.07);
  padding: clamp(24px, 4vw, 34px);
}

.review-card p {
  color: var(--muted);
}

.review-card p:last-child {
  margin-bottom: 0;
}

.review-meta {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 18px;
}

.review-meta strong {
  font-size: 20px;
}

.review-meta span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 760;
}

.review-quote {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.42;
}

.booking-section {
  background:
    linear-gradient(180deg, rgba(220, 234, 240, 0.56), rgba(247, 245, 239, 0.2)),
    var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
}

.calendar-toolbar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 28px 0 14px;
}

.icon-button {
  align-items: center;
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  color: #fffdf8;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.calendar-legend span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
}

.legend-dot {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.legend-dot.available {
  background: var(--leaf);
}

.legend-dot.rated {
  background: var(--sky);
}

.legend-dot.blocked {
  background: var(--clay);
}

.calendar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.month {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.month h3 {
  background: var(--forest);
  color: #fffdf8;
  margin: 0;
  padding: 14px 16px;
}

.month-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 12px;
}

.weekday,
.day {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.weekday {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.day {
  background: rgba(217, 231, 210, 0.55);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  position: relative;
}

.day.other {
  visibility: hidden;
}

.day.blocked {
  background: rgba(183, 109, 66, 0.18);
  color: #7d4428;
  cursor: not-allowed;
  text-decoration: line-through;
}

.day.rated {
  background: rgba(220, 234, 240, 0.98);
}

.day.selected,
.day.in-range {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.day.today {
  font-weight: 900;
}

.booking-form,
.pin-form {
  padding: 24px;
}

.booking-form {
  position: sticky;
  top: 92px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 760;
  gap: 7px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

input[readonly] {
  background: rgba(217, 231, 210, 0.34);
  cursor: default;
}

.date-helper {
  margin-top: -4px;
}

textarea {
  resize: vertical;
}

.booking-form,
.compact-form {
  display: grid;
  gap: 14px;
}

.estimate {
  background: rgba(36, 84, 66, 0.08);
  border-radius: var(--radius);
  color: var(--forest);
  font-weight: 760;
  padding: 12px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.form-note.success {
  color: var(--forest);
}

.form-note.error {
  color: #9a3f26;
}

.practical-items {
  display: grid;
  gap: 14px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fffdf8;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr) auto;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer div {
  display: grid;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 253, 248, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fffdf8;
}

.seo-header .nav-toggle {
  display: none;
}

.seo-main {
  background: var(--bg);
}

.breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px clamp(18px, 4vw, 34px) 0;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 760;
  text-decoration: none;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
  min-height: 560px;
}

.seo-hero-content {
  align-self: center;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 72px);
}

.seo-hero-content h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
}

.seo-hero-content p {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}

.seo-hero-image {
  min-height: 420px;
}

.seo-hero-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.seo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.seo-facts span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.seo-layout {
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.seo-copy {
  display: grid;
  gap: 18px;
}

.seo-copy article,
.seo-panel,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 49, 43, 0.07);
  padding: clamp(22px, 4vw, 34px);
}

.seo-copy p,
.seo-panel p,
.faq-item p,
.seo-cta-band p {
  color: var(--muted);
}

.seo-panel {
  align-self: start;
  position: sticky;
  top: 92px;
}

.seo-panel h2,
.admin-login h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.seo-usp-list,
.seo-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.seo-usp-list li,
.seo-check-list li {
  border-left: 3px solid var(--forest-2);
  padding-left: 12px;
}

.seo-photo-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-photo-strip img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  padding: 20px 46px 20px 22px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--clay);
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 16px 22px 20px;
}

.faq-item h3 {
  font-size: 18px;
}

.seo-cta-band {
  background: var(--forest);
  color: #fffdf8;
  margin-top: clamp(30px, 5vw, 54px);
  padding: clamp(30px, 5vw, 58px) 0;
}

.seo-cta-band .section-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.seo-cta-band h2,
.seo-cta-band p {
  margin-bottom: 0;
}

.seo-cta-band p {
  color: rgba(255, 253, 248, 0.78);
  margin-top: 10px;
}

.text-link {
  color: var(--forest);
  font-weight: 760;
}

.admin-shell {
  background: var(--bg);
  min-height: 100vh;
}

.admin-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-login {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin: 0 auto;
  max-width: 980px;
  padding: 90px clamp(18px, 4vw, 34px);
}

.admin-dashboard {
  margin: 0 auto;
  max-width: 1220px;
  padding: 20px clamp(18px, 4vw, 34px) 80px;
}

.admin-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.admin-summary > div {
  padding: 18px;
}

.admin-summary strong {
  display: block;
  font-size: 30px;
}

.admin-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel {
  padding: 22px;
}

.settings-panel,
.requests-panel {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px;
}

.admin-item p {
  color: var(--muted);
  margin: 0;
}

.admin-item button,
.admin-item select {
  min-height: 38px;
}

.admin-item button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  padding: 0 12px;
}

.request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: rgba(36, 84, 66, 0.08);
  border-radius: 999px;
  color: var(--forest);
  display: inline-flex;
  font-size: 12px;
  font-weight: 760;
  padding: 4px 8px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    min-width: 220px;
    padding: 16px;
    position: absolute;
    right: 18px;
    top: 62px;
  }

  .header-cta {
    margin-left: auto;
    order: 2;
  }

  .site-nav.open {
    display: flex;
  }

  .intro-grid,
  .split,
  .practical-grid,
  .booking-layout,
  .admin-login,
  .photo-band,
  .seo-hero,
  .seo-layout,
  .seo-cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .seo-header {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .seo-header .site-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 0;
    position: static;
  }

  .seo-header .header-cta {
    margin-left: 0;
    order: 0;
  }

  .feature-grid,
  .specs,
  .calendar-grid,
  .review-grid,
  .admin-summary,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .seo-panel {
    position: static;
  }

  .seo-photo-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form {
    position: static;
  }

  .photo-band img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    height: auto;
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    font-size: 12px;
    min-height: 38px;
    padding: 8px 10px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

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

  .hero-content {
    padding-top: 58px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
