@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,750&family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --ink: #14231f;
  --muted: #60746e;
  --line: #d7e5df;
  --cream: #fbf6ea;
  --mint: #dcefe6;
  --green: #0f5c45;
  --green-2: #174b3d;
  --gold: #e7aa2f;
  --paper: #ffffff;
  --shadow: 0 24px 70px rgba(24, 55, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 170, 47, 0.22), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(15, 92, 69, 0.16), transparent 24rem),
    linear-gradient(135deg, var(--cream), #eef7f2 55%, #f8fbf8);
  font-family: "Manrope", "Aptos", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--green);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 246, 234, 0.86);
  border-bottom: 1px solid rgba(215, 229, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 0.75rem 0.75rem 0.25rem 0.75rem;
  box-shadow: 0 10px 24px rgba(15, 92, 69, 0.2);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  font-size: 0.95rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.12rem 0.68rem;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav a:hover {
  color: var(--green);
  background: rgba(15, 92, 69, 0.07);
}

.nav a[aria-current="page"] {
  color: var(--green);
  background: rgba(15, 92, 69, 0.1);
  box-shadow:
    0 0 0 1px rgba(15, 92, 69, 0.14),
    0 10px 24px rgba(15, 92, 69, 0.08);
}

.nav a[aria-current="page"]:hover {
  background: rgba(15, 92, 69, 0.14);
}

.page {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0 4rem;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--green-2);
  background: rgba(15, 92, 69, 0.1);
  border: 1px solid rgba(15, 92, 69, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-card,
.panel,
.legal-panel,
.message-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 229, 223, 0.95);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cta-label {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent {
  margin: 0.85rem 0 1.2rem;
  padding: 1rem;
  color: #23352f;
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  font-size: 0.94rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(15, 92, 69, 0.22);
}

.button.secondary {
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.sms-number {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.panel,
.legal-panel,
.message-card {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
}

.panel p,
.legal-panel p,
.message-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 3.7rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 0.75rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1.2rem, 4vw, 2rem);
  align-items: start;
}

.message-card {
  font-family: "Manrope", sans-serif;
}

.bubble {
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  background: #f4f8f6;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
}

.bubble strong {
  color: var(--green-2);
}

.legal-list {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.page-title {
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 2rem;
}

.page-title h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  background: rgba(20, 35, 31, 0.04);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .nav {
    justify-content: flex-end;
  }

  .hero,
  .split,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}

.nav-feature {
  color: #fff !important;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(15, 92, 69, 0.16);
}

.nav a.nav-feature:hover,
.nav a.nav-feature[aria-current="page"] {
  color: #fff;
  background: #0c4f3b;
}

.account-link {
  max-width: min(16rem, 34vw);
  overflow: hidden;
  color: var(--green) !important;
  background: rgba(15, 92, 69, 0.08);
  border: 1px solid rgba(15, 92, 69, 0.16);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-link.is-signed-in {
  background: rgba(231, 170, 47, 0.18);
  border-color: rgba(231, 170, 47, 0.38);
}

.site-menu-button {
  display: inline-grid;
  gap: 0.22rem;
  width: 2.3rem;
  height: 2.3rem;
  place-content: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 92, 69, 0.08);
}

.site-menu-button span {
  display: block;
  width: 1.1rem;
  height: 0.13rem;
  background: var(--green-2);
  border-radius: 999px;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.site-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 31, 0.48);
  border: 0;
  cursor: pointer;
}

.site-drawer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 1rem;
  width: min(24rem, calc(100% - 3rem));
  min-height: 100%;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(231, 170, 47, 0.18), transparent 16rem),
    #fbf6ea;
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-drawer-close {
  justify-self: end;
  padding: 0.35rem 0.7rem;
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-drawer-account {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.site-drawer-account span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-drawer-nav {
  display: grid;
  gap: 0.45rem;
}

.site-drawer-nav a {
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid transparent;
  border-radius: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-drawer-nav a:hover {
  color: var(--green);
  border-color: var(--line);
}

.drawer-sign-out {
  margin-top: 0.4rem;
}

body.is-site-drawer-open {
  overflow: hidden;
}

.ads-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 3rem;
}

.ads-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.15rem);
}

.ads-actions {
  margin-top: 1.75rem;
}

