/* =========================================================
   RONNI MÅLERI – STYLES.CSS
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --red: #ff2929;
  --red-dark: #d91515;
  --red-darker: #a90e0e;
  --red-light: #ffe8e8;
  --red-soft: #fff5f5;

  --black: #19191c;
  --gray: #66666e;
  --light: #f7f6f5;
  --white: #ffffff;
  --border: #e8e4e4;

  --facebook: #1877f2;
  --facebook-dark: #0d65d9;

  --container: 1160px;

  --radius-small: 14px;
  --radius-medium: 22px;
  --radius-large: 34px;

  --shadow-small: 0 12px 30px rgba(43, 20, 20, 0.08);
  --shadow-large: 0 26px 70px rgba(55, 15, 15, 0.14);
}


/* =========================================================
   BASE STYLES
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-right: auto;
  margin-left: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(232, 228, 228, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu > a {
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.menu > a:not(.nav-button):hover {
  color: var(--red);
}

.nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 25px rgba(255, 41, 41, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(217, 21, 21, 0.28);
}

.menu-button {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 27px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--black);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* =========================================================
   SHARED COMPONENTS
   ========================================================= */

.overline {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.overline.light {
  color: #ffaaaa;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(255, 41, 41, 0.24);
}

.button.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 36px rgba(217, 21, 21, 0.3);
}

.button.secondary {
  color: var(--black);
  border-color: var(--border);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.button.secondary:hover {
  color: var(--red);
  border-color: var(--red);
}

.button.full {
  width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 90px;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(255, 41, 41, 0.11),
      transparent 32%
    ),
    radial-gradient(
      circle at 5% 90%,
      rgba(255, 41, 41, 0.06),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fff6f6 100%
    );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.hero-text {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: clamp(50px, 6.8vw, 84px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero h1 span {
  color: var(--red);
}

.intro {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}


/* =========================================================
   HERO INFORMATION CARD
   ========================================================= */

.hero-info-card {
  position: relative;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(40, 20, 20, 0.12);
}

.hero-info-card::before,
.hero-info-card::after {
  display: none;
}


/* Left red panel */

.hero-info-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 58px 52px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(255, 255, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--red),
      var(--red-dark)
    );
}

.hero-info-content::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-info-small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-info-content h2 {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-info-content > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}


/* Right process list */

.hero-process {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 42px 48px;
  background: var(--white);
}

.hero-process::before {
  content: "";
  position: absolute;
  top: 78px;
  bottom: 78px;
  left: 73px;
  width: 2px;
  background: var(--red-light);
}

.hero-process article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.hero-process article:last-child {
  border-bottom: 0;
}

.hero-process article:hover {
  transform: translateX(6px);
}

.hero-process article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red-light);
  font-size: 12px;
  font-weight: 900;
}

.hero-process h3 {
  margin-bottom: 4px;
  color: var(--black);
  font-size: 19px;
  font-weight: 800;
}

.hero-process p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.contact-content h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.047em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--gray);
}


/* =========================================================
   SERVICES – LIGHT DESIGN
   ========================================================= */

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffafa 100%
    );
}

.services-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px;
  border: 1px solid var(--border);
  border-radius: 34px;
  color: var(--black);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 41, 41, 0.1),
      transparent 31%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 41, 41, 0.045),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #fff9f9 0%,
      #ffffff 55%,
      #fffafa 100%
    );
  box-shadow: 0 28px 75px rgba(55, 20, 20, 0.1);
}

.services-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -155px;
  right: -125px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 41, 41, 0.12);
  border-radius: 50%;
}

.services-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -180px;
  left: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 41, 41, 0.035);
}


/* Services heading */

.services-heading {
  position: relative;
  z-index: 1;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 55px;
  margin: 0 0 48px;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.services-heading::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.services-heading .overline {
  margin-bottom: 13px;
  color: var(--red);
}

.services-heading h2 {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--black);
}

.services-heading > p:last-child {
  max-width: 450px;
  margin-bottom: 4px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}


/* Services grid */

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: auto;
}


/* All service cards */

