/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600&display=swap');

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

/* COLORS */
:root {
  --bg: #f7f5f2;
  --bg-dark: #564E48;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #e8e4df;
  --text-muted-light: rgba(232,228,223,0.8);
  --accent: #a88c6a;
  --accent-dark: #8f7558;
  --border: rgba(0, 0, 0, 0.1);
  --border-dark: rgba(255, 255, 255, 0.12);
}

/* BODY */
body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Headings — Raleway */
h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* =====================
   BANNER
   ===================== */
.banner {
  height: 100svh;
  max-height: 720px;
  width: 100%;
  background: url('../images/banner.JPG') no-repeat center center;
  background-size: cover;
  position: relative;
}


/* =====================
   NAVBAR
   ===================== */
.navbar {
  width: 100%;
  height: 60px;
  background: #fff;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  margin-right: auto;
  padding-left: 24px;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo a:hover {
  opacity: 0.75;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  text-decoration: none;
  color: #666;
  position: relative;
  transition: color 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  height: 1px;
  background: var(--accent);
}

.contact-btn {
  background: var(--bg-dark);
}

.contact-btn a {
  color: #fff !important;
}

.contact-btn:hover {
  background: #3d3733;
}

.contact-btn a:hover {
  color: #fff !important;
}

.contact-btn a::after {
  display: none !important;
}

.burger {
  display: none;
  cursor: pointer;
  padding-right: 20px;
  font-size: 1.1rem;
  color: #333;
}

.burger i {
  transition: transform 0.3s ease;
}

/* =====================
   CONTENT SECTIONS
   ===================== */
.content {
  width: 100%;
  background: var(--bg);
}

.row {
  display: flex;
  align-items: stretch;
}

/* Standard row image */
.row img {
  width: 45%;
  object-fit: cover;
  display: block;
}

/* Intro section — square-ish crop showing lower part */
.intro-section .row img {
  aspect-ratio: 1 / 1;
  align-self: center;
  object-position: center 72%;
}

.intro-section .row {
  align-items: center;
}

.text {
  width: 55%;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.text h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.text p {
  line-height: 1.85;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 26, 26, 0.35);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  width: fit-content;
  font-family: 'Space Grotesk', sans-serif;
}

.text a:hover {
  opacity: 0.5;
}

.row.reverse {
  flex-direction: row-reverse;
}

/* =====================
   TEXT SECTION (UNELMISTA — dark)
   ===================== */
.text-section {
  background: var(--bg-dark);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.text-section h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 32px;
}

.text-section p {
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.85;
  color: var(--text-muted-light);
  font-size: 0.88rem;
}

/* =====================
   SERVICES SECTION (light, two-column)
   ===================== */
.services-section {
  background: var(--bg);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.services-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-left h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
}

.services-left p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.services-left a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 26, 26, 0.35);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  transition: opacity 0.2s;
  width: fit-content;
}

.services-left a:hover {
  opacity: 0.5;
}

/* Wrapper takes the flex space, ul sizes to its content */
.services-list-wrap {
  flex: 1;
  min-width: 0;
}

.services-list {
  display: inline-block;
  list-style: none;
}

.services-list li {
  display: block;
  white-space: nowrap;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  font-weight: 400;
  font-family: 'Space Grotesk', sans-serif;
}

/* 100% = longest li width, +150px past the end, same for all */
.services-list li::after {
  content: '';
  display: block;
  width: calc(100% + 150px);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 16px;
}

/* =====================
   ESITTELY SECTION (dark)
   ===================== */
.esittely-section {
  background: var(--bg-dark);
  padding: 100px 80px;
  border-top: 1px solid var(--border-dark);
}

.esittely-inner {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.esittely-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.esittely-text h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 28px;
}

.esittely-text p {
  line-height: 1.85;
  color: var(--text-muted-light);
  font-size: 0.94rem;
}

.esittely-text a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(232, 228, 223, 0.3);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  transition: opacity 0.2s;
  width: fit-content;
}

.esittely-text a:hover {
  opacity: 0.5;
}

.esittely-image {
  flex: 0 0 340px;
  margin-left: auto;
  padding-top: 6px;
}