.ad-callout,
.pricing-panel,
.booking-note,
.ad-form,
.auth-card,
.dashboard-panel,
.signed-out-note {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 229, 223, 0.95);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.ad-callout {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.ad-callout-item {
  display: grid;
  gap: 0.12rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.ad-callout-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ad-callout-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.pricing-panel {
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 1.65rem);
}

.pricing-panel h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.pricing-panel p:not(.pricing-tag) {
  color: var(--muted);
}

.pricing-tag {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--green);
  background: rgba(15, 92, 69, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-panel.bid .pricing-tag {
  color: #805300;
  background: rgba(231, 170, 47, 0.2);
}

.rate-table {
  width: 100%;
  margin-top: 1.2rem;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.rate-table th,
.rate-table td {
  padding: 0.62rem 0.35rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table th {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rate-table td:last-child {
  color: var(--green);
  font-weight: 800;
}

.layout-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.layout-card {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
}

.layout-preview-link {
  display: block;
  cursor: zoom-in;
}

.layout-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0.4rem;
  height: auto;
  background: #f5f0e2;
  object-fit: contain;
}

.layout-card figcaption {
  display: grid;
  padding: 0.72rem 0.8rem 0.82rem;
  line-height: 1.35;
}

.layout-card figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
}

.layout-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  overflow: auto;
  background:
    radial-gradient(circle at top left, rgba(231, 170, 47, 0.2), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(15, 92, 69, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(251, 246, 234, 0.94), rgba(238, 247, 242, 0.94) 55%, rgba(248, 251, 248, 0.94));
  backdrop-filter: blur(10px);
}

.layout-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.layout-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  gap: 0.75rem;
  justify-items: end;
}

.layout-lightbox-frame img {
  display: block;
  justify-self: center;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  width: auto;
  height: auto;
  background: #f5f0e2;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.layout-lightbox-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  color: var(--green);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.ads-process .panel {
  min-height: 13rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
  gap: 1rem;
  align-items: start;
}

.ad-form {
  padding: clamp(1rem, 3vw, 1.55rem);
}

.form-step {
  padding: 0 0 1.35rem;
  margin: 0 0 1.35rem;
  border-bottom: 1px solid var(--line);
}

.form-step:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

.form-step-label {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  gap: 0.8rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
  color: var(--green-2);
  font-size: 0.91rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.82rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8dad3;
  border-radius: 0.7rem;
  font: inherit;
  font-weight: 500;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(15, 92, 69, 0.26);
  border-color: var(--green);
}

.slot-summary {
  margin: 0.82rem 0 0;
  padding: 0.8rem;
  color: var(--green-2);
  background: #eef7f2;
  border-radius: 0.72rem;
  font-size: 0.91rem;
}

.bid-amount {
  margin-top: 0.9rem;
}

.ad-type-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
}

.ad-type-toggle legend {
  width: 100%;
  margin-bottom: 0.42rem;
  color: var(--green-2);
  font-size: 0.91rem;
  font-weight: 800;
}

.ad-type-toggle label,
.check-line {
  display: flex;
  gap: 0.48rem;
  align-items: flex-start;
}

.ad-type-toggle input,
.check-line input {
  margin-top: 0.27rem;
  accent-color: var(--green);
}

.fine-print {
  margin: 0.72rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-step > p:not(.form-step-label) {
  color: var(--muted);
}

.check-line {
  margin: 1rem 0 1.2rem;
  padding: 0.88rem;
  background: #f6faf8;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  font-size: 0.9rem;
}

button.button {
  cursor: pointer;
}

button.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.wide-button {
  width: 100%;
  margin-top: 1rem;
}

.form-status {
  min-height: 1.5em;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-error {
  color: #9c3227;
}

.form-status.is-success {
  color: var(--green);
}

.retry-button {
  margin-top: 0.5rem;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.booking-note {
  position: sticky;
  top: 6rem;
  padding: 1rem;
}

.booking-note h3 {
  margin-bottom: 0.8rem;
}

.booking-note ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.live-ad-preview h3 {
  margin-bottom: 0.55rem;
}

.ad-preview-stage {
  padding: 2%;
  overflow: hidden;
  background: #f5f0e2;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.ad-preview-grid {
  display: grid;
  width: 100%;
  gap: clamp(0.18rem, 1.215%, 0.9rem);
  align-items: stretch;
  margin-inline: auto;
}

.ad-preview-cell {
  appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  min-width: 0;
  padding: clamp(0.25rem, 1vw, 0.6rem);
  overflow: hidden;
  color: var(--green-2);
  text-align: center;
  background: #fff;
  border: 2px solid rgba(18, 47, 40, 0.85);
  border-radius: clamp(0.35rem, 1vw, 0.8rem);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.48rem, 1.2vw, 0.85rem);
  font-weight: 800;
}

.ad-preview-cell:hover:not(:disabled),
.ad-preview-cell:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(231, 170, 47, 0.35);
  outline: 0;
}

.ad-preview-cell.has-image {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.ad-preview-cell.is-selected {
  box-shadow: 0 0 0 3px rgba(231, 170, 47, 0.78);
}

.ad-preview-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ad-preview-text {
  width: 100%;
  max-height: 100%;
  padding: 0.45rem;
  overflow-wrap: anywhere;
  line-height: 1.12;
  white-space: pre-wrap;
}

.ad-preview-cell.is-placeholder,
.ad-preview-cell.is-other-ad,
.ad-preview-cell.is-selectable-spot,
.ad-preview-cell.is-booked {
  color: rgba(18, 47, 40, 0.55);
  background: rgba(255, 255, 255, 0.68);
  border-style: dashed;
}

.ad-preview-cell.is-other-ad::before,
.ad-preview-cell.is-placeholder::before,
.ad-preview-cell.is-selectable-spot::before,
.ad-preview-cell.is-booked::before {
  content: "";
}

.ad-preview-cell.is-booked {
  cursor: not-allowed;
  opacity: 0.55;
}

.preview-text-actions {
  margin-top: 0.68rem;
}

.preview-text-actions .button {
  width: 100%;
}

.preview-text-status {
  margin-top: 0.52rem;
}

.auth-card,
.dashboard-panel,
.signed-out-note {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 31, 0.48);
  border: 0;
  cursor: pointer;
}

.account-modal-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at top left, rgba(231, 170, 47, 0.16), transparent 16rem),
    #fbf6ea;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.account-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.35rem 0.7rem;
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

body.is-account-modal-open {
  overflow: hidden;
}

.account-modal .section-heading {
  padding-right: 4rem;
}

.bid-success-panel {
  width: min(540px, 100%);
}

.bid-success-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0;
}