.service-card,
.service-card.featured {
  position: relative;
  min-width: 0;
  min-height: 175px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 21px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 19px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 30px rgba(55, 20, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


/* Red line on the left */

.service-card::before,
.service-card.featured::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 4px;
  height: auto;
  display: block;
  border-radius: 0 999px 999px 0;
  background: var(--red);
  transform: none;
  transition:
    width 0.25s ease,
    top 0.25s ease,
    bottom 0.25s ease;
}


/* No symbol in the top-right corner */

.service-card::after,
.service-card.featured::after {
  content: none;
  display: none;
}


/* Hover */

.service-card:hover,
.service-card.featured:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 41, 41, 0.42);
  color: var(--black);
  background: var(--white);
  box-shadow:
    0 20px 42px rgba(55, 20, 20, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card:hover::before,
.service-card.featured:hover::before {
  top: 0;
  bottom: 0;
  width: 6px;
}


/* Service number */

.number,
.featured .number,
.service-card.featured .number {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  align-self: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 41, 41, 0.15);
  border-radius: 17px;
  color: var(--red);
  background:
    linear-gradient(
      145deg,
      var(--red-soft),
      var(--red-light)
    );
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}


/* Service text */

.service-card h3,
.service-card.featured h3 {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  margin: 0 0 7px;
  color: var(--black);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p,
.service-card.featured p {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 2;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
  background: var(--light);
}

.gallery-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 55px;
  text-align: left;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p:last-child {
  max-width: 430px;
  margin-bottom: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #dddddd;
  text-align: left;
  box-shadow: var(--shadow-small);
}

.gallery-item.large {
  grid-row: 1 / span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(16, 6, 7, 0.85),
      transparent 60%
    );
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.gallery-item small {
  display: block;
  margin-bottom: 3px;
  color: #ffb5b5;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.facebook-gallery-button {
  display: inline-flex;
  margin-top: 23px;
  color: var(--red);
  font-weight: 800;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.facebook-gallery-button:hover {
  color: var(--red-dark);
  transform: translateX(3px);
}


/* =========================================================
   GOOGLE REVIEWS
   ========================================================= */

.reviews-section {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 41, 41, 0.05),
      transparent 28%
    ),
    var(--white);
}

.reviews-single {
  width: 100%;
}

.social-card {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(37, 18, 22, 0.09);
}

.google-card {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.social-top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.social-top h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.social-top p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 14px;
}

.google-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: #4285f4;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(30, 50, 90, 0.08);
  font-size: 28px;
  font-weight: 900;
}

.google-reviews-widget {
  width: 100%;
  min-height: 320px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--light);
}

.google-reviews-widget > div {
  width: 100%;
  min-height: 320px;
}

.google-reviews-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 320px !important;
  display: block !important;
  border: 0 !important;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 41, 41, 0.2),
      transparent 32%
    ),
    #171719;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 75px;
}

.contact-content > p:not(.overline) {
  max-width: 580px;
  color: #bcbcc2;
}

.contact-phone {
  display: inline-grid;
  margin: 21px 0 30px;
}

.contact-phone small {
  color: #aaaab0;
  font-size: 12px;
}

.contact-phone strong {
  color: #ff9d9d;
  font-size: 32px;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.contact-phone:hover strong {
  color: var(--white);
}


/* Facebook in contact section */

.contact-social {
  width: 100%;
  max-width: 440px;
  margin-bottom: 32px;
}

.contact-social > p {
  margin-bottom: 11px;
  color: #aaaab0;
  font-size: 13px;
}

.facebook-contact-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 119, 242, 0.38);
  border-radius: 17px;
  color: var(--white);
  background: rgba(24, 119, 242, 0.12);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.facebook-contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 119, 242, 0.75);
  background: rgba(24, 119, 242, 0.2);
  box-shadow: 0 14px 30px rgba(0, 60, 150, 0.18);
}

.facebook-contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--facebook);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.facebook-contact-icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.facebook-contact-link small,
.facebook-contact-link strong {
  display: block;
}

.facebook-contact-link small {
  margin-bottom: 2px;
  color: #aebbd0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.facebook-contact-link strong {
  color: var(--white);
  font-size: 15px;
}

.facebook-contact-arrow {
  color: #91bdf8;
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.facebook-contact-link:hover .facebook-contact-arrow {
  transform: translateX(4px);
}


/* Opening hours */

.hours {
  max-width: 440px;
  padding-top: 23px;
  border-top: 1px solid #36363b;
}

.hours h3 {
  margin-bottom: 13px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  color: #bcbcc2;
  font-size: 13px;
}

.hours strong {
  color: var(--white);
}


/* Map */

.map-card {
  overflow: hidden;
  border-radius: 29px;
  background: var(--white);
  box-shadow: var(--shadow-large);
}

.map-card iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
}

.map-address {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 26px;
  color: var(--black);
}

.map-address > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--red);
  background: var(--red-light);
  font-size: 20px;
}

.map-address small,
.map-address strong {
  display: block;
}