.esittely-image img {
  width: 340px;
  height: auto;
  display: block;
}

/* =====================
   PROCESS (light, centered)
   ===================== */
.process {
  background: var(--bg);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.process > h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 60px;
  color: var(--text);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.step-number {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif;
}

.step h3 {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text);
}

.step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =====================
   PORTFOLIO PREVIEW (light)
   ===================== */
.portfolio-preview {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.preview-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  height: 640px;
  gap: 6px;
}

.preview-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-link {
  padding: 28px 80px;
  border-bottom: 1px solid var(--border);
}

.preview-link a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 26, 26, 0.3);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  transition: opacity 0.2s;
}

.preview-link a:hover {
  opacity: 0.5;
}

/* =====================
   CONTACT (dark)
   ===================== */
.contact {
  background: var(--bg-dark);
  padding: 100px 80px;
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
}

.contact > h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
}

.contact-item:first-child {
  border-top: 1px solid var(--border-dark);
}

.contact-item i {
  width: 18px;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
  opacity: 0.65;
}

.contact-item a,
.contact-item span {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--text-light);
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 16px;
  color: var(--text-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-weight: 300;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232, 228, 223, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
}

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

.contact-form button {
  background: #fff;
  color: var(--text);
  border: none;
  padding: 13px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  width: fit-content;
  font-weight: 500;
  margin-top: 4px;
}

.contact-form button:hover {
  opacity: 0.82;
}

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 22px;
  text-align: center;
  background: #564E48;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.06em;
  font-family: 'Space Grotesk', sans-serif;
}

footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

/* =====================
   FORM STATUS MESSAGE
   ===================== */
.form-status {
  display: none;
  padding: 14px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.form-status.success {
  background: rgba(168, 140, 106, 0.12);
  border-left: 3px solid var(--accent);
  color: var(--text);
}

.form-status.error {
  background: rgba(180, 60, 60, 0.08);
  border-left: 3px solid #b43c3c;
  color: #7a2020;
}

.form-status.visible { display: block; }

/* =====================
   SCROLL MARGIN
   ===================== */
.section, #esittely, #yla, #yhteys {
  scroll-margin-top: 60px;
}

html {
  scroll-behavior: smooth;
}

/* =====================
   PALVELUT PAGE
   ===================== */
.palvelut-intro {
  background: var(--bg-dark);
  padding: 100px 80px;
  text-align: center;
}

.palvelut-intro h1 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--text-light);
  margin-bottom: 24px;
}

.palvelut-intro p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted-light);
  line-height: 1.85;
  font-size: 0.88rem;
}

.service-block {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block img {
  flex: 0 0 38%;
  width: 38%;
  object-fit: cover;
  display: block;
}

.service-color-block {
  flex: 0 0 38%;
  width: 38%;
  background: var(--bg-dark);
  display: block;
}

.service-text {
  flex: 1;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.service-block.alt .service-text {
  background: var(--bg);
}

.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.service-text h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
}

.service-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.service-text p:last-child {
  margin-bottom: 0;
}

.palvelut-cta {
  background: var(--bg-dark);
  padding: 80px;
  text-align: center;
}

.palvelut-cta h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 400;
}

