:root {
  --ink: #111614;
  --body: #2d342f;
  --muted: #687169;
  --green: #0d5d36;
  --green-bright: #147345;
  --green-dark: #063d26;
  --green-deep: #052e1e;
  --gold: #eba900;
  --gold-light: #f5bd18;
  --red: #d9433f;
  --cream: #faf8f2;
  --soft: #f6f7f5;
  --line: #e1e4df;
  --white: #ffffff;
  --shadow: 0 6px 18px rgba(17, 28, 21, 0.1);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--body);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body,
button,
input,
select {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

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

svg {
  height: 1em;
  width: 1em;
}

.site-container {
  margin: 0 auto;
  max-width: var(--container);
  width: calc(100% - 88px);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.utility-bar {
  background: #fffdfa;
  border-bottom: 1px solid #ecece7;
  color: #1a211d;
  font-size: 0.73rem;
  font-weight: 600;
  height: 35px;
}

.utility-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.utility-inner p {
  align-items: center;
  display: flex;
  margin: 0;
}

.trust-dot {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 15px;
  justify-content: center;
  margin-right: 7px;
  width: 15px;
}

.utility-inner nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.utility-inner nav a {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  white-space: nowrap;
}

.utility-inner nav svg {
  color: #20372c;
  font-size: 0.95rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  height: 70px;
  position: relative;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 100%;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  width: 225px;
}

.main-navigation {
  align-items: stretch;
  display: flex;
  gap: 20px;
  height: 100%;
  margin-left: auto;
  margin-right: 36px;
}

.main-navigation > .nav-link,
.nav-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #1a211c;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.79rem;
  font-weight: 600;
  gap: 5px;
  padding: 0;
  position: relative;
  white-space: nowrap;
}

.nav-trigger {
  cursor: pointer;
  height: 100%;
}

.nav-trigger svg {
  height: 14px;
  transition: transform 160ms ease;
  width: 14px;
}

.main-navigation > .nav-link.active::after,
.nav-item.active > .nav-trigger::after {
  background: var(--green);
  bottom: 10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.nav-item {
  align-items: stretch;
  display: flex;
  position: relative;
}

.nav-item.open .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(15, 35, 23, 0.14);
  display: grid;
  gap: 3px;
  left: 50%;
  min-width: 235px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 9px);
  transform: translate(-50%, 7px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
  z-index: 50;
}

.nav-dropdown-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 410px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  align-items: center;
  border-radius: 4px;
  color: #26352c;
  display: flex;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 12px;
  justify-content: space-between;
  min-height: 34px;
  padding: 7px 9px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #f1f6f2;
  color: var(--green);
}

.nav-dropdown a small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
}

.header-cta {
  align-items: center;
  background: var(--green);
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(7, 67, 39, 0.2);
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.77rem;
  font-weight: 700;
  gap: 7px;
  height: 39px;
  justify-content: center;
  padding: 0 17px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: none;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  margin-left: auto;
  width: 40px;
}

.hero {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.25) 37%, rgba(255, 255, 255, 0) 62%),
    url("/assets/hero-coast.png");
  background-position: center center;
  background-size: cover;
  height: 435px;
  overflow: hidden;
}

.hero-content {
  height: 100%;
  padding-top: 80px;
  position: relative;
}

.hero-copy h1 {
  color: #101411;
  font-size: 3.05rem;
  font-weight: 800;
  line-height: 0.96;
  margin-bottom: 18px;
  max-width: 525px;
}

.hero-copy {
  margin-left: 36px;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy p {
  color: #29312c;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.hero-search {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(210, 214, 208, 0.9);
  border-radius: 8px;
  bottom: 33px;
  box-shadow: 0 8px 24px rgba(12, 28, 18, 0.15);
  left: 36px;
  padding: 0 18px 13px;
  position: absolute;
  right: 36px;
}

.search-tabs {
  align-items: flex-end;
  display: flex;
  gap: 50px;
  height: 38px;
}

.search-tab {
  align-self: stretch;
  background: transparent;
  border: 0;
  color: #272e29;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 1px 8px 0;
  position: relative;
}

.search-tab.active {
  color: var(--green);
  font-weight: 700;
}

.search-tab.active::after {
  background: var(--green);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.search-fields {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.95fr 0.82fr 0.78fr;
  padding-top: 10px;
}

.search-field {
  align-items: center;
  background: white;
  border: 1px solid #dfe3de;
  border-radius: 6px;
  display: flex;
  gap: 11px;
  height: 42px;
  min-width: 0;
  padding: 0 11px;
}

.search-field > svg:first-child {
  color: var(--green);
  flex: 0 0 auto;
  font-size: 1.12rem;
}

.search-field > span {
  display: block;
  min-width: 0;
  width: 100%;
}

.search-field small {
  color: #4e5750;
  display: block;
  font-size: 0.61rem;
  line-height: 1.15;
  margin-bottom: 2px;
  white-space: nowrap;
}

.search-field input,
.search-field select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #161d18;
  display: block;
  font-size: 0.71rem;
  height: 20px;
  outline: 0;
  padding: 0;
  text-overflow: ellipsis;
  width: 100%;
}

.search-field input::placeholder {
  color: #777f79;
  opacity: 1;
}

.field-chevron {
  color: #152a1f;
  flex: 0 0 auto;
  font-size: 0.88rem;
}

.search-submit {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 6px;
  color: white;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 9px;
  height: 42px;
  justify-content: center;
}

.search-submit:hover,
.header-cta:hover,
.primary-button:hover {
  background: var(--green-bright);
}

.home-section {
  background: white;
}

.categories-section {
  min-height: 227px;
  padding: 30px 0 32px;
}

.featured-section {
  min-height: 330px;
  padding: 5px 0 29px;
}

.section-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 21px;
}

.section-heading h2 {
  color: #151a17;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.section-heading h2::after {
  background: var(--gold);
  bottom: -11px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 26px;
}

