*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #f6f2ea;
  --paper-dark: #ebe4d6;
  --ink: #1f1d1a;
  --ink-soft: #4a4640;
  --petrol: #1a3d45;
  --petrol-deep: #122a30;
  --copper: #c0582a;
  --copper-hover: #a84822;
  --cream: #fffdf8;
  --line: rgba(31, 29, 26, 0.12);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  padding-bottom: calc(76px + var(--safe-bottom));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.concept-banner {
  background: var(--petrol);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  color: var(--petrol);
  line-height: 1.15;
}

.brand__tag {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--copper);
  color: var(--cream);
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 48px;
  border-radius: 4px 14px 4px 14px;
  transition: transform 0.2s, background 0.2s;
}

.header-phone:hover {
  background: var(--copper-hover);
  transform: rotate(-1deg);
}

/* ── Greeting strip ── */
.greeting-strip {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.greeting-strip strong { color: var(--petrol); font-weight: 700; }

/* ── Hero (asymmetric) ── */
.hero {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding-top: 2rem;
  }
}

.hero__copy { max-width: 34rem; }

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 700;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  line-height: 1.08;
  color: var(--petrol-deep);
  margin-bottom: 1rem;
}

.hero__title .underline-sketch {
  position: relative;
  display: inline;
  white-space: nowrap;
}

.hero__title .underline-sketch::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: 0.05em;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q50 2 100 7 T198 5' stroke='%23c0582a' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn--call {
  background: var(--copper);
  color: var(--cream);
  border-radius: 6px 18px 6px 18px;
  animation: none;
}

.btn--call.is-idle {
  animation: gentle-pulse 2.5s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 88, 42, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(192, 88, 42, 0); }
}

.btn--call:hover { background: var(--copper-hover); transform: rotate(-0.5deg); }

.btn--ghost {
  background: transparent;
  color: var(--petrol);
  border: 2px solid var(--petrol);
  border-radius: 18px 6px 18px 6px;
}

.btn--ghost:hover { background: rgba(26, 61, 69, 0.06); }

.hero__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 28ch;
}

.hero__visual {
  position: relative;
}

.photo-frame {
  position: relative;
  background: var(--petrol);
  padding: 0.65rem 0.65rem 2.5rem 1.25rem;
  transform: rotate(1.2deg);
  box-shadow: 12px 16px 40px rgba(18, 42, 48, 0.22);
}

.photo-frame__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--petrol-deep);
}

.photo-frame__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-frame__caption {
  position: absolute;
  bottom: 0.85rem;
  left: 1.5rem;
  right: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

.phone-card {
  position: absolute;
  bottom: -1.25rem;
  left: -0.5rem;
  background: var(--cream);
  border: 2px solid var(--petrol);
  padding: 1rem 1.15rem;
  max-width: 16rem;
  transform: rotate(-2deg);
  box-shadow: 6px 8px 24px rgba(0,0,0,0.12);
}

@media (min-width: 900px) {
  .phone-card { left: -2rem; bottom: 2rem; }
}

.phone-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.phone-card__number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--copper);
  display: block;
  min-height: 48px;
  line-height: 48px;
}

.phone-card__number:hover {
  animation: wiggle 0.4s ease;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

.phone-card__sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

/* ── Situations (not feature cards) ── */
.situations {
  background: var(--petrol-deep);
  color: var(--cream);
  padding: 3.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.situations::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(192,88,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.situations__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .situations__inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.situations__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.situations__intro p {
  color: rgba(255,253,248,0.75);
  font-size: 0.98rem;
  max-width: 26ch;
}

.situation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.situation-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.situation-list li:first-child { padding-top: 0; }

.situation-list__time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  min-width: 3.5rem;
  padding-top: 0.15rem;
}

.situation-list__text {
  font-size: 1rem;
  line-height: 1.5;
}

.situation-list__text em {
  font-style: normal;
  color: rgba(255,253,248,0.55);
  display: block;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

/* ── Behind the van ── */
.behind {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .behind {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.behind__photo-wrap {
  max-width: 22rem;
  margin: 0 auto;
  transform: rotate(-2.5deg);
}

.behind__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--ink);
  display: block;
  background: var(--paper-dark);
}

.behind h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--petrol-deep);
  margin-bottom: 0.75rem;
}

.behind__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* ── Areas (messy, hand-placed) ── */
.areas-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 1.25rem;
}

.areas-section__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.areas-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.areas-section > .areas-section__inner > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  max-width: 40ch;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: baseline;
}

.area-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  transition: transform 0.15s, background 0.15s;
}

.area-tag:nth-child(3n) { transform: rotate(-1deg); border-radius: 2px 10px 2px 10px; }
.area-tag:nth-child(3n+1) { transform: rotate(0.8deg); border-radius: 10px 2px 10px 2px; }
.area-tag:nth-child(3n+2) { transform: rotate(-0.5deg); border-radius: 8px; }

.area-tag:hover {
  background: var(--petrol);
  color: var(--cream);
  transform: rotate(0deg) scale(1.04);
}

.area-tag--main {
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  background: var(--petrol);
  color: var(--cream);
  border-color: var(--petrol);
}

/* ── Contact (offset layout) ── */
.contact-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

.contact-section__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-section__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
  color: var(--petrol-deep);
  margin-bottom: 0.75rem;
}

.contact-section__lead {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.contact-direct a {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 48px;
  line-height: 48px;
  color: var(--copper);
  border-bottom: 1px dashed var(--line);
}

.contact-direct a:last-of-type { border-bottom: none; }

.contact-direct__hours {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 0.75rem 1rem;
  background: var(--paper-dark);
  border-left: 3px solid var(--copper);
}

.contact-form {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 1.5rem;
  transform: rotate(0.5deg);
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font: inherit;
  min-height: 48px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}

.contact-form textarea { min-height: 88px; resize: vertical; }

.contact-form button {
  background: var(--petrol);
  color: var(--cream);
  border: none;
  min-height: 52px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.25rem;
  border-radius: 4px 14px 4px 14px;
  transition: background 0.2s, transform 0.15s;
}

.contact-form button:hover {
  background: var(--petrol-deep);
  transform: rotate(-0.5deg);
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,253,248,0.65);
  padding: 2rem 1.25rem;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.6;
}

.site-footer p + p { margin-top: 0.35rem; }

/* ── Mobile bar ── */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--cream);
  border-top: 2px solid var(--ink);
  padding-bottom: var(--safe-bottom);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 68px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--petrol);
  transition: background 0.15s;
}

.mobile-bar a:first-child {
  background: var(--copper);
  color: var(--cream);
}

.mobile-bar a:active { opacity: 0.85; }

.mobile-bar__icon { font-size: 1.2rem; }

@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--call.is-idle { animation: none; }
  .phone-card__number:hover { animation: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