.palvelut-cta a {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.palvelut-cta a:hover { opacity: 0.82; }

@media (max-width: 768px) {
  .service-block, .service-block.reverse { flex-direction: column; }
  .service-block img { width: 100%; height: 260px; flex: none; }
  .service-text { padding: 48px 24px; }
  .palvelut-intro, .palvelut-cta { padding: 60px 24px; }
}

/* =====================
   TEXT SECTION LIGHT (vaalea palkki)
   ===================== */
.text-section-light {
  background: #fff;
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.text-section-light h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}

.text-section-light p {
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .text-section-light { padding: 60px 24px; }
}

/* =====================
   PORTFOLIO PAGE
   ===================== */
.gallery-section {
  padding-top: 60px; /* navbar height */
  background: var(--bg);
  min-height: 100vh;
}

.gallery {
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: flex-start;
}

.gallery-column {
  flex: 1;
}

.gallery-column img {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery-column img:hover {
  opacity: 0.82;
}

.gallery img.crop-square {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 72%;
}

.esittely-intro {
  padding-top: 60px;
}

.esittely-placeholder {
  width: 100%;
  overflow: hidden;
  max-height: 560px;
}

.esittely-placeholder img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.esittely-intro .row {
  justify-content: space-between;
}

.esittely-intro .row .text {
  flex: 0 0 48%;
  width: 48%;
}

.esittely-intro .row img {
  flex: 0 0 30%;
  width: 30%;
  height: auto;
  object-fit: unset;
  aspect-ratio: unset;
  align-self: flex-start;
  object-position: unset;
  margin-right: 0;
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0 24px;
  user-select: none;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* =====================
   SERVICE BLOCK — TEXT ONLY
   ===================== */
.service-block.text-only {
  min-height: auto;
}

.service-block.text-only .service-text {
  padding: 60px 72px;
}

/* =====================
   YHTEYSTIEDOT PAGE
   ===================== */
.yhteys-page {
  padding-top: 60px;
  background: var(--bg);
  min-height: 100vh;
}

.yhteys-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
}

.yhteys-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.yhteys-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.yhteys-info-item:first-child {
  border-top: 1px solid var(--border);
}

.yhteys-info-item i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.yhteys-info-item a,
.yhteys-info-item span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.yhteys-info-item a:hover {
  color: var(--text);
}

.yhteys-form-wrap h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
}

.yhteys-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yhteys-form input,
.yhteys-form textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-weight: 300;
}

.yhteys-form input::placeholder,
.yhteys-form textarea::placeholder {
  color: rgba(26,26,26,0.35);
}

.yhteys-form input:focus,
.yhteys-form textarea:focus {
  border-color: rgba(86,78,72,0.45);
}

.yhteys-form textarea {
  resize: vertical;
  min-height: 140px;
}

.yhteys-form .field-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  margin-top: 6px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.service-chip {
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  user-select: none;
}

.service-chip.selected {
  background: #564E48;
  color: #fff;
  border-color: #564E48;
}

.yhteys-form button {
  background: #564E48;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  width: fit-content;
  font-weight: 500;
  margin-top: 8px;
}

.yhteys-form button:hover {
  opacity: 0.82;
}

@media (max-width: 768px) {
  .yhteys-form-wrap { padding: 48px 24px; }
  .service-block.text-only .service-text { padding: 48px 24px; }
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 768px) {
  .banner {
    height: 60svh;
    background-position: calc(50% - 10px) center;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links a { height: 52px; }

  .burger { display: block; }

  .row, .row.reverse, .intro-section .row {
    flex-direction: column;
    align-items: stretch;
  }

  .row img, .intro-section .row img {
    width: 100%;
    height: 280px;
    aspect-ratio: unset;
    align-self: stretch;
    object-position: center 65%;
  }

  .text {
    width: 100%;
    padding: 40px 24px;
  }

  .text-section { padding: 60px 24px; }

  .services-section {
    padding: 60px 24px;
    flex-direction: column;
    gap: 40px;
  }

  .services-left { flex: none; width: 100%; }

  .services-list-wrap { width: 100%; }
  .services-list { display: block; width: 100%; }
  .services-list li { white-space: normal; }
  .services-list li:not(:last-child)::after { width: 100%; }

  .esittely-section { padding: 60px 24px; }

  .esittely-inner {
    flex-direction: column;
    gap: 36px;
  }

  .esittely-image {
    margin-left: 0;
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .esittely-image img { width: 220px; }

  .process { padding: 60px 24px; }

  .steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .step { max-width: 100%; }

  .preview-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .preview-images img { height: 240px; }

  .preview-link { padding: 22px 24px; }

  .contact { padding: 60px 24px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery {
    gap: 4px;
    padding: 4px;
  }

  .gallery-column img {
    margin-bottom: 4px;
  }

  .esittely-intro .row img {
    object-fit: contain;
    width: 100%;
    height: auto;
    flex: none;
    aspect-ratio: unset;
    align-self: center;
    margin-right: 0;
    background: var(--bg);
  }

  .esittely-intro .row .text {
    width: 100%;
    flex: none;
  }

  .gallery-section { padding-top: 60px; }
}