.bid-success-note {
  margin: 0 0 1rem;
  font-size: 0.78rem;
}

.auth-card {
  display: grid;
  gap: 1rem;
}

.auth-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.auth-tabs .button.is-active {
  background: #e9f4ee;
  box-shadow: 0 0 0 3px rgba(14, 93, 66, 0.12);
}

.auth-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
}

.auth-form .button,
.auth-form .link-button {
  align-self: end;
}

.link-button {
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.optional-label {
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 700;
}

.account-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem;
  background: #eef7f2;
  border-radius: 0.95rem;
}

.account-panel p,
.signed-out-note p {
  margin: 0;
  color: var(--green-2);
  font-weight: 700;
}

.dashboard-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.dashboard-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.dashboard-card-summary {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(260px, 2fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 3.3rem;
  padding: 0.8rem 1rem;
  color: var(--green-2);
  cursor: pointer;
}

.dashboard-card-summary::marker {
  content: "";
}

.dashboard-card-summary::-webkit-details-marker {
  display: none;
}

.dashboard-card-summary:hover,
.dashboard-card-summary:focus-visible {
  background: #f7fbf8;
  outline: 0;
}

.dashboard-card-summary-title {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.dashboard-card-summary-title strong,
.dashboard-card-summary-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-card-summary-title span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-card-summary-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-card-summary-meta span {
  padding: 0.18rem 0.5rem;
  white-space: nowrap;
  background: #eef7f2;
  border-radius: 999px;
}

.dashboard-card-content {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.dashboard-card[open] .dashboard-card-summary {
  background: #f7fbf8;
  border-bottom: 1px solid var(--line);
}

.dashboard-card h3 {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1rem;
}

.dashboard-card p {
  margin: 0;
  color: var(--green-2);
}

.dashboard-meta {
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.dashboard-expanded-status {
  padding: 0.7rem 0.85rem;
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
}

.dashboard-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.dashboard-detail {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
}

.dashboard-detail span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dashboard-detail strong {
  overflow-wrap: anywhere;
}

.dashboard-preview {
  width: min(100%, 260px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.saved-card-status {
  margin: -0.2rem 0 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--green-2);
  background: rgba(15, 92, 69, 0.08);
  border: 1px solid rgba(15, 92, 69, 0.14);
  border-radius: 1rem;
  font-weight: 800;
}

.raise-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: end;
}

.dashboard-raise-form {
  padding-top: 0.5rem;
}

.dashboard-actions {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  padding-top: 0.35rem;
}

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

.hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .ads-hero,
  .ad-pricing-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-note {
    position: static;
  }
}

@media (max-width: 620px) {
  .two-fields,
  .auth-form {
    grid-template-columns: 1fr;
  }

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

  .dashboard-card-summary-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .bid-success-details,
  .dashboard-details {
    grid-template-columns: 1fr;
  }

  .layout-gallery {
    grid-template-columns: 1fr;
  }
}
