:root {
  --earth:   #1E1209;
  --bark:    #4D2E14;
  --thatch:  #8A6535;
  --straw:   #C49030;
  --gold:    #D4A040;
  --cream:   #FAF6EE;
  --linen:   #F0E8D4;
  --linen2:  #E8DEC8;
  --white:   #FDFAF4;
  --max:     1120px;
  --pad:     clamp(1.5rem, 5vw, 5rem);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { border-radius: 12px; }
.hero-img-box, .g-item { border-radius: 12px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--earth);
  font-weight: 300;
  line-height: 1.75;
}

/* ── LAYOUT WRAPPER ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── NAVIGATION ── */
.nav-outer {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--linen2);
}
nav {
  max-width: var(--max); margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 400; color: var(--thatch); transition: color 0.2s;
}
.nav-links a:hover { color: var(--straw); }
.nav-cta {
  font-family: 'Jost', sans-serif; font-size: 0.73rem;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 0.5rem 1.5rem; transition: all 0.25s; font-weight: 400;
  border: 1px solid var(--linen2); color: var(--bark);
}
.nav-cta:hover { background: var(--linen); color: var(--earth); border-color: var(--straw); }

/* ── HERO ── */
.hero { padding: 7rem 0 0; background: var(--cream); }
.hero-img-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.hero-img-box {
  position: relative; height: 70vh; min-height: 480px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('rød_3_6.jpg');
  background-size: cover; background-position: center;
  animation: kz 20s ease-in-out infinite alternate;
}
@keyframes kz { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,9,3,0.92) 0%, rgba(18,9,3,0.65) 45%, rgba(18,9,3,0.35) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding: 3.5rem;
}
.eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; }
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }
.eyebrow.dark { color: var(--thatch); }
.eyebrow.dark::before { background: var(--straw); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.2rem); color: white; line-height: 1.08;
  max-width: 760px; margin-bottom: 1.4rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.92); font-size: 0.97rem; max-width: 430px; margin-bottom: 2.2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn {
  font-family: 'Jost', sans-serif; font-size: 0.73rem;
  letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 2.2rem; font-weight: 400; transition: all 0.22s; display: inline-block;
}
.btn-solid {
  background: var(--gold); color: var(--earth);
}
.btn-solid:hover { background: #E2B555; transform: translateY(-1px); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.38); color: rgba(255,255,255,0.8);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); color: white; }
.btn-outline-dark {
  border: 1px solid var(--linen2); color: var(--bark);
}
.btn-outline-dark:hover { border-color: var(--straw); color: var(--earth); background: var(--linen); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--cream); border-bottom: 1px solid var(--linen2);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.4rem 1rem; text-align: center;
  border-right: 1px solid var(--linen2);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; color: var(--straw); line-height: 1; margin-bottom: 0.4rem;
}
.stat-l { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: #A8916A; }

/* ── SECTION PADDING ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.2rem; color: var(--earth);
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 38%; aspect-ratio: 1/1; object-fit: cover;
  border: 5px solid var(--white);
}
.about-text p { color: #5C3D22; font-size: 0.97rem; margin-bottom: 1.2rem; }
.about-sig {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--linen2);
  display: flex; align-items: center; gap: 1.1rem;
}
.sig-init {
  width: 48px; height: 48px; border-radius: 50%; background: var(--linen);
  border: 1px solid var(--linen2); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--thatch); flex-shrink: 0;
}
.sig-name { font-size: 0.88rem; font-weight: 500; color: var(--earth); }
.sig-role { font-size: 0.75rem; color: var(--thatch); }

/* ── SERVICES ── */
.services-bg { background: var(--linen); }
.services-header { max-width: 500px; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.svc {
  background: var(--white); padding: 2.5rem 2rem;
  border: 1px solid var(--linen2);
  position: relative; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--straw); transition: width 0.4s;
}
.svc:hover { border-color: var(--straw); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.svc:hover::after { width: 100%; }
.svc-n {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem;
  font-weight: 300; color: var(--linen2); line-height: 1; margin-bottom: 1.2rem;
}
.svc-t {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  font-weight: 400; color: var(--earth); margin-bottom: 0.8rem;
}
.svc-d { font-size: 0.85rem; color: var(--thatch); line-height: 1.85; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.why-points { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }
.why-pt { display: flex; gap: 1.4rem; align-items: flex-start; padding-bottom: 1.8rem; border-bottom: 1px solid var(--linen2); }
.why-pt:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold);
  font-weight: 300; flex-shrink: 0; margin-top: 0.15rem; min-width: 24px;
}
.why-pt-h { font-size: 0.9rem; font-weight: 500; color: var(--earth); margin-bottom: 0.3rem; }
.why-pt-p { font-size: 0.85rem; color: var(--thatch); line-height: 1.8; }

/* ── GALLERY ── */
.gallery-bg { background: var(--linen); }
.gallery-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem;
}
.gallery-head .section-title { margin-bottom: 0; }
.gallery-head p { color: var(--thatch); font-size: 0.88rem; max-width: 240px; text-align: right; }
.gallery-grid { columns: 3; column-gap: 12px; }
.g-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; }
.g-item img { width: 100%; display: block; transition: transform 0.5s; }
.g-item:hover img { transform: scale(1.04); }