.map-address small {
  color: var(--gray);
  font-size: 11px;
  text-transform: uppercase;
}

.map-address p {
  margin-bottom: 0;
  color: var(--gray);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 55px 0 20px;
  color: var(--white);
  background: #0d0d0f;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-content strong {
  font-size: 22px;
}

.footer-content p {
  max-width: 500px;
  margin-bottom: 0;
  color: #929298;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff9c9c;
}

.copyright {
  margin-top: 36px;
  padding-top: 19px;
  border-top: 1px solid #29292d;
  color: #77777d;
  font-size: 11px;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: rgba(10, 5, 6, 0.95);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: 1050px;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox p {
  position: absolute;
  right: 30px;
  bottom: 18px;
  left: 30px;
  margin: 0;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 32px;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .menu {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu > a {
    padding: 12px 14px;
  }

  .nav-button {
    margin-top: 7px;
    text-align: center;
  }

  .hero-info-card {
    grid-template-columns: 1fr;
  }

  .hero-info-content {
    padding: 48px;
  }

  .hero-process {
    padding: 30px 48px 38px;
  }

  .services-shell {
    padding: 50px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .services-heading > p:last-child {
    max-width: 640px;
    margin-bottom: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    min-height: 165px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px 240px 240px;
  }

  .gallery-item.large {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

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

  .contact-content {
    max-width: 720px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 68px);
  }

  .intro {
    font-size: 16px;
  }

  .hero-info-card {
    border-radius: 23px;
  }

  .hero-info-content {
    padding: 36px 25px;
  }

  .hero-info-content h2 {
    font-size: 35px;
  }

  .hero-process {
    padding: 20px 25px 27px;
  }

  .hero-process::before {
    top: 54px;
    bottom: 54px;
    left: 49px;
  }

  .hero-process article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 0;
  }

  .hero-process article > span {
    width: 48px;
    height: 48px;
  }

  .services-shell {
    padding: 39px 22px;
    border-radius: 26px;
  }

  .services-heading {
    margin-bottom: 34px;
    padding-bottom: 26px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .service-card,
  .service-card.featured {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 16px;
    padding: 24px 22px;
    border-radius: 17px;
  }

  .number,
  .featured .number,
  .service-card.featured .number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .service-card h3,
  .service-card.featured h3 {
    font-size: 19px;
  }

  .service-card p,
  .service-card.featured p {
    font-size: 13px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
  }

  .gallery-item.large {
    grid-column: auto;
  }

  .social-card {
    padding: 22px;
  }

  .social-top {
    grid-template-columns: 47px minmax(0, 1fr);
  }

  .google-logo {
    width: 47px;
    height: 47px;
  }

  .google-reviews-widget,
  .google-reviews-widget > div,
  .google-reviews-widget iframe {
    min-height: 280px !important;
  }

  .map-card iframe {
    height: 320px;
  }

  .footer-content {
    display: grid;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
  .logo img {
    height: 44px;
    max-width: 170px;
  }

  .hero-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-info-content {
    padding: 31px 21px;
  }

  .hero-info-content h2 {
    font-size: 31px;
  }

  .hero-process {
    padding: 16px 21px 23px;
  }

  .hero-process::before {
    left: 43px;
  }

  .hero-process article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .hero-process article > span {
    width: 44px;
    height: 44px;
  }

  .services-shell {
    padding: 32px 17px;
  }

  .service-card,
  .service-card.featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 13px;
    padding: 23px 20px;
  }

  .number,
  .featured .number,
  .service-card.featured .number {
    grid-column: 1;
    grid-row: auto;
    width: 46px;
    height: 46px;
  }

  .service-card h3,
  .service-card.featured h3,
  .service-card p,
  .service-card.featured p {
    grid-column: 1;
    grid-row: auto;
  }

  .social-card {
    padding: 18px;
    border-radius: 22px;
  }

  .social-top {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .google-logo {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }

  .social-top h3 {
    font-size: 18px;
  }

  .google-reviews-widget {
    margin: 22px 0;
    border-radius: 15px;
  }

  .contact-phone strong {
    font-size: 27px;
  }

  .facebook-contact-link {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 12px;
  }

  .facebook-contact-icon {
    width: 44px;
    height: 44px;
  }

  .facebook-contact-link strong {
    font-size: 14px;
  }

  .facebook-contact-arrow {
    font-size: 19px;
  }

  .hours div {
    font-size: 12px;
  }

  .map-address {
    align-items: flex-start;
  }

  .lightbox {
    padding: 20px;
  }
}
