:root {
  --wine-950: #250204;
  --wine-900: #360406;
  --wine-800: #52080b;
  --wine-700: #6f0f12;
  --wine-600: #8d171b;
  --cream: #f5f0ef;
  --paper: #fffdfc;
  --ink: #171313;
  --muted: #6d6060;
  --line: rgba(70, 15, 18, .14);
  --white-line: rgba(255,255,255,.24);
  --shadow: 0 24px 70px rgba(35, 0, 2, .14);
  --radius: 0;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: var(--wine-700); color: #fff; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--wine-700);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-size: clamp(2.45rem, 5.7vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 760;
}
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.lead { margin: 0; color: #544949; font-size: clamp(1rem, 1.5vw, 1.18rem); }

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto 0;
  color: #fff;
}
.site-header.on-light {
  position: relative;
  background: linear-gradient(135deg, var(--wine-900), var(--wine-700));
}
.nav-shell {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.brand { display: inline-flex; align-items: center; gap: 22px; min-width: 405px; }
.brand-mark { width: 104px; height: 104px; flex: 0 0 auto; filter: drop-shadow(0 7px 14px rgba(0,0,0,.13)); }
.brand-copy { display: inline-block; white-space: nowrap; font-size: 1.16rem; line-height: 1; letter-spacing: .055em; font-weight: 760; }
.nav-links { display: flex; align-items: center; gap: 31px; margin-left: auto; }
.nav-link {
  position: relative;
  padding: 10px 0;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  opacity: .88;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: #fff;
  transition: right .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.58);
  padding: 12px 18px;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: .25s ease;
}
.nav-cta:hover { background: #fff; color: var(--wine-800); }
.menu-btn { display: none; margin-left: auto; border: 0; background: transparent; color: #fff; width: 44px; height: 44px; cursor: pointer; }
.menu-btn span, .menu-btn::before, .menu-btn::after { content: ""; display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: .25s; }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(159,31,34,.42), transparent 34%),
    linear-gradient(110deg, var(--wine-900) 0%, #420609 45%, #5e0b0f 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29,0,2,.48) 0%, rgba(29,0,2,.12) 54%, rgba(29,0,2,.12) 100%);
  pointer-events: none;
}
.hero-building {
  position: absolute;
  z-index: 0;
  right: -3%;
  bottom: 0;
  width: min(60vw, 900px);
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  opacity: .76;
  mix-blend-mode: screen;
  filter: saturate(.8) contrast(1.18) brightness(.62);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
  align-items: center;
  gap: 70px;
  padding-top: 110px;
}
.hero-copy { max-width: 660px; }
.hero-copy .eyebrow { color: rgba(255,255,255,.72); }
.hero-copy .display { max-width: 690px; }
.hero-copy .lead { max-width: 565px; color: rgba(255,255,255,.78); margin-top: 28px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--wine-800); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(70,0,3,.12); backdrop-filter: blur(7px); }
.btn-dark { background: var(--wine-700); color: #fff; }
.btn-outline { border-color: var(--wine-700); color: var(--wine-700); background: transparent; }
.arrow { font-size: 1.05rem; transform: translateY(-1px); }
.hero-panel {
  justify-self: end;
  width: min(100%, 325px);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background: rgba(38,0,2,.16);
  backdrop-filter: blur(8px);
}
.hero-panel-row { padding: 24px 4px; border-bottom: 1px solid var(--white-line); display: flex; gap: 16px; align-items: center; }
.hero-panel-row:last-child { border-bottom: 0; }
.hero-panel-icon { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); display: grid; place-items: center; font-size: 1.15rem; }
.hero-panel small { display: block; font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; opacity: .68; }
.hero-panel strong { display: block; margin-top: 2px; font-size: .98rem; font-weight: 650; }