/* ── PROCESS ── */
.process-head { text-align: center; max-width: 520px; margin: 0 auto 5rem; }
.process-head .eyebrow { justify-content: center; }
.process-head .eyebrow::before { display: none; }
.process-head p { color: var(--thatch); font-size: 0.93rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 840px; margin: 0 auto; }
.step { text-align: center; }
.step-c {
  width: 3.5rem; height: 3.5rem; border: 1px solid var(--linen2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--thatch);
  margin: 0 auto 1.5rem;
}
.step-t { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--earth); margin-bottom: 0.6rem; }
.step-p { font-size: 0.84rem; color: var(--thatch); line-height: 1.85; }

/* ── QUOTE ── */
.quote-band {
  background: var(--earth); padding: 5rem 0; text-align: center;
}
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88);
  max-width: 700px; margin: 1rem auto 2.2rem; line-height: 1.5;
}
.quote-band blockquote em { color: var(--gold); font-style: normal; }
.quote-band .eyebrow { color: var(--gold); justify-content: center; }
.quote-band .eyebrow::before { display: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; }
.contact-text .section-title { margin-bottom: 0.8rem; }
.contact-text > p { color: #5C3D22; font-size: 0.95rem; margin-bottom: 2.2rem; }
.cdet-list { display: flex; flex-direction: column; gap: 1.2rem; }
.cdet { display: flex; gap: 1rem; align-items: flex-start; }
.cdet-icon {
  width: 36px; height: 36px; background: var(--linen); border: 1px solid var(--linen2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px;
}
.cdet-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--thatch); margin-bottom: 0.15rem; }
.cdet-val { font-size: 0.92rem; color: var(--earth); }
.cdet-val a { color: inherit; text-decoration: none; }
.cdet-val a:hover { color: var(--straw); }
.contact-card {
  background: var(--linen); border: 1px solid var(--linen2);
  padding: 3rem; display: flex; flex-direction: column;
}
.contact-card .eyebrow { margin-bottom: 1rem; }
.contact-card-t {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--earth); line-height: 1.3; margin-bottom: 1rem;
}
.contact-card > p { color: var(--thatch); font-size: 0.88rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-card .contact-links { display: flex; flex-direction: column; gap: 0.8rem; margin-top: auto; }
.contact-links .btn { text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--earth);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  max-width: var(--max); margin: 0 auto; padding: 5rem var(--pad) 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  font-weight: 300; color: rgba(255,255,255,0.95); margin-bottom: 1.2rem; letter-spacing: 0.05em;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.85; max-width: 260px; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 0.87rem; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1rem; }
.footer-contact-item span:first-child { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.footer-contact-item a, .footer-contact-item span:last-child {
  font-size: 0.87rem; color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: var(--max); margin: 0 auto;
  padding: 1.5rem var(--pad);
  display: flex; justify-content: center; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.footer-credit {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem var(--pad);
  text-align: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.footer-credit a {
  color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(255,255,255,0.85); }

/* ── FAQ ── */
.faq-head { max-width: 560px; margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--linen2); max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--linen2);
  padding: 1.5rem 0;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 400; color: var(--earth);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Jost', sans-serif; font-size: 1.6rem; font-weight: 300;
  color: var(--thatch); transition: transform 0.25s, color 0.2s;
  line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary { color: var(--straw); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--straw); }
.faq-item summary:hover { color: var(--straw); }
.faq-item p {
  color: var(--thatch); font-size: 0.92rem; line-height: 1.85;
  margin-top: 0.9rem; max-width: 720px;
}
.areas {
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid var(--linen2); max-width: 820px;
}
.areas-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--thatch); margin-bottom: 0.8rem;
}
.areas-list { color: var(--earth); font-size: 0.92rem; line-height: 1.9; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .gallery-head p { text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; max-width: 400px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .stat { padding: 2rem 0.5rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-img-box { min-height: 560px; height: auto; }
  .hero-inner { padding: 2rem 1.25rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero p { font-size: 0.9rem; margin-bottom: 1.6rem; }
  .hero-btns { gap: 0.6rem; }
  .btn { padding: 0.75rem 1.4rem; }
}