.section-heading > a {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 8px;
}

.category-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-card {
  align-items: center;
  background: white;
  border: 1px solid #e1e4e0;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(19, 31, 23, 0.04);
  display: flex;
  height: 130px;
  justify-content: center;
  padding: 12px 6px;
  text-align: center;
}

.category-card,
.category-card span,
.category-card strong,
.category-card small {
  flex-direction: column;
}

.category-icon {
  background-color: #f4f0e6;
  background-image: url("/assets/category-icons.png");
  background-repeat: no-repeat;
  background-size: 360% 240%;
  border-radius: 50%;
  display: block;
  height: 58px;
  margin-bottom: 7px;
  width: 58px;
}

.category-icon-1 {
  background-position: 4% 7%;
}

.category-icon-2 {
  background-position: 50% 7%;
}

.category-icon-3 {
  background-position: 96% 7%;
}

.category-icon-4 {
  background-position: 4% 93%;
}

.category-icon-5 {
  background-position: 50% 93%;
}

.category-icon-6 {
  background-position: 96% 93%;
}

.category-card strong {
  color: #171c19;
  display: block;
  font-size: 0.82rem;
  line-height: 1.15;
  margin-bottom: 3px;
}

.category-card small {
  color: #6f7771;
  display: block;
  font-size: 0.65rem;
}

.category-card:hover {
  border-color: #b8c9bd;
  transform: translateY(-1px);
}

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

.listing-card {
  background: white;
  border: 1px solid #dfe3df;
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(18, 28, 22, 0.05);
  min-width: 0;
  overflow: hidden;
}

.featured-grid .listing-card {
  height: 250px;
}

.featured-grid .listing-card-body {
  height: 95px;
  overflow: hidden;
}

.listing-media {
  height: 155px;
  overflow: hidden;
  position: relative;
}

.listing-media > a,
.listing-media img {
  height: 100%;
  width: 100%;
}

.listing-media img {
  background: #e7ede9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.listing-card:hover .listing-media img {
  transform: scale(1.02);
}

.listing-status {
  border-radius: 4px;
  color: white;
  font-size: 0.53rem;
  font-weight: 700;
  left: 9px;
  padding: 5px 8px;
  position: absolute;
  top: 9px;
}

.status-featured {
  background: var(--gold);
}

.status-new {
  background: var(--green);
}

.status-hot {
  background: var(--red);
}

.save-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: white;
  display: flex;
  font-size: 1.3rem;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 6px;
  width: 32px;
}

.save-button svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.save-button.saved svg {
  fill: var(--gold);
  stroke: var(--gold);
}

