/* Dirty Deeds — landing page v1
 * Brand will iterate on this; goal is professional, mobile-first, fast.
 */

:root {
  --ink: #0f1d1a;
  --ink-soft: #2c3a37;
  --paper: #fbf8f3;
  --paper-warm: #f3ede1;
  --line: #d9d2c2;
  --accent: #b88a3c; /* warm brass */
  --accent-deep: #8a6620;
  --muted: #6b7572;
  --shadow: 0 8px 30px rgba(15, 29, 26, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1100px;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent-deep);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: static;
  display: inline-block;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover {
  text-decoration: none;
}
.brand-mark {
  font-size: 22px;
  color: var(--accent);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.brand-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.site-nav a:hover {
  color: var(--ink);
  text-decoration: none;
}
.site-nav .nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.site-nav .nav-cta:hover {
  background: var(--accent-deep);
}

@media (max-width: 720px) {
  .brand-tag {
    display: none;
  }
  .site-nav a:not(.nav-cta) {
    display: none;
  }
}

/* HERO */
.hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(ellipse at top right, #1a312c 0%, transparent 60%),
    linear-gradient(180deg, #0f1d1a 0%, #122723 100%);
  color: #f3ede1;
  position: relative;
}
.hero-inner {
  max-width: 820px;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #d9c79a;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #ddd6c3;
  max-width: 640px;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #c8bfa6;
  font-size: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 80ms ease,
    background 120ms ease,
    color 120ms ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #1b1408;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #cc9d4c;
}
.btn-ghost {
  background: transparent;
  color: #f3ede1;
  border-color: rgba(243, 237, 225, 0.4);
}
.btn-ghost:hover {
  background: rgba(243, 237, 225, 0.1);
}
.btn-block {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.section-rates {
  background: var(--paper-warm);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.section-lede {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 36px;
  font-size: 17px;
}

/* CARDS / SERVICES */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
}
.card-soft {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  background: rgba(184, 138, 60, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: 3px;
}

/* RATES */
.rate-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 36px;
}
.rate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.rate-card-featured {
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(184, 138, 60, 0.18);
  position: relative;
}
.rate-card-featured::before {
  content: "Most booked";
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--accent);
  color: #1b1408;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.rate-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}
.rate-price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  margin: 0 0 6px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.rate-currency {
  font-size: 28px;
  vertical-align: 18px;
  margin-right: 2px;
  color: var(--muted);
}
.rate-meta {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
}
.rate-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.rate-card li + li {
  margin-top: 4px;
}

.addons {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px;
}
.addons h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 600;
}
.addon-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.addon-list li:last-child {
  border-bottom: none;
}
.addon-list span:last-child {
  color: var(--ink);
  font-weight: 500;
}
.addon-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-tile {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e7dec5 0%, #cfc3a3 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08) 0 12px,
    transparent 12px 24px
  );
}
.tile-text {
  position: relative;
  z-index: 1;
  background: rgba(251, 248, 243, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* FAQ */
details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
details:last-of-type {
  border-bottom: 1px solid var(--line);
}
details summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent-deep);
  margin-left: 16px;
}
details[open] summary::after {
  content: "−";
}
details p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

/* INQUIRE */
.section-inquire {
  background: var(--ink);
  color: var(--paper);
  border-top: none;
}
.section-inquire .section-title,
.section-inquire .section-lede {
  color: var(--paper);
}
.section-inquire .section-lede {
  color: #d6cfbb;
}
.inquire-inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 820px) {
  .inquire-inner {
    grid-template-columns: 1fr;
  }
}
.inquire-points {
  margin: 0 0 0;
  padding: 0;
  list-style: none;
  color: #d6cfbb;
}
.inquire-points li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(217, 207, 187, 0.2);
}
.inquire-points li:last-child {
  border-bottom: none;
}
.inquire-form {
  background: #fbf8f3;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.field label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.field-opt {
  text-transform: none;
  color: var(--muted);
  letter-spacing: 0;
  font-size: 12px;
}
.field input,
.field textarea {
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  outline: none;
  transition: border-color 120ms ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.form-note {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
  min-height: 1.2em;
}
.form-note.is-error {
  color: #b14b3a;
}
.form-note.is-success {
  color: #2c6a4a;
}

/* FOOTER */
.site-footer {
  background: #0b1614;
  color: #c8bfa6;
  padding: 36px 0 64px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  margin: 0 0 6px;
}
.footer-meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer nav a {
  color: #c8bfa6;
  font-size: 14px;
}
.site-footer nav a:hover {
  color: var(--paper);
}
.footer-fineprint {
  margin: 0;
  font-size: 12px;
  color: #6e6a5d;
  flex-basis: 100%;
}

/* FLOATING CTA (mobile) */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #1b1408;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(15, 29, 26, 0.25);
  z-index: 40;
  display: none;
}
.floating-cta:hover {
  text-decoration: none;
  background: #cc9d4c;
}
@media (max-width: 720px) {
  .floating-cta {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:hover {
    transform: none;
  }
}

/* ---------- DIR-11: form additions ---------- */

.inquire-form select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.inquire-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field-checks {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.field-checks legend {
  padding: 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* Honeypot — must never be visible to humans, must remain in the DOM
 * (display:none is too aggressive — some bots skip it). */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Turnstile widget alignment */
.cf-turnstile {
  margin: 8px 0 4px;
  min-height: 65px;
}

/* Submitting state */
.inquire-form[data-submitting="true"] .btn {
  opacity: 0.6;
  pointer-events: none;
}

/* ---------- DIR-12: estimate / quote calculator ---------- */

.section-estimate {
  background: var(--paper-warm);
}

.estimate-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}
@media (max-width: 820px) {
  .estimate-grid {
    grid-template-columns: 1fr;
  }
}

.estimate-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.qc-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 18px;
}
.qc-fieldset legend {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 0;
}
.qc-help {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.qc-radio,
.qc-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 8px;
  background: #fff;
  transition:
    border-color 120ms ease,
    background 120ms ease;
}
.qc-radio:hover,
.qc-check:hover {
  border-color: var(--accent);
}
.qc-radio input,
.qc-check input {
  margin: 3px 0 0;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.qc-radio:has(input:checked),
.qc-check:has(input:checked) {
  border-color: var(--accent);
  background: rgba(184, 138, 60, 0.06);
}
.qc-radio-body,
.qc-check-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}
.qc-radio-body strong,
.qc-check-body strong {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.qc-radio-body em,
.qc-check-body em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

.qc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.qc-row .field {
  margin-bottom: 0;
}

/* Output card */
.estimate-output {
  position: sticky;
  top: 92px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 14px 40px rgba(15, 29, 26, 0.18);
}
@media (max-width: 820px) {
  .estimate-output {
    position: static;
  }
}
.estimate-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #d9c79a;
  margin: 0 0 16px;
}
.estimate-lines {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px dashed rgba(217, 207, 187, 0.25);
}
.estimate-lines li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(217, 207, 187, 0.25);
  color: #d6cfbb;
  font-size: 15px;
}
.estimate-lines li.is-deposit {
  color: #c8bfa6;
  font-style: italic;
}
.estimate-lines li .est-amt {
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
}
.estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 14px;
  padding-top: 8px;
}
.estimate-total span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c8bfa6;
}
.estimate-total strong {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: var(--paper);
}
.estimate-fineprint {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #c8bfa6;
}
.estimate-output .btn-primary {
  margin-bottom: 10px;
}
.estimate-disclaimer {
  margin: 0;
  color: #9b9684;
  font-size: 12px;
}
