:root {
  --cream: #c7d0d5;
  --sand: #e7c8be;
  --rose: #d88f71;
  --sage: #7fb8b4;
  --forest: #0c7881;
  --white: #ffffff;
  --text: #1f3c40;
  --radius: 1rem;
  --shadow: 0 8px 24px rgba(12, 120, 129, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #eef2f4, #ffffff);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--forest);
}

h1,
h2,
h3 {
  font-family: "Quicksand", system-ui, sans-serif;
  margin-top: 0;
  color: var(--forest);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(12, 120, 129, 0.15);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand__dot {
  color: var(--rose);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

nav a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
  padding: 0.2rem 0.35rem;
  border-radius: 0.5rem;
}

nav a:hover {
  background: rgba(127, 184, 180, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(12, 120, 129, 0.25);
  background: rgba(255, 255, 255, 0.75);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: rgba(231, 200, 190, 0.34);
}

.hero__grid,
.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 120, 129, 0.12);
  border-top: 4px solid rgba(127, 184, 180, 0.45);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(12, 120, 129, 0.2);
}

.emphasis {
  border-left: 8px solid var(--rose);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--forest);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}

.btn--ghost {
  border: 2px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn--primary:hover {
  background: #09686f;
}

.btn--ghost:hover {
  background: rgba(127, 184, 180, 0.2);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.trust-list li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(12, 120, 129, 0.14);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(12, 120, 129, 0.12);
  border-bottom: 1px solid rgba(12, 120, 129, 0.12);
  background: #f8fbfc;
}

.ticker {
  display: inline-flex;
  gap: 0.8rem;
  padding: 0.7rem 0;
  white-space: nowrap;
  min-width: 100%;
  animation: tickerMove 22s linear infinite;
  font-weight: 700;
  color: var(--forest);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.bento__main {
  grid-column: span 2;
}

.bento__second {
  background: linear-gradient(160deg, #ffffff, #f7fbfb);
}

.bento__third {
  border-style: dashed;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chips li {
  background: var(--sage);
  color: #0f3f45;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
}


.form-intro {
  margin-top: -0.2rem;
  font-size: 0.95rem;
  color: #29575b;
}

.feedback {
  margin: 0.85rem 0 0;
  font-weight: 700;
  color: var(--forest);
}

.feedback--error {
  color: #9f2f2f;
}

.tips-card {
  margin-top: 1.1rem;
}

.tips-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

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

.form label,
.form fieldset {
  display: block;
  margin-bottom: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.65rem;
  border: 1px solid rgba(47, 79, 70, 0.25);
  border-radius: 0.7rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(127, 184, 180, 0.6);
  border-color: var(--forest);
}

fieldset {
  border: 1px solid rgba(47, 79, 70, 0.2);
  border-radius: 0.7rem;
  padding: 0.7rem;
}

fieldset label {
  margin-bottom: 0.35rem;
}

fieldset input {
  width: auto;
  margin-right: 0.35rem;
}

.inline-2 {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calendar {
  display: grid;
  gap: 0.55rem;
}

.calendar button {
  text-align: left;
  border-radius: 0.7rem;
  border: 1px solid rgba(47, 79, 70, 0.2);
  background: #fff;
  padding: 0.65rem;
  font: inherit;
  cursor: pointer;
}

.calendar button.selected {
  border-color: var(--forest);
  background: rgba(127, 184, 180, 0.26);
}

.contact-note {
  font-weight: 700;
  color: var(--forest);
}

.map-card iframe {
  width: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer {
  padding: 1.25rem 0 2rem;
  text-align: center;
}


.estimator {
  align-self: start;
}

.price-estimate {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0.8rem 0;
}

.estimator__hint {
  margin: 0;
  font-size: 0.93rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  color: var(--forest);
}

.faq-list details[open] summary {
  margin-bottom: 0.55rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(12, 120, 129, 0.16);
  padding: 0.55rem;
  text-align: left;
  vertical-align: top;
}

.admin-table input {
  min-width: 120px;
}

.admin-table td .btn {
  margin-bottom: 0.35rem;
}

.media-grid {
  align-items: stretch;
}

.media-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.media-card figcaption {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid rgba(12, 120, 129, 0.16);
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.asset-credit {
  font-size: 0.92rem;
  margin-top: 0.55rem;
}

.asset-credit a {
  color: var(--forest);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -2;
  opacity: 0.45;
}

.bg-orb--one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -110px;
  background: radial-gradient(circle at center, rgba(127, 184, 180, 0.6), transparent 67%);
}

.bg-orb--two {
  width: 350px;
  height: 350px;
  left: -100px;
  top: 50%;
  background: radial-gradient(circle at center, rgba(216, 143, 113, 0.5), transparent 68%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 0.45px, transparent 0.6px);
  background-size: 4px 4px;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(130deg, var(--forest), #0f969f);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(12, 120, 129, 0.32);
}

@media (max-width: 900px) {
  .section {
    padding: 3rem 0;
  }

  .hero__grid,
  .grid--2,
  .grid--3,
  .inline-2 {
    grid-template-columns: 1fr;
  }

  .bento__main {
    grid-column: auto;
  }

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

  .ticker {
    animation-duration: 16s;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  #siteNav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    width: min(360px, 94vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(12, 120, 129, 0.2);
    border-radius: 1rem;
    padding: 0.6rem;
    box-shadow: 0 14px 30px rgba(12, 120, 129, 0.18);
    backdrop-filter: blur(7px);
  }

  #siteNav.open {
    display: flex;
  }

  #siteNav a {
    padding: 0.7rem 0.7rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.96rem;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.35rem;
  }

  .container {
    width: min(1100px, 94vw);
  }

  .card {
    padding: 1rem;
    border-top-width: 5px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .hero__actions .btn {
    width: auto;
  }

  .inline-2 {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    font-size: 16px;
  }

  .floating-cta {
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.64rem 0.9rem;
  }
}
