/* ============================================================
   Well Done Mama — End of Tenancy Specialists
   Implemented from "WDM Website.dc.html" (desktop 1180 / mobile 390)
   ============================================================ */

:root {
  --navy: #0E1A2B;
  --gold: #C89B4B;
  --gold-dark: #B08A4A;
  --gold-deep: #3A2F17;
  --cream: #F8F4EC;
  --paper: #ffffff;
  --ink: #0E1A2B;
  --ink-soft: #2A3444;
  --ink-muted: #4A5568;
  --warm-gray: #8A8272;
  --mist: #B9C0CC;
  --pearl: #E8E4DC;
  --pill-cream: #F0E4CC;
  --hairline-dark: rgba(255, 255, 255, .12);
  --hairline-light: rgba(14, 26, 43, .08);
  --gold-line: rgba(200, 155, 75, .5);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); }
a:hover { color: var(--gold-dark); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* Shared type helpers */
.eyebrow {
  font-size: 12px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  padding: 16px 30px;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  padding: 16px 32px;
  white-space: nowrap;
}
.btn-navy:hover { background: #17293f; color: #fff; }

.btn-ghost {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 15px 26px;
  border-radius: 3px;
  transition: border-color .15s ease;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .6); color: #fff; }

.call-prefix { display: none; }
@media (max-width: 640px) {
  .call-prefix { display: inline; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(200, 155, 75, .35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.brand img { width: 64px; height: 64px; }

.brand-text { display: flex; flex-direction: column; gap: 4px; }

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  line-height: 1;
}

.brand-tag {
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--pearl);
  text-decoration: none;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--gold); }

.header-cta {
  font-size: 13px;
  padding: 12px 22px;
}

/* ============ Hero ============ */
.hero { background: var(--navy); }

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas:
    "copy media"
    "stats media";
  column-gap: 56px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 60px;
}

.hero-copy { grid-area: copy; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-kicker .rule {
  height: 1px;
  width: 36px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 700;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(200, 155, 75, .55);
  border-radius: 99px;
  padding: 8px 18px;
  margin-bottom: 22px;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-pill span:last-child {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--pill-cream);
  text-transform: uppercase;
  font-weight: 500;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mist);
  margin: 0 0 32px;
  max-width: 460px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.hero-stats {
  grid-area: stats;
  display: flex;
  border-top: 1px solid var(--hairline-dark);
  padding-top: 24px;
}

.hero-stats > div {
  padding: 0 28px;
  border-right: 1px solid var(--hairline-dark);
}
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child { padding-right: 0; border-right: 0; }

.hero-stats .stat-top {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-stats .stat-sub {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-media {
  grid-area: media;
  position: relative;
  align-self: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============ Services ============ */
.services { background: var(--cream); }

.services .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-head-center {
  text-align: center;
  margin-bottom: 44px;
}

.section-head-center .eyebrow { display: block; margin-bottom: 10px; }
.section-head-center h2 { font-size: 36px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--hairline-light);
  border-top: 3px solid var(--gold);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  flex: 1;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.service-price .from {
  font-size: 13px;
  color: var(--warm-gray);
}

.service-price .amount {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}

.service-price .unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
}

/* ============ Steps ============ */
.steps { background: var(--navy); }

.steps .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}

.steps-intro .eyebrow { display: block; margin-bottom: 10px; }

.steps-intro h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  flex: none;
}

.step-title {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
}

.step-body {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* ============ Work ============ */
.work { background: var(--paper); }

.work .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}

.work-head h2 { font-size: 34px; }

.work-head .eyebrow { letter-spacing: 3px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.work-slot {
  width: 100%;
  height: 230px;
  background: repeating-linear-gradient(45deg, #F3EEE3, #F3EEE3 10px, #EDE6D7 10px, #EDE6D7 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.work-slot span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ============ Testimonials ============ */
.testimonials { background: var(--cream); }

.testimonials .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.testimonials .section-head-center { margin-bottom: 40px; }
.testimonials .section-head-center h2 { font-size: 34px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--paper);
  padding: 32px 28px;
  border: 1px solid var(--hairline-light);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-style: italic;
}

.testimonial-card cite {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-style: normal;
}

/* ============ FAQ ============ */
.faq { background: var(--paper); }

.faq .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq-intro .eyebrow { display: block; margin-bottom: 10px; }

.faq-intro h2 {
  font-size: 32px;
  line-height: 1.2;
}

.faq-list { display: flex; flex-direction: column; }

.faq-list details {
  border-bottom: 1px solid rgba(14, 26, 43, .1);
  padding: 18px 0;
}

.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.faq-list summary::marker { color: var(--gold); }

.faq-list p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 12px 0 0;
}

/* ============ Areas + CTA + Footer ============ */
.areas { background: var(--navy); }

.areas .container {
  padding-top: 64px;
  padding-bottom: 0;
}

.areas-head {
  text-align: center;
  margin-bottom: 40px;
}

.areas-head .eyebrow { display: block; margin-bottom: 12px; }

.areas-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 700;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.area-chips li {
  border: 1px solid var(--gold-line);
  color: var(--pearl);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 99px;
}

.cta-band {
  background: var(--gold);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cta-band-sub {
  font-size: 15px;
  color: var(--gold-deep);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img { width: 72px; height: 72px; }

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.footer-tag {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-sub {
  font-size: 12.5px;
  color: var(--mist);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
  font-size: 13px;
}

.footer-contact a {
  color: var(--mist);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-contact a:hover { color: var(--gold); }

.footer-area { display: none; color: var(--mist); }

/* Anchor offset below the sticky header */
section[id], #top { scroll-margin-top: 100px; }

/* ============================================================
   Tablet and below — single-column layouts
   ============================================================ */
@media (max-width: 920px) {
  .container { padding-left: 32px; padding-right: 32px; }

  .site-nav { display: none; }

  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "stats";
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .hero h1 { font-size: 42px; }

  .hero-media { margin-bottom: 28px; }
  .hero-media::after { inset: 12px -10px -10px 12px; }
  .hero-media img { height: 320px; }

  .hero-actions { margin-bottom: 32px; }

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

  .steps .container { grid-template-columns: 1fr; gap: 28px; }
  .steps-list { grid-template-columns: 1fr; gap: 20px; }
  .steps-list > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .step-num { margin-bottom: 0; }

  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .work-grid img, .work-slot { height: 180px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }

  .faq .container { grid-template-columns: 1fr; gap: 24px; }

  .cta-band { flex-direction: column; text-align: center; }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
}

/* ============================================================
   Mobile — matches the 390px artboard
   ============================================================ */
@media (max-width: 640px) {
  .container { padding-left: 24px; padding-right: 24px; }

  .site-header .container {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand { gap: 10px; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 15px; }
  .brand-tag { font-size: 7.5px; letter-spacing: 1.8px; }

  .header-cta { font-size: 11px; padding: 11px 14px; }

  .hero .container { padding-top: 36px; padding-bottom: 32px; }

  .hero-kicker { gap: 10px; margin-bottom: 14px; }
  .hero-kicker .rule { width: 26px; }
  .hero-kicker .eyebrow { font-size: 10px; letter-spacing: 2.5px; }

  .hero h1 { font-size: 34px; line-height: 1.1; margin-bottom: 14px; }

  .hero-pill { gap: 8px; padding: 7px 14px; margin-bottom: 16px; }
  .hero-pill .dot { width: 5px; height: 5px; }
  .hero-pill span:last-child { font-size: 10px; letter-spacing: 2px; }

  .hero-lede { font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }

  .hero-actions { display: block; margin-bottom: 24px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 16px 0;
  }
  .hero-actions .btn-ghost { font-size: 14px; padding: 14px 0; margin-top: 12px; }

  .hero-media { margin-bottom: 20px; }
  .hero-media::after { display: none; }
  .hero-media img { height: 190px; }

  .hero-stats { justify-content: space-between; padding-top: 16px; }
  .hero-stats > div { padding: 0; border-right: 0; }
  .hero-stats .stat-top, .hero-stats .stat-sub { font-size: 10px; }

  .services .container { padding-top: 44px; padding-bottom: 44px; }
  .section-head-center { margin-bottom: 24px; }
  .section-head-center .eyebrow { font-size: 10px; letter-spacing: 2.5px; margin-bottom: 8px; }
  .section-head-center h2 { font-size: 26px; }

  .service-grid { gap: 14px; }
  .service-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 22px;
  }
  .service-card h3 { font-size: 18px; }
  .service-card p { display: none; }
  .service-price { white-space: nowrap; }
  .service-price .from { font-size: 12px; }
  .service-price .amount { font-size: 20px; }
  .service-price .unit { font-size: 20px; color: var(--ink); font-weight: 700; }

  .steps .container { padding-top: 44px; padding-bottom: 44px; }
  .steps-intro .eyebrow { display: none; }
  .steps-intro h2 { font-size: 24px; }
  .step-num { width: 34px; height: 34px; font-size: 15px; }
  .step-title { font-size: 14.5px; margin-bottom: 2px; }
  .step-body { font-size: 13px; }

  .work .container { padding-top: 44px; padding-bottom: 44px; }
  .work-head { margin-bottom: 20px; }
  .work-head h2 { font-size: 24px; }
  .work-head .eyebrow { display: none; }
  .work-grid img, .work-slot { height: 130px; }
  .work-slot span { font-size: 10px; line-height: 1.5; }

  .testimonials .container { padding-top: 40px; padding-bottom: 40px; }
  .testimonials .section-head-center { margin-bottom: 20px; }
  .testimonials .section-head-center h2 { font-size: 24px; }
  .testimonial-card { padding: 26px 22px; }
  .testimonial-card .stars { font-size: 14px; letter-spacing: 2.5px; margin-bottom: 10px; }
  .testimonial-card blockquote { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
  .testimonial-card cite { font-size: 11px; }

  .faq .container { padding-top: 44px; padding-bottom: 44px; }
  .faq-intro h2 { font-size: 24px; }
  .faq-list summary { font-size: 15px; }

  .areas .container { padding-top: 44px; }
  .areas-head { margin-bottom: 28px; }
  .areas-head h2 { font-size: 24px; margin-bottom: 18px; }
  .area-chips li { font-size: 12px; padding: 7px 14px; }

  .cta-band { padding: 30px 24px; gap: 14px; }
  .cta-band-title { font-size: 22px; margin-bottom: 0; }
  .cta-band-sub { display: none; }
  .cta-band .btn-navy {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12.5px;
    padding: 15px 0;
  }

  .site-footer { padding: 28px 0; gap: 10px; }
  .footer-brand img { width: 82px; height: 82px; }
  .footer-brand { gap: 10px; }
  .footer-name { display: none; }
  .footer-tag { display: none; }
  .footer-sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
  }
  .footer-contact { font-size: 11.5px; line-height: 1.7; gap: 0; }
  .footer-area { display: block; }
}
