/* ---------- KRISTOF LAND - shared stylesheet ---------- */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800;9..144,900&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f1ea;
  --bg-alt: #ebe6db;
  --ink: #1a1612;
  --ink-soft: #4a423a;
  --moss: #2d3a1f;
  --moss-light: #4a5c33;
  --clay: #b4543a;
  --clay-dark: #8a3f2b;
  --line: #d4cdbf;
  --cream: #fbf8f1;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', system-ui, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  font-variation-settings: "opsz" 144;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-variation-settings: "opsz" 96;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-variation-settings: "opsz" 48;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  display: inline-block;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 32;
}

/* ---------- TOP BAR + NAV ---------- */

.topbar {
  background: var(--moss);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 0.6rem 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar .phone {
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav.main {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(244, 241, 234, 0.92);
}

nav.main .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand .name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand .tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clay);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.7rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.88rem !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--clay) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border-radius: 2px;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 84, 58, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--clay);
  font-weight: 500;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--clay);
  opacity: 0.25;
  z-index: -1;
}

.hero .lede {
  margin-top: 1.75rem;
  max-width: 32rem;
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  font-size: 0.88rem;
}

.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.hero-meta span {
  color: var(--ink-soft);
}

/* Hero visual placeholder */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--moss);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(45, 58, 31, 0.4);
}

.hero-visual::before {
  content: 'PHOTO PLACEHOLDER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(251, 248, 241, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  z-index: 2;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(251, 248, 241, 0.03) 20px,
      rgba(251, 248, 241, 0.03) 40px);
}

.hero-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
  max-width: 240px;
  z-index: 3;
}

.hero-badge .stars {
  color: var(--clay);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.hero-badge .quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}

.hero-badge .attr {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ---------- SECTIONS ---------- */

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 50rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  margin-top: 0.5rem;
}

.section-head .lede {
  margin-top: 1.25rem;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--moss);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark .eyebrow {
  color: #d4a692;
}

.section--dark .lede {
  color: rgba(251, 248, 241, 0.75);
}

/* ---------- SERVICES GRID ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.25rem 2rem 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--clay);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}

.service-card .num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card ul li:last-child { border-bottom: none; }

.service-card ul li::before {
  content: '—';
  color: var(--clay);
  font-weight: 600;
}

.service-card .link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.service-card .link:hover {
  gap: 0.7rem;
  color: var(--clay);
}

/* ---------- WHY SECTION ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 2rem;
}

.why-item {
  position: relative;
}

.why-item .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 96;
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.why-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- PROCESS ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem 1.5rem;
  border-left: 1px solid rgba(251, 248, 241, 0.15);
  position: relative;
}

.process-step:first-child { border-left: none; }

.process-step .step-num {
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #d4a692;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.92rem;
  color: rgba(251, 248, 241, 0.7);
  line-height: 1.5;
}

/* ---------- SERVICE AREA ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}

.area-list li {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-list li small {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--clay);
  text-transform: uppercase;
}

.area-map {
  background: var(--moss);
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.area-map svg {
  width: 100%;
  height: 100%;
}

/* ---------- TESTIMONIAL ---------- */

.testimonial {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--clay);
  opacity: 0.4;
  margin-bottom: -1.5rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}

.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- CTA BAND ---------- */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-band .lede {
  color: rgba(251, 248, 241, 0.8);
  margin-bottom: 2.5rem;
}

.cta-band .btn-primary {
  background: var(--clay);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
}

.cta-band .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}

.cta-band .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- FOOTER ---------- */

footer {
  background: #14110d;
  color: rgba(251, 248, 241, 0.7);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .brand .name {
  color: var(--cream);
}

footer h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  padding: 0.3rem 0;
}

footer a {
  color: rgba(251, 248, 241, 0.7);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--clay);
}

footer .blurb {
  margin-top: 1.5rem;
  max-width: 22rem;
  line-height: 1.55;
}

.foot-bottom {
  border-top: 1px solid rgba(251, 248, 241, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(251, 248, 241, 0.5);
}

/* ---------- INTERIOR PAGE HEAD ---------- */

.page-head {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(180, 84, 58, 0.07), transparent 60%);
  pointer-events: none;
}

.page-head .crumb {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.25rem;
}

.page-head h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  max-width: 30rem;
}

.page-head .lede {
  max-width: 38rem;
  margin-top: 1.5rem;
}

/* ---------- TWO COLUMN CONTENT ---------- */

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-main h2 {
  margin: 2.5rem 0 1rem;
}

.content-main h2:first-child { margin-top: 0; }

.content-main h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.4rem;
}

.content-main p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-main ul, .content-main ol {
  margin: 1rem 0 1.5rem 1.25rem;
  color: var(--ink-soft);
}

.content-main li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-aside {
  position: sticky;
  top: 100px;
}

.aside-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  border-top: 4px solid var(--clay);
  margin-bottom: 1.5rem;
}

.aside-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.aside-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.aside-card .phone-big {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
}

.aside-card .btn {
  width: 100%;
  justify-content: center;
}

.aside-list {
  list-style: none;
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
}

.aside-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.aside-list li::before {
  content: '✓';
  color: var(--clay);
  font-weight: 700;
}

.aside-list li:last-child { border-bottom: none; }

/* ---------- CONTACT PAGE ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.contact-item .value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-item .value a:hover { color: var(--clay); }

.contact-item .note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

form.estimate {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
  border-top: 4px solid var(--clay);
}

form.estimate h3 {
  margin-bottom: 0.5rem;
}

form.estimate p.form-intro {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border 0.2s, background 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--cream);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

form.estimate button {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---------- MOBILE ---------- */

@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.85rem 0;
  }

  .menu-toggle { display: block; }

  .hero-grid,
  .area-grid,
  .content-grid,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 0;
    bottom: -20px;
  }

  .process-step {
    border-left: none;
    border-top: 1px solid rgba(251, 248, 241, 0.15);
  }

  .process-step:first-child { border-top: none; }

  .content-aside {
    position: static;
  }

  .topbar .wrap {
    font-size: 0.78rem;
  }

  .topbar .meta { display: none; }
}

/* ---------- FADE-IN ANIMATION ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