.price-chip {
  background: rgba(8, 73, 42, 0.93);
  border-radius: 0 5px 0 0;
  bottom: 0;
  color: white;
  font-size: 0.66rem;
  font-weight: 700;
  left: 0;
  max-width: calc(100% - 12px);
  overflow: hidden;
  padding: 7px 11px;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-chip small {
  font-size: 0.9em;
  font-weight: 500;
}

.listing-card-body {
  padding: 12px 12px 10px;
}

.listing-card h3 {
  color: #121714;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 6px;
  min-height: 1.8em;
  overflow: hidden;
}

.listing-location {
  align-items: center;
  color: #626a64;
  display: flex;
  font-size: 0.63rem;
  gap: 4px;
  margin-bottom: 10px;
  min-width: 0;
  white-space: nowrap;
}

.listing-location svg {
  color: var(--green);
  flex: 0 0 auto;
}

.listing-location span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-facts {
  border-top: 1px solid #edf0ed;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 8px;
}

.listing-fact {
  align-items: center;
  display: flex;
  min-width: 0;
}

.listing-fact svg {
  color: #39433d;
  flex: 0 0 auto;
  font-size: 0.69rem;
  margin-right: 4px;
}

.listing-fact span {
  color: #434b46;
  font-size: 0.59rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-section {
  padding: 7px 0 9px;
}

.trust-grid {
  background: #faf8f2;
  border-radius: 7px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 104px;
  padding: 16px 38px;
}

.trust-grid article {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 65px minmax(0, 1fr);
  padding: 0 34px;
}

.trust-grid article + article {
  border-left: 1px solid #e6e2d8;
}

.trust-icon {
  align-items: center;
  border-radius: 50%;
  color: white;
  display: flex;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.trust-icon.green,
.trust-icon.dark {
  background: var(--green);
}

.trust-icon.gold {
  background: var(--gold);
}

.trust-icon svg {
  height: 33px;
  width: 33px;
}

.trust-grid h2 {
  color: #171b18;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.trust-grid p {
  color: #424a44;
  font-size: 0.65rem;
  line-height: 1.45;
  margin: 0;
}

.property-cta-section {
  padding: 20px 0 24px;
}

.property-cta {
  align-items: center;
  background-color: var(--green-dark);
  background-image: linear-gradient(90deg, rgba(11, 88, 49, 0.95), rgba(2, 48, 29, 0.96)),
    url("/assets/hero-coast.png");
  background-position: center 76%;
  background-size: cover;
  border-radius: 7px;
  color: white;
  display: grid;
  gap: 22px;
  grid-template-columns: 62px 1fr auto;
  min-height: 100px;
  padding: 18px 47px;
}

.cta-icon {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.cta-icon svg {
  height: 31px;
  width: 31px;
}

.property-cta h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.property-cta p {
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.68rem;
  margin: 0;
}

.property-cta a {
  align-items: center;
  background: var(--gold-light);
  border-radius: 6px;
  color: #1b1a13;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 14px;
  height: 48px;
  justify-content: center;
  padding: 0 26px;
}

.search-results-section {
  background: #f7f8f6;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 38px 0 46px;
}

.search-results-section[hidden] {
  display: none;
}

.results-heading p {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}

.load-more,
.primary-button,
.secondary-button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
}

.load-more,
.primary-button {
  background: var(--green);
  color: white;
}

.load-more {
  display: flex;
  margin: 28px auto 0;
}

.load-more[hidden] {
  display: none;
}

.secondary-button {
  background: #f2f3ef;
  color: var(--green-dark);
}

.site-footer {
  background: #111815;
  color: white;
  flex: 0 0 auto;
  min-height: 238px;
  padding-top: 22px;
}

.footer-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.45fr repeat(3, 0.84fr) 1.18fr;
  padding-bottom: 8px;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  max-height: none;
  opacity: 0.96;
  width: 190px;
}

.footer-brand p,
.newsletter-column p {
  color: #c5cbc7;
  font-size: 0.67rem;
  line-height: 1.5;
}

.footer-brand p {
  margin: 7px 0 12px;
  max-width: 205px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  align-items: center;
  border: 1px solid #323a36;
  border-radius: 50%;
  color: white;
  display: flex;
  height: 28px;
  justify-content: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  width: 28px;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #102319;
}

.social-links a svg {
  fill: none;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.footer-column h2 {
  color: white;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.footer-column > a {
  color: #d4d8d5;
  font-size: 0.66rem;
  margin-bottom: 5px;
}

.newsletter-column p {
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.newsletter-form input {
  background: #171f1b;
  border: 1px solid #38413c;
  border-radius: 5px;
  color: white;
  font-size: 0.64rem;
  height: 34px;
  padding: 0 11px;
}

.newsletter-form button {
  background: var(--green);
  border: 0;
  border-radius: 5px;
  color: white;
  font-size: 0.64rem;
  height: 34px;
}

.newsletter-message {
  color: #dce9df;
  font-size: 0.58rem;
  min-height: 12px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #2a312d;
  color: #aeb5b0;
  display: flex;
  font-size: 0.6rem;
  justify-content: space-between;
  min-height: 48px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  align-items: center;
  display: flex;
  gap: 15px;
}

.footer-bottom div span {
  background: #565d59;
  height: 12px;
  width: 1px;
}

.inner-hero {
  background: #f5f7f4;
  border-bottom: 1px solid var(--line);
  padding: 54px 0 46px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.inner-hero h1,
.subpage-hero h1 {
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.inner-hero p:last-child,
.subpage-hero .site-container > p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 760px;
}

.listing-section {
  padding: 40px 0 52px;
}

.parish-selector {
  align-items: center;
  background: #f7f9f6;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 18px;
  grid-template-columns: 165px minmax(0, 1fr);
  margin: -4px 0 26px;
  padding: 13px;
}

.parish-selector-heading {
  align-items: center;
  display: flex;
  gap: 9px;
}

.parish-selector-heading > svg {
  color: var(--green);
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.parish-selector-heading strong,
.parish-selector-heading span {
  display: block;
}

.parish-selector-heading strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.parish-selector-heading span {
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.3;
  margin-top: 2px;
}

.parish-selector-list {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.parish-option {
  align-items: center;
  background: white;
  border: 1px solid #dfe5df;
  border-radius: 4px;
  color: #26352c;
  display: flex;
  font-size: 0.61rem;
  font-weight: 600;
  gap: 5px;
  justify-content: space-between;
  min-height: 29px;
  min-width: 0;
  padding: 5px 7px;
}

.parish-option > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.parish-option small {
  color: var(--green);
  flex: 0 0 auto;
  font-size: 0.56rem;
}

.parish-option:hover,
.parish-option:focus-visible,
.parish-option.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.parish-option:hover small,
.parish-option:focus-visible small,
.parish-option.active small {
  color: white;
}

.parish-option.disabled {
  color: #8d968f;
  opacity: 0.62;
}

.directory-hub-section {
  padding: 42px 0 58px;
}

.directory-hub-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-hub-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 13px;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  min-height: 82px;
  padding: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.directory-hub-card:hover {
  border-color: #b8c9bd;
  box-shadow: 0 7px 18px rgba(21, 48, 32, 0.08);
  transform: translateY(-1px);
}

.directory-hub-icon {
  align-items: center;
  background: #eef5ef;
  border-radius: 50%;
  color: var(--green);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.directory-hub-icon svg {
  height: 20px;
  width: 20px;
}

.directory-hub-card strong,
.directory-hub-card small {
  display: block;
}

.directory-hub-card strong {
  color: var(--ink);
  font-size: 0.82rem;
  margin-bottom: 3px;
}

.directory-hub-card small {
  color: var(--muted);
  font-size: 0.65rem;
}

.directory-hub-card > svg {
  color: var(--green);
  height: 16px;
  width: 16px;
}

.directory-empty {
  align-items: center;
  background: #f7f9f6;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 42px 20px;
  text-align: center;
}

.directory-empty > svg {
  color: var(--green);
  height: 30px;
  margin-bottom: 12px;
  width: 30px;
}

.directory-empty h2 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 7px;
}

.directory-empty p {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 18px;
  max-width: 440px;
}

.directory-page .listing-media {
  height: 190px;
}

.directory-page .listing-card h3 {
  font-size: 0.79rem;
}

.related-searches {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 28px;
}

.related-searches h2 {
  color: var(--ink);
  font-size: 1rem;
}

.related-searches > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.related-searches a {
  background: #f5f7f4;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 8px 10px;
}

.related-searches a span {
  color: var(--green);
}

.detail-page {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  padding-bottom: 48px;
  padding-top: 55px;
}

.detail-media img {
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.detail-price {
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.detail-price small {
  font-size: 0.62em;
  font-weight: 500;
}

.detail-location {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  gap: 6px;
}

.detail-facts {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.detail-facts .listing-fact span {
  font-size: 0.76rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.agent-contact-card {
  align-items: center;
  background: #f5f8f5;
  border: 1px solid #dce6de;
  border-radius: 7px;
  display: grid;
  gap: 13px;
  grid-template-columns: 54px minmax(0, 1fr);
  margin-top: 22px;
  padding: 17px;
}

.agent-avatar {
  border-radius: 50%;
  display: block;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.agent-initials,
.agent-avatar-placeholder {
  align-items: center;
  background: var(--green);
  color: white;
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
}

.agent-avatar-placeholder {
  background: #e1e8e3;
  color: #657169;
}

.agent-avatar-placeholder svg {
  height: 23px;
  width: 23px;
}

.agent-kicker {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 0.58rem;
  font-weight: 800;
  gap: 4px;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.agent-kicker svg {
  height: 12px;
  width: 12px;
}

.agent-contact-copy h2 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
  margin: 0 0 3px;
}

.agent-contact-copy > p:last-of-type {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
  margin: 0;
}

.agent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 8px;
}

.agent-meta span {
  align-items: center;
  color: #4e5a52;
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 600;
  gap: 4px;
}

.agent-meta svg {
  color: var(--green);
  height: 13px;
  width: 13px;
}

.whatsapp-button {
  align-items: center;
  background: #177c48;
  border: 0;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 8px;
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #11663a;
}

.whatsapp-button svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 17px;
}

.agent-contact-note {
  color: var(--muted);
  font-size: 0.57rem;
  grid-column: 1 / -1;
  line-height: 1.35;
  margin: -3px 0 0;
  text-align: center;
}

.agent-save-button {
  grid-column: 1 / -1;
}

.agent-call-button {
  grid-column: 1 / -1;
}

.contact-dialog {
  background: transparent;
  border: 0;
  color: var(--ink);
  max-height: calc(100vh - 40px);
  max-width: 520px;
  overflow: visible;
  padding: 0;
  width: calc(100% - 34px);
}

.contact-dialog::backdrop {
  background: rgba(10, 24, 16, 0.66);
}

.contact-dialog-card {
  background: white;
  border-radius: 7px;
  box-shadow: 0 22px 65px rgba(4, 17, 10, 0.3);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 27px;
  position: relative;
}

.dialog-close {
  align-items: center;
  background: #eef2ef;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 17px;
  top: 17px;
  width: 34px;
}

.dialog-close svg {
  height: 17px;
  width: 17px;
}

.contact-dialog-heading {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding-right: 35px;
}

.contact-dialog-heading h2 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.1;
  margin: 0 0 4px;
}

.contact-dialog-heading > div > p:last-child {
  color: var(--muted);
  font-size: 0.68rem;
  margin: 0;
}

.whatsapp-enquiry-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
}

.whatsapp-enquiry-form label > span {
  color: #38443c;
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.whatsapp-enquiry-form label small {
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 500;
}

.whatsapp-enquiry-form input,
.whatsapp-enquiry-form textarea {
  background: white;
  border: 1px solid #d7ded9;
  border-radius: 5px;
  color: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  outline: 0;
  padding: 10px 11px;
  resize: vertical;
  width: 100%;
}

.whatsapp-enquiry-form input {
  height: 42px;
}

.whatsapp-enquiry-form input:focus,
.whatsapp-enquiry-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 102, 58, 0.1);
}

.contact-privacy-note {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 0.59rem;
  gap: 6px;
  line-height: 1.4;
  margin: -3px 0 0;
}

.contact-privacy-note svg {
  color: var(--green);
  flex: 0 0 auto;
  height: 13px;
  margin-top: 1px;
  width: 13px;
}

.description-block {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  padding-top: 26px;
}

.description-block h2 {
  color: var(--ink);
  font-size: 1.25rem;
}

.description-block p {
  color: #454d47;
  font-size: 0.9rem;
  max-width: 920px;
}

.similar-listings {
  background: #f7f8f6;
}

.subpage-hero {
  align-items: center;
  background-color: #f3f6f2;
  background-image: linear-gradient(90deg, rgba(243, 246, 242, 0.98), rgba(243, 246, 242, 0.86)),
    url("/assets/hero-coast.png");
  background-position: center 44%;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  display: flex;
  min-height: 222px;
  padding: 43px 0;
}

.subpage-hero h1 {
  font-size: 2.8rem;
}

.subpage-content {
  background: white;
  padding: 48px 0 58px;
}

.split-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
}

.content-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 4px 16px rgba(17, 28, 21, 0.06);
  padding: 28px;
}

.content-panel h2,
.faq-layout h2,
.account-benefits h2 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.content-panel > p:not(.eyebrow),
.faq-layout > div > p:last-child,
.account-benefits > p {
  color: var(--muted);
  font-size: 0.83rem;
}

.owner-intro {
  background: #f8f8f4;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin: 26px 0;
  padding: 0;
}

.process-list li {
  align-items: flex-start;
  display: grid;
  gap: 13px;
  grid-template-columns: 34px 1fr;
}

.process-list li > span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.process-list strong {
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.process-list p {
  color: var(--muted);
  font-size: 0.7rem;
  margin: 0;
}

.support-note {
  align-items: center;
  background: #edf5ef;
  border-radius: 6px;
  color: var(--green);
  display: flex;
  gap: 12px;
  padding: 13px;
}

.support-note > svg {
  flex: 0 0 auto;
  font-size: 1.5rem;
}

.support-note span {
  color: var(--muted);
  font-size: 0.66rem;
}

.support-note strong {
  color: var(--ink);
  display: block;
  font-size: 0.73rem;
}

.support-note a,
.legal-copy a {
  color: var(--green);
  font-weight: 700;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  margin-bottom: 0;
}

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

.site-form label {
  display: block;
}

.site-form label > span {
  color: #3d463f;
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.site-form input,
.site-form select,
.site-form textarea {
  background: white;
  border: 1px solid #d9ded9;
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.75rem;
  outline: 0;
  padding: 0 11px;
  width: 100%;
}

.site-form input,
.site-form select {
  height: 42px;
}

.site-form input[type="file"] {
  height: auto;
  padding: 7px;
}

.site-form input[type="file"]::file-selector-button {
  background: #edf5ef;
  border: 0;
  border-radius: 4px;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  margin-right: 10px;
  padding: 8px 10px;
}

.site-form textarea {
  line-height: 1.45;
  min-height: 100px;
  padding-bottom: 10px;
  padding-top: 10px;
  resize: vertical;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 93, 54, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  display: block;
  font-size: 0.64rem;
  line-height: 1.45;
  margin-top: 6px;
}

.site-form .checkbox-row {
  align-items: flex-start;
  display: flex;
  gap: 9px;
}

.site-form .checkbox-row input {
  flex: 0 0 auto;
  height: 17px;
  margin-top: 2px;
  width: 17px;
}

.site-form .checkbox-row > span {
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.site-form .checkbox-row a {
  color: var(--green);
  font-weight: 700;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.honeypot[hidden] {
  display: none;
}

.site-form .primary-button {
  margin-top: 20px;
}

.site-form .primary-button:disabled,
.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-message {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  margin: 12px 0 0;
  min-height: 1.2em;
}

.form-message.error,
.newsletter-message.error {
  color: #a52622;
}

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

.help-card-grid article {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px;
}

.help-card-grid article > svg {
  background: #eef5ef;
  border-radius: 50%;
  color: var(--green);
  height: 50px;
  margin-bottom: 16px;
  padding: 12px;
  width: 50px;
}

.help-card-grid h2 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 8px;
}

.help-card-grid p {
  color: var(--muted);
  font-size: 0.74rem;
  min-height: 3.2em;
}

.help-card-grid a,
.saved-card-action a {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 6px;
}

.faq-layout {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 48px;
  padding-top: 42px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.faq-list details + details {
  padding-top: 14px;
}

.faq-list summary {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
}

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

.faq-list summary svg {
  color: var(--green);
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 10px 0 0;
  max-width: 650px;
}

.contact-layout {
  grid-template-columns: minmax(310px, 0.78fr) minmax(440px, 1.22fr);
}

.contact-details > a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 38px 1fr;
  padding: 15px 0;
}

.contact-details > a > svg {
  background: #edf5ef;
  border-radius: 50%;
  color: var(--green);
  height: 38px;
  padding: 9px;
  width: 38px;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: var(--muted);
  font-size: 0.6rem;
}

.contact-details strong {
  color: var(--ink);
  font-size: 0.7rem;
}

.account-section {
  background: #f6f7f4;
}

.account-layout {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.8fr;
  max-width: 950px;
}

.account-benefits > div {
  align-items: flex-start;
  display: grid;
  gap: 13px;
  grid-template-columns: 38px 1fr;
  margin-top: 18px;
}

.account-benefits > div > span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.account-benefits > div p {
  color: var(--muted);
  font-size: 0.7rem;
  margin: 0;
}

.account-benefits > div strong {
  color: var(--ink);
  display: block;
  font-size: 0.76rem;
  margin-bottom: 3px;
}

.account-status-panel {
  padding: 32px;
}

.account-status-panel > p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.account-status-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.account-status-actions a {
  width: 100%;
}

.account-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  margin: 18px 0 0;
  padding-top: 15px;
  text-align: center;
}

.submission-success-section {
  background: #f7f8f5;
}

.submission-success-panel {
  margin: 0 auto;
  max-width: 720px;
  padding: 42px;
  text-align: center;
}

.submission-success-mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.submission-success-mark svg {
  height: 34px;
  width: 34px;
}

.submission-success-panel > p:not(.eyebrow, .submission-reference) {
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  max-width: 570px;
}

.submission-reference {
  background: #edf5ef;
  border: 1px solid #d5e6d9;
  border-radius: 6px;
  margin: 24px auto;
  max-width: 390px;
  padding: 14px 18px;
}

.submission-reference span,
.submission-reference strong {
  display: block;
}

.submission-reference span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.submission-reference strong {
  color: var(--green);
  font-size: 0.92rem;
}

.submission-next-steps {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
  padding: 24px 0;
  text-align: left;
}

.submission-next-steps > div {
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 1fr;
}

.submission-next-steps > div > span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.submission-next-steps p {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
  margin: 0;
}

.submission-next-steps strong {
  color: var(--ink);
  display: block;
  font-size: 0.73rem;
}

.submission-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.not-found-section {
  background: #f7f8f5;
}

.not-found-layout {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  max-width: 1040px;
}

.not-found-copy h2,
.not-found-directory h2 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.not-found-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.82rem;
}

.not-found-icon {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 20px;
  width: 54px;
}

.not-found-icon svg {
  height: 28px;
  width: 28px;
}

.not-found-search {
  margin-top: 26px;
}

.not-found-search > label {
  color: var(--ink);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.not-found-search > div {
  align-items: center;
  background: white;
  border: 1px solid #d9ded9;
  border-radius: 6px;
  display: grid;
  gap: 8px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  padding: 7px 7px 7px 13px;
}

.not-found-search > div > span {
  color: var(--green);
  display: flex;
}

.not-found-search input {
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.75rem;
  min-width: 0;
  outline: 0;
  padding: 0 4px;
}

.not-found-search button {
  cursor: pointer;
  white-space: nowrap;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.not-found-directory {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.not-found-directory nav {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.not-found-directory nav a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-size: 0.73rem;
  font-weight: 700;
  justify-content: space-between;
  min-height: 44px;
}

.not-found-directory nav a:hover {
  color: var(--green);
}

.not-found-directory nav svg {
  color: var(--green);
  height: 16px;
  width: 16px;
}

.saved-section {
  min-height: 390px;
}

.saved-heading {
  margin-bottom: 28px;
}

.saved-empty {
  align-items: center;
  border: 1px dashed #cfd7d0;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 35px;
  text-align: center;
}

.saved-empty[hidden] {
  display: none;
}

.saved-empty > svg {
  color: var(--green);
  height: 38px;
  margin-bottom: 13px;
  width: 38px;
}

.saved-empty h2 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.saved-empty p {
  color: var(--muted);
  font-size: 0.73rem;
  margin-bottom: 16px;
}

.saved-card-action {
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.guide-layout {
  align-items: start;
  display: grid;
  gap: 65px;
  grid-template-columns: 220px 1fr;
}

.guide-sidebar {
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  position: sticky;
  top: 24px;
}

.guide-sidebar a {
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.guide-sidebar a:hover {
  color: var(--green);
}

.guide-article section {
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr;
  padding: 0 0 28px;
}

.guide-article section + section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.guide-article section > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.guide-article h2,
.legal-copy h2 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.guide-article p,
.legal-copy p {
  color: #4d5650;
  font-size: 0.78rem;
  line-height: 1.65;
}

.legal-section {
  background: #fafafa;
}

.legal-copy {
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  max-width: 850px;
  padding: 38px 42px;
}

.legal-copy h2 {
  margin-top: 28px;
}

.legal-copy h2:first-of-type {
  margin-top: 16px;
}

.legal-updated {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem !important;
  padding-bottom: 16px;
}

.admin-page {
  background: #f3f5f2;
  color: var(--body);
  display: block;
}

.admin-page [hidden] {
  display: none !important;
}

.admin-header {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.admin-brand {
  display: block;
  width: 218px;
}

.admin-brand .brand-logo {
  width: 100%;
}

.admin-identity {
  align-items: center;
  display: flex;
  gap: 12px;
}

.admin-identity > span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.68rem;
  gap: 7px;
}

.admin-identity > span svg {
  color: var(--green);
  height: 17px;
  width: 17px;
}

.admin-identity strong {
  color: var(--ink);
  font-weight: 700;
}

.admin-icon-button,
.admin-command-button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
}

.admin-icon-button {
  border-radius: 5px;
  height: 36px;
  padding: 0;
  width: 36px;
}

.admin-command-button {
  border-radius: 5px;
  min-height: 40px;
  padding: 0 14px;
}

.admin-icon-button:hover,
.admin-command-button:hover {
  background: #edf5ef;
  border-color: #cddfd2;
}

.admin-login {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 42px 20px;
}

.admin-login-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
  max-width: 440px;
  padding: 38px;
  width: 100%;
}

.admin-login-icon {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.admin-login-icon svg {
  height: 23px;
  width: 23px;
}

.admin-login-panel h1 {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.admin-login-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}

.admin-login-panel form {
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
  padding-bottom: 22px;
}

.admin-login-panel label,
.admin-filters label,
.admin-status-control label {
  color: var(--ink);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-login-panel input,
.admin-filters input,
.admin-filters select,
.admin-status-control select {
  background: white;
  border: 1px solid #d7ddd8;
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.73rem;
  height: 42px;
  outline: 0;
  padding: 0 11px;
  width: 100%;
}

.admin-login-panel input:focus,
.admin-filters input:focus,
.admin-filters select:focus,
.admin-status-control select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 93, 54, 0.1);
}

.admin-login-panel form .primary-button {
  margin-top: 12px;
  width: 100%;
}

.admin-login-panel input[name="code"] {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.admin-login-secondary {
  background: transparent;
  border: 0;
  color: var(--green);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  margin-top: 10px;
  padding: 0;
}

.admin-login-secondary:hover {
  text-decoration: underline;
}

.admin-form-message,
.admin-global-message,
.admin-status-control p {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  margin: 10px 0 0;
  min-height: 1.1em;
}

.admin-form-message.error,
.admin-global-message.error,
.admin-status-control p.error {
  color: #a52622;
}

.admin-back-link {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 7px;
  margin-top: 20px;
}

.admin-dashboard {
  margin: 0 auto;
  max-width: 1540px;
  padding: 28px;
}

.admin-dashboard-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-dashboard-heading h1 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0;
}

.admin-dashboard-heading .eyebrow {
  margin-bottom: 5px;
}

.admin-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-metrics button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 42px auto 1fr;
  min-height: 88px;
  padding: 16px;
  text-align: left;
}

.admin-metrics button:hover {
  border-color: #b9d1c0;
  box-shadow: 0 3px 10px rgba(17, 28, 21, 0.05);
}

.admin-metrics button > span {
  align-items: center;
  background: #edf5ef;
  border-radius: 50%;
  color: var(--green);
  display: flex;
  grid-row: 1 / 4;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.admin-metrics button > span svg {
  height: 20px;
  width: 20px;
}

.admin-metrics strong {
  color: var(--ink);
  font-size: 1.3rem;
  grid-column: 2;
  line-height: 1;
}

.admin-metrics small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  grid-column: 2 / 4;
}

.admin-metrics em {
  color: var(--green);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.admin-workspace {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 210px minmax(340px, 0.82fr) minmax(430px, 1.18fr);
  min-height: 650px;
  overflow: hidden;
}

.admin-controls {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
}

.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: #4a554d;
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 9px;
  min-height: 40px;
  padding: 0 11px;
  text-align: left;
  width: 100%;
}

.admin-tabs button:hover {
  background: #f5f7f4;
}

.admin-tabs button.active {
  background: var(--green);
  color: white;
}

.admin-tabs button svg {
  flex: 0 0 auto;
  height: 17px;
  width: 17px;
}

.admin-filters {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding: 18px 6px 0;
}

.admin-filters label:not(:first-child) {
  margin-top: 14px;
}

.admin-search-field {
  align-items: center;
  border: 1px solid #d7ddd8;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 28px 1fr;
  padding-left: 7px;
}

.admin-search-field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 93, 54, 0.1);
}

.admin-search-field svg {
  color: var(--muted);
  height: 16px;
  justify-self: center;
  width: 16px;
}

.admin-search-field input {
  border: 0;
  box-shadow: none;
  min-width: 0;
  padding-left: 2px;
}

.admin-records-panel {
  border-right: 1px solid var(--line);
  min-width: 0;
}

.admin-records-panel > header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 18px;
}

.admin-records-panel h2 {
  color: var(--ink);
  font-size: 0.88rem;
  margin: 0 0 3px;
}

.admin-records-panel header p {
  color: var(--muted);
  font-size: 0.62rem;
  margin: 0;
}

.admin-loading {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 0.62rem;
  font-weight: 700;
  gap: 5px;
}

.admin-loading svg {
  animation: admin-spin 0.9s linear infinite;
}

@keyframes admin-spin {
  to {
    transform: rotate(360deg);
  }
}

.admin-record-list {
  max-height: 650px;
  overflow-y: auto;
}

.admin-record-row {
  background: white;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: block;
  padding: 14px 17px;
  text-align: left;
  width: 100%;
}

.admin-record-row:hover {
  background: #f8faf8;
}

.admin-record-row.active {
  background: #edf5ef;
  box-shadow: inset 3px 0 0 var(--green);
}

.admin-record-row-top {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.admin-record-row strong {
  color: var(--ink);
  font-size: 0.73rem;
  line-height: 1.3;
  min-width: 0;
}

.admin-record-subtitle,
.admin-record-meta,
.admin-record-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-record-subtitle {
  color: #48534b;
  font-size: 0.66rem;
  margin-top: 6px;
}

.admin-record-meta {
  color: var(--muted);
  font-size: 0.62rem;
  margin-top: 3px;
}

.admin-record-row small {
  color: #8a928c;
  font-size: 0.57rem;
  margin-top: 8px;
}

.admin-status {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  padding: 4px 7px;
  text-transform: uppercase;
}

.status-pending,
.status-new {
  background: #fff3cf;
  color: #8a5d00;
}

.status-reviewing,
.status-in_progress {
  background: #e4f1f7;
  color: #12617c;
}

.status-approved,
.status-published,
.status-subscribed,
.status-resolved {
  background: #e4f3e8;
  color: var(--green);
}

.status-rejected,
.status-spam {
  background: #fbe8e6;
  color: #9d2d29;
}

.status-unsubscribed {
  background: #ecefec;
  color: #59615b;
}

.admin-record-empty,
.admin-detail-empty {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 32px;
  text-align: center;
}

.admin-record-empty svg,
.admin-detail-empty > svg {
  color: #a1aaa4;
  height: 28px;
  margin-bottom: 12px;
  width: 28px;
}

.admin-record-empty strong,
.admin-detail-empty h2 {
  color: var(--ink);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.admin-record-empty p,
.admin-detail-empty p {
  font-size: 0.65rem;
  margin: 0;
}

.admin-load-more {
  background: #f8faf8;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  min-height: 42px;
  width: 100%;
}

.admin-detail-panel {
  max-height: 722px;
  min-width: 0;
  overflow-y: auto;
  padding: 22px;
  scroll-margin-top: 76px;
}

.admin-detail-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.admin-detail-header .eyebrow {
  margin-bottom: 5px;
}

.admin-detail-header h2 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  margin: 0;
}

.admin-detail-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-detail-actions a {
  align-items: center;
  background: #edf5ef;
  border-radius: 5px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
}

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

.admin-detail-field {
  border-bottom: 1px solid var(--line);
  min-width: 0;
  padding: 11px 0;
}

.admin-detail-field dt {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.admin-detail-field dd {
  color: var(--ink);
  font-size: 0.68rem;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.admin-detail-field.admin-detail-wide {
  grid-column: 1 / -1;
}

.admin-detail-field.error dd {
  color: #a52622;
}

.admin-images-section {
  margin-top: 22px;
}

.admin-images-section h3 {
  color: var(--ink);
  font-size: 0.76rem;
  margin-bottom: 11px;
}

.admin-images-section h3 span {
  color: var(--muted);
  font-size: 0.62rem;
  margin-left: 4px;
}

.admin-property-images {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-property-images a {
  aspect-ratio: 4 / 3;
  background: #eef1ee;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.admin-property-images img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-no-images {
  background: #f6f7f5;
  color: var(--muted);
  font-size: 0.65rem;
  margin: 0;
  padding: 14px;
}

.admin-status-control {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
}

.admin-status-control > div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-status-control .primary-button {
  min-height: 42px;
}

.admin-status-control .primary-button:disabled,
.admin-command-button:disabled,
.admin-login-panel button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.admin-global-message {
  margin: 10px 0 0;
}

@media (max-width: 1120px) {
  .site-container {
    width: calc(100% - 88px);
  }

  .main-navigation {
    gap: 12px;
    margin-right: 20px;
  }

  .main-navigation > .nav-link,
  .nav-trigger {
    font-size: 0.7rem;
  }

  .header-cta {
    padding: 0 13px;
  }

  .footer-grid {
    gap: 25px;
  }

  .trust-grid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .trust-grid article {
    padding: 0 12px;
  }

  .admin-dashboard {
    padding-left: 20px;
    padding-right: 20px;
  }

  .admin-workspace {
    grid-template-columns: 180px minmax(320px, 0.9fr) minmax(370px, 1.1fr);
  }
}

@media (max-width: 820px) {
  .site-container {
    width: calc(100% - 34px);
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    height: 66px;
  }

  .main-navigation {
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    height: auto;
    left: 0;
    margin: 0;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    padding: 14px 18px 20px;
    position: absolute;
    right: 0;
    top: 66px;
  }

  .main-navigation.open {
    display: flex;
    flex-direction: column;
  }

  .main-navigation > .nav-link,
  .nav-trigger {
    font-size: 0.82rem;
    min-height: 42px;
    width: 100%;
  }

  .main-navigation > .nav-link.active::after,
  .nav-item.active > .nav-trigger::after {
    display: none;
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-trigger {
    justify-content: space-between;
  }

  .nav-dropdown {
    border: 0;
    border-left: 2px solid #dce8df;
    border-radius: 0;
    box-shadow: none;
    display: none;
    gap: 2px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: auto;
    margin: 0 0 8px 7px;
    max-height: 310px;
    min-width: 0;
    opacity: 1;
    overflow-y: auto;
    padding: 3px 0 3px 11px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: calc(100% - 7px);
  }

  .nav-item.open .nav-dropdown {
    display: grid;
    transform: none;
  }

  .nav-dropdown a {
    font-size: 0.72rem;
    min-height: 34px;
    padding: 6px 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    margin-left: 6px;
  }

  .hero {
    height: 560px;
  }

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

  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .hero-search {
    bottom: 22px;
  }

  .search-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parish-selector {
    display: none;
  }

  .directory-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .categories-section {
    padding-bottom: 32px;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .trust-grid article {
    border: 0;
    padding: 0;
  }

  .trust-grid article + article {
    border-left: 0;
    border-top: 1px solid #e6e2d8;
    padding-top: 20px;
  }

  .property-cta {
    grid-template-columns: 62px 1fr;
    padding: 24px;
  }

  .property-cta a {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .detail-page {
    grid-template-columns: 1fr;
  }

  .description-block {
    grid-column: 1;
  }

  .split-layout,
  .contact-layout,
  .account-layout,
  .faq-layout {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .help-card-grid {
    grid-template-columns: 1fr;
  }

  .help-card-grid p {
    min-height: 0;
  }

  .guide-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    display: none;
  }

  .admin-header {
    padding-left: 17px;
    padding-right: 17px;
  }

  .admin-dashboard {
    padding: 22px 17px;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-controls,
  .admin-records-panel {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-tabs button {
    justify-content: center;
  }

  .admin-filters {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(150px, 0.65fr) minmax(220px, 1.35fr);
  }

  .admin-filters label:not(:first-child) {
    margin-top: 0;
  }

  .admin-filters label:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .admin-search-field {
    grid-column: 2;
  }

  .admin-record-list,
  .admin-detail-panel {
    max-height: none;
  }

  .admin-detail-panel {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 178px;
  }

  .directory-hub-grid {
    grid-template-columns: 1fr;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    padding: 0;
    width: 39px;
  }

  .hero {
    background-position: 62% center;
    height: 610px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-copy p br {
    display: none;
  }

  .hero-search {
    bottom: 18px;
    left: 0;
    padding: 0 14px 15px;
    right: 0;
  }

  .search-tabs {
    gap: 0;
  }

  .search-tab {
    flex: 1;
    padding-left: 4px;
    padding-right: 4px;
  }

  .search-fields {
    gap: 12px;
    grid-template-columns: 1fr;
    padding-top: 12px;
  }

  .search-field {
    height: 48px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .search-field small {
    font-size: 0.64rem;
  }

  .search-field input,
  .search-field select {
    font-size: 0.75rem;
  }

  .search-submit {
    font-size: 0.84rem;
    height: 52px;
  }

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

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 106px;
  }

  .featured-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-grid::-webkit-scrollbar {
    display: none;
  }

  .featured-grid .listing-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }

  .featured-grid .listing-media {
    height: 155px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 20px;
  }

  .listing-media,
  .directory-page .listing-media {
    height: 230px;
  }

  .trust-grid article {
    gap: 14px;
    grid-template-columns: 55px 1fr;
  }

  .trust-icon,
  .cta-icon {
    height: 52px;
    width: 52px;
  }

  .property-cta {
    grid-template-columns: 52px 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .newsletter-column {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .inner-hero h1,
  .subpage-hero h1 {
    font-size: 2rem;
  }

  .detail-copy h1 {
    font-size: 1.9rem;
  }

  .agent-contact-card {
    padding: 15px;
  }

  .contact-dialog {
    max-height: calc(100vh - 24px);
    width: calc(100% - 24px);
  }

  .contact-dialog-card {
    max-height: calc(100vh - 24px);
    padding: 23px 18px 20px;
  }

  .subpage-hero {
    min-height: 200px;
    padding: 34px 0;
  }

  .subpage-content {
    padding: 34px 0 42px;
  }

  .content-panel,
  .legal-copy {
    padding: 22px;
  }

  .submission-next-steps {
    grid-template-columns: 1fr;
  }

  .submission-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .submission-success-actions a {
    width: 100%;
  }

  .not-found-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .not-found-directory {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
  }

  .not-found-search > div {
    align-items: stretch;
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .not-found-search > div > span {
    align-items: center;
  }

  .not-found-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-actions a {
    width: 100%;
  }

  .admin-header {
    height: 60px;
  }

  .admin-brand {
    width: 166px;
  }

  .admin-identity > span strong {
    display: none;
  }

  .admin-login {
    min-height: calc(100vh - 60px);
    padding: 24px 17px;
  }

  .admin-login-panel {
    padding: 26px 22px;
  }

  .admin-dashboard-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .admin-dashboard-heading h1 {
    font-size: 1.25rem;
  }

  .admin-command-button {
    padding: 0;
    width: 40px;
  }

  .admin-command-button {
    font-size: 0;
  }

  .admin-command-button svg {
    font-size: 1rem;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-metrics button {
    min-height: 76px;
  }

  .admin-tabs button {
    flex-direction: column;
    font-size: 0.58rem;
    gap: 3px;
    min-height: 52px;
    padding: 5px;
  }

  .admin-filters {
    display: block;
  }

  .admin-filters label:not(:first-child) {
    margin-top: 13px;
  }

  .admin-search-field {
    margin-top: 0;
  }

  .admin-records-panel > header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-detail-panel {
    padding: 18px 14px;
  }

  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-detail-field.admin-detail-wide {
    grid-column: 1;
  }

  .admin-property-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-status-control > div {
    grid-template-columns: 1fr;
  }

  .admin-status-control .primary-button {
    width: 100%;
  }

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

  .form-wide {
    grid-column: 1;
  }

  .guide-article section {
    gap: 12px;
    grid-template-columns: 30px 1fr;
  }
}

@media (max-width: 360px) {
  .hero {
    height: 665px;
  }
}