/* Sections */
.section { padding: 100px 0; }
.section-white { background: var(--paper); }
.section-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.section-head .lead { max-width: 620px; justify-self: end; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: #fff; box-shadow: 0 10px 30px rgba(61,13,16,.045); overflow: hidden; border: 1px solid rgba(80,14,17,.06); transition: transform .26s ease, box-shadow .26s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-image { aspect-ratio: 1.38; overflow: hidden; background: #d8cecc; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-body { position: relative; padding: 34px 24px 27px; }
.service-badge { position: absolute; top: -26px; left: 24px; width: 52px; height: 52px; background: var(--wine-700); color: #fff; display: grid; place-items: center; clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%); font-weight: 800; }
.service-body h3 { margin: 0 0 8px; font-size: 1.06rem; }
.service-body p { margin: 0; min-height: 72px; color: #6b5f5f; font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--wine-700); font-size: .75rem; text-transform: uppercase; letter-spacing: .055em; font-weight: 800; }

.discipline-bar { background: linear-gradient(100deg, var(--wine-900), var(--wine-700)); color: #fff; }
.discipline-grid { min-height: 132px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.discipline { display: flex; align-items: center; gap: 16px; padding: 25px 32px; border-right: 1px solid rgba(255,255,255,.25); }
.discipline:last-child { border-right: 0; }
.discipline-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.55); display: grid; place-items: center; font-size: 1.15rem; }
.discipline strong { display: block; font-size: .97rem; }
.discipline span { display: block; opacity: .64; font-size: .69rem; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.project-card { background: #fff; border: 1px solid rgba(80,14,17,.06); overflow: hidden; }
.project-photo { aspect-ratio: 1.45; overflow: hidden; background: #ddd; }
.project-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.project-card:hover img { transform: scale(1.04); filter: contrast(1.05); }
.project-info { padding: 18px 16px 20px; }
.project-info h3 { margin: 0; font-size: .93rem; }
.project-info p { margin: 4px 0 0; color: #7d6d6d; font-size: .79rem; }

.quote-band { padding: 95px 0; color: #fff; background: linear-gradient(135deg, #360406, #7b1216); }
.quote-band .inner { max-width: 940px; }
.quote-band blockquote { margin: 0; font-size: clamp(2rem, 4.2vw, 4rem); line-height: 1.06; letter-spacing: -.04em; font-weight: 680; }
.quote-band p { margin: 22px 0 0; color: rgba(255,255,255,.7); max-width: 640px; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg, var(--wine-900), var(--wine-700)); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.09), transparent 30%); }
.page-hero .container { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 100px; }
.page-hero .eyebrow { color: rgba(255,255,255,.66); }
.page-hero h1 { max-width: 850px; font-size: clamp(2.8rem, 6vw, 5.6rem); line-height: .98; margin: 0; letter-spacing: -.05em; }
.page-hero p { max-width: 650px; color: rgba(255,255,255,.72); margin: 26px 0 0; font-size: 1.06rem; }

.detail-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: .7fr 1.3fr; background: var(--paper); }
.detail-number { padding: 42px; color: var(--wine-700); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.detail-content { padding: 42px; border-left: 1px solid var(--line); }
.detail-content h2 { margin: 0 0 12px; font-size: clamp(1.65rem, 3vw, 2.45rem); letter-spacing: -.035em; }
.detail-content p { max-width: 760px; color: #665858; margin: 0; }

.project-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-showcase article { background: #fff; border: 1px solid rgba(70,15,18,.07); }
.project-showcase .project-photo { aspect-ratio: 1.55; }
.project-showcase .project-info { padding: 26px; }
.project-showcase .project-info h2 { margin: 0; font-size: 1.25rem; }
.project-showcase .project-info p { margin-top: 8px; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-photo { min-height: 560px; overflow: hidden; background: var(--wine-800); }
.about-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: 52% center; filter: saturate(.75) brightness(.72); }
.about-copy p { color: #645656; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.value { border-top: 2px solid var(--wine-700); padding-top: 16px; }
.value strong { display: block; margin-bottom: 5px; }
.value span { color: #786b6b; font-size: .83rem; }

.contact-strip { padding: 72px 0; background: var(--paper); border-top: 1px solid var(--line); }
.contact-strip .container { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.contact-strip h2 { margin: 0; font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.08; }
.contact-strip p { margin: 9px 0 0; color: #6b5b5b; }

/* Footer */
.site-footer { background: linear-gradient(125deg, #3b0507, #7b1215); color: #fff; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 56px; }
.footer-brand .brand { min-width: 0; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.67); font-size: .87rem; margin: 22px 0 0; }
.footer-col h3 { margin: 7px 0 18px; font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.68); font-size: .84rem; margin: 10px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .nav-shell { min-height: 94px; }
  .brand { min-width: 0; }
  .brand-mark { width: 84px; height: 84px; }
  .mobile-nav {
    position: fixed; inset: 0; z-index: 45; display: grid; place-items: center;
    background: rgba(48,3,5,.98); color:#fff; opacity: 0; pointer-events:none; transition:.25s;
  }
  .mobile-nav.open { opacity: 1; pointer-events:auto; }
  .mobile-nav-inner { display:grid; gap:18px; text-align:center; }
  .mobile-nav a { font-size: 1.45rem; font-weight:700; letter-spacing:-.02em; }
  .site-header { z-index: 60; }
  .hero-content { grid-template-columns: 1fr; gap: 28px; }
  .hero-panel { justify-self: start; width: 100%; max-width: 640px; display: grid; grid-template-columns: repeat(2,1fr); }
  .hero-panel-row { padding: 17px 10px; }
  .hero-panel-row:nth-child(2) { border-bottom: 1px solid var(--white-line); }
  .hero-panel-row:nth-child(odd) { border-right: 1px solid var(--white-line); }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head .lead { justify-self: start; }
  .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .discipline:nth-child(2) { border-right: 0; }
  .discipline:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.25); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-copy { font-size: .78rem; letter-spacing: .035em; }
  .hero, .hero-content { min-height: 720px; }
  .hero-content { padding-top: 120px; align-content: center; }
  .hero-building { width: 100%; right: -35%; opacity: .48; }
  .hero::after { background: linear-gradient(90deg, rgba(29,0,2,.78), rgba(29,0,2,.28)); }
  .hero-copy .lead { margin-top: 22px; }
  .hero-panel { display: none; }
  .section { padding: 72px 0; }
  .services-grid, .projects-grid, .project-showcase { grid-template-columns: 1fr; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.25); }
  .discipline:last-child { border-bottom: 0; }
  .page-hero .container { padding-top: 85px; padding-bottom: 74px; }
  .detail-row { grid-template-columns: 1fr; }
  .detail-number { padding: 25px 26px 0; }
  .detail-content { padding: 20px 26px 30px; border-left:0; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-photo, .about-photo img { min-height: 400px; }
  .values { grid-template-columns: 1fr; }
  .contact-strip .container { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v7 hero slideshow */
.hero-slider {
  background: linear-gradient(110deg, var(--wine-900) 0%, #420609 45%, #5e0b0f 100%);
}
.hero-slider::after { display: none; }
.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slides { z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: heroPhaseFade 24s infinite;
  transform: scale(1.03);
}
.hero-slider .slide-1 { background-image: url('../img/hero-phase-1.png'); animation-delay: 0s; }
.hero-slider .slide-2 { background-image: url('../img/hero-phase-2.png'); animation-delay: 6s; }
.hero-slider .slide-3 { background-image: url('../img/hero-phase-3.png'); animation-delay: 12s; }
.hero-slider .slide-4 { background-image: url('../img/hero-phase-4.png'); animation-delay: 18s; }
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(92, 10, 14, .32) 0%, rgba(48, 1, 4, .38) 38%, rgba(35, 0, 2, .62) 100%),
    linear-gradient(90deg, rgba(29,0,2,.76) 0%, rgba(29,0,2,.42) 50%, rgba(29,0,2,.60) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-building { display: none; }
.hero-copy { max-width: 720px; }
.hero-copy .display { max-width: 720px; }
.hero-copy .lead { max-width: 650px; }
.hero-panel {
  width: min(100%, 360px);
  background: rgba(27, 0, 2, .22);
}
@keyframes heroPhaseFade {
  0% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 70px;
  }
  .hero-panel { justify-self: start; width: 100%; max-width: 560px; }
}
@media (max-width: 700px) {
  .hero {
    min-height: 700px;
  }
  .hero-content {
    min-height: 700px;
    padding-top: 125px;
  }
  .hero-panel-row { padding: 18px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }
  .hero-slider .slide-1 { opacity: 1; }
}

/* v8 – Om os */
.about-hero {
  min-height: 535px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 24%, rgba(181, 27, 34, .22), transparent 30%),
    linear-gradient(118deg, #2b0204 0%, #50070a 47%, #790f13 100%);
}
.about-hero::after {
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(255,255,255,.028) 58% 58.2%, transparent 58.2%),
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.055), transparent 26%);
}
.about-hero .container {
  padding-top: 92px;
  padding-bottom: 88px;
}
.about-hero .eyebrow {
  margin-bottom: 12px;
  color: rgba(255,255,255,.62);
}
.about-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -.045em;
}
.about-hero-copy {
  max-width: 840px;
  margin-top: 34px;
  padding-left: 24px;
  border-left: 2px solid rgba(255,255,255,.58);
}
.page-hero .about-hero-copy p {
  max-width: none;
  margin: 0 0 16px;
  color: rgba(255,255,255,.84);
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}
.page-hero .about-hero-copy p:last-child { margin-bottom: 0; }
.team-section { padding-top: 88px; }
.team-heading { margin-bottom: 42px; }
.team-heading .section-title { margin-top: 8px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 930px;
  margin: 0 auto;
}
.team-card { min-width: 0; }
.team-photo {
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: #e8e1df;
  border: 1px solid rgba(82, 8, 11, .08);
  box-shadow: 0 18px 45px rgba(52, 4, 7, .08);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card:nth-child(2) .team-photo img {
  object-fit: cover;
  object-position: center center;
}
.team-info {
  padding: 22px 8px 0;
  text-align: center;
}
.team-info h3 {
  margin: 0;
  color: var(--wine-700);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.team-role {
  margin: 8px 0 10px;
  color: #3f3737;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.team-role span { color: var(--wine-600); padding: 0 3px; }
.team-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-700);
  font-size: .92rem;
  font-weight: 650;
  border-bottom: 1px solid rgba(111,15,18,.32);
  padding-bottom: 3px;
}
.team-email:hover { border-color: var(--wine-700); }
@media (max-width: 760px) {
  .about-hero { min-height: auto; }
  .about-hero .container { padding-top: 72px; padding-bottom: 66px; }
  .about-hero-copy { padding-left: 18px; margin-top: 28px; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-photo { max-width: 520px; margin: 0 auto; width: 100%; }
}


/* v10 – enkel og faglig forside */
.home-clean .hero-content {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  gap: 0;
}
.home-clean .hero-copy { max-width: 760px; }
.home-clean .hero-copy .display {
  max-width: 760px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: .97;
}
.home-clean .hero-copy .lead {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.72;
}
.home-clean .hero-overlay {
  background:
    linear-gradient(90deg, rgba(30,0,2,.88) 0%, rgba(42,1,4,.68) 40%, rgba(42,1,4,.22) 72%, rgba(42,1,4,.12) 100%),
    linear-gradient(180deg, rgba(55,2,5,.18), rgba(36,0,2,.40));
}

.home-services-clean {
  padding: 92px 0 88px;
  background: var(--paper);
}
.services-clean-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}
.services-clean-head h2 {
  margin: 6px 0 0;
  max-width: 650px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.services-clean-head > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: #665a5a;
  font-size: .96rem;
}
.services-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-clean {
  min-height: 265px;
  padding: 31px 30px 30px 0;
}
.service-clean + .service-clean {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.service-clean-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--wine-700);
}
.service-clean-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-clean h3 {
  margin: 0 0 11px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.service-clean p {
  margin: 0;
  color: #6e6262;
  font-size: .88rem;
  line-height: 1.65;
}
.service-clean a {
  display: inline-block;
  margin-top: 19px;
  color: var(--wine-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-price-strip {
  color: #fff;
  background: linear-gradient(105deg, var(--wine-950), var(--wine-700));
}
.home-price-strip .container {
  min-height: 155px;
  display: grid;
  grid-template-columns: 1.15fr auto auto;
  align-items: center;
  gap: 48px;
}
.price-strip-copy small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.price-strip-copy strong {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  font-weight: 650;
}
.price-strip-copy span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.66);
  font-size: .87rem;
}
.price-strip-amount {
  padding-left: 48px;
  border-left: 1px solid rgba(255,255,255,.22);
  white-space: nowrap;
}
.price-strip-amount span {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.price-strip-amount strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.price-strip-amount em {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-style: normal;
}
.home-price-strip .btn {
  min-width: 150px;
  background: #fff;
  color: var(--wine-800);
}

.home-contact-simple {
  padding: 78px 0;
  background: var(--cream);
}
.home-contact-simple .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.home-contact-simple h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.home-contact-simple p {
  margin: 0;
  max-width: 690px;
  color: #6c5f5f;
}

.home-min-footer {
  padding: 32px 0;
  color: rgba(255,255,255,.68);
  background: var(--wine-950);
}
.home-min-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: .77rem;
}
.home-min-footer nav { display: flex; gap: 24px; }
.home-min-footer a:hover { color: #fff; }

@media (max-width: 980px) {
  .services-clean-head { align-items: start; flex-direction: column; gap: 18px; }
  .services-clean-grid { grid-template-columns: repeat(2,1fr); }
  .service-clean:nth-child(3) { border-left: 0; }
  .service-clean:nth-child(n+3) { border-top: 1px solid var(--line); }
  .home-price-strip .container { grid-template-columns: 1fr auto; padding-top: 28px; padding-bottom: 28px; }
  .price-strip-copy { grid-column: 1 / -1; }
  .price-strip-amount { padding-left: 0; border-left: 0; }
}
@media (max-width: 720px) {
  .home-clean .hero-copy .display { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .home-services-clean { padding: 72px 0 68px; }
  .services-clean-grid { grid-template-columns: 1fr; }
  .service-clean,
  .service-clean + .service-clean {
    min-height: 0;
    padding: 27px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-clean:first-child { border-top: 0; }
  .service-clean-icon { margin-bottom: 18px; }
  .home-price-strip .container { grid-template-columns: 1fr; gap: 24px; padding-top: 38px; padding-bottom: 38px; }
  .price-strip-copy { grid-column: auto; }
  .home-price-strip .btn { justify-self: start; }
  .home-contact-simple { padding: 62px 0; }
  .home-contact-simple .container,
  .home-min-footer .container { align-items: flex-start; flex-direction: column; }
  .home-min-footer nav { flex-wrap: wrap; }
}
