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

body {
  font-family: Arial, sans-serif;
  background: #f7f4f1;
  color: #2b2b2b;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    url("../images/hero-v2.png")
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.logo {
  width: min(320px, 75vw);
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
}

.work {
  padding: 96px 24px;
  background: #f7f4f1;
}
.section-heading {
  max-width: 1200px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading p {
  color: #8b6f5a;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .work {
    padding: 72px 16px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}



.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
  background: white;
  color: #2b2b2b;
}

.contact {
  padding: 96px 24px;
  background: #2f242d;
  color: white;
}

.contact .section-heading p {
  color: #d9b5c4;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-details a {
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 6px;
}

@media (max-width: 700px) {
  .contact {
    padding: 72px 16px;
  }
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
}


.site-nav {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 32px;
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: white;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.offer {
  padding: 96px 24px;
  background: #efe8e1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.offer-card {
  padding: 34px 28px;
  background: #fffdfa;
  border-top: 2px solid #a61f55;
}

.offer-card h3 {
  margin-bottom: 22px;
  color: #2f242d;
  font-size: 1.45rem;
  font-weight: 400;
}

.offer-card ul {
  list-style: none;
}

.offer-card li {
  padding: 10px 0;
  border-bottom: 1px solid #e7ddd5;
  line-height: 1.4;
}

.offer-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 26px;
  background: #2f242d;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px;
  background: #21191f;
  color: white;
}

.site-footer p {
  letter-spacing: 0.1em;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

@media (max-width: 700px) {
  .site-nav {
    top: 18px;
    right: 18px;
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.62rem;
  }

  .offer {
    padding: 72px 16px;
  }

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

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}


.offer-card li a {
  color: inherit;
  text-decoration: none;
}

.offer-card li a:hover {
  color: #a61f55;
}

.service-page {
  min-height: 100vh;
  background: #efe8e1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 5vw, 72px);
  background: #2f242d;
}

.service-header a {
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-brand {
  font-weight: 700;
}

.service-main {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 144px) 24px;
}

.eyebrow {
  color: #a61f55;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-main h1 {
  max-width: 720px;
  margin: 14px 0 34px;
  color: #2f242d;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
}

.service-copy {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-copy p + p {
  margin-top: 20px;
}

.service-cta,
.service-email {
  display: block;
  width: fit-content;
  margin-top: 38px;
}

.service-cta {
  padding: 14px 22px;
  background: #2f242d;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-email {
  margin-top: 18px;
  color: #2f242d;
}

@media (max-width: 700px) {
  .service-header {
    padding: 20px 18px;
  }

  .service-header a {
    font-size: 0.64rem;
  }
}


.service-visual {
  height: min(42vh, 440px);
  min-height: 260px;
  overflow: hidden;
  background: #2f242d;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-main {
  background: #efe8e1;
}

@media (max-width: 700px) {
  .service-visual {
    height: 34vh;
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .hero {
    background-image: url("../images/hero-mobile-v2.png");
    background-position: center center;
    background-size: cover;
  }
}

/* Mobile hero copy placement */
@media (max-width: 700px) {
  .hero {
    align-items: flex-start;
  }

  .hero .overlay {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.25) 48%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .hero-content {
    width: 100%;
    padding: 18vh 20px 20px;
    color: #2f242d;
  }

  .hero-content h1,
  .hero-content p {
    color: #2f242d;
    text-shadow: none;
  }

  .hero-content .logo {
    margin-bottom: 12px;
  }

  .hero-cta {
    border-color: #2f242d;
    color: #2f242d;
  }

  .hero-cta:hover {
    background: #2f242d;
    color: white;
  }

  .site-nav a {
    color: #2f242d;
  }
}

/* Mobile hero editorial layout */
@media (max-width: 700px) {
  .hero-content {
    min-height: 100svh;
    padding: 14vh 20px 0;
  }

  .hero-content .logo {
    width: min(190px, 56vw);
    margin-bottom: 4px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .hero-cta {
    position: absolute;
    top: 75vh;
    left: 50%;
    margin-top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}


.price-page {
  background: #efe8e1;
}

.price-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 24px;
}

.price-main .section-heading h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
}

.price-note {
  display: block;
  margin-top: 14px;
  color: #6c5b64;
}

.price-section {
  margin-top: 64px;
}

.price-section h2 {
  margin-bottom: 20px;
  color: #2f242d;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 28px;
  background: #fffdfa;
  border-top: 2px solid #a61f55;
}

.price-card h3 {
  margin-bottom: 18px;
  color: #2f242d;
  font-size: 1.1rem;
}

.price-card ul {
  list-style: none;
}

.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid #e7ddd5;
  line-height: 1.45;
}

.price-contact {
  margin-top: 60px;
}

@media (max-width: 700px) {
  .price-main {
    padding: 72px 16px;
  }

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


.price-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid #e7ddd5;
  line-height: 1.4;
}

.price-rows strong {
  flex: 0 0 auto;
  color: #a61f55;
  white-space: nowrap;
}

.price-detail {
  margin-top: 18px;
  color: #6c5b64;
  font-size: 0.93rem;
}

.electro-card,
.tricho-card,
.ear-card {
  margin-top: 18px;
}

.price-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-package-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.price-package {
  padding: 18px;
  background: #f7f1eb;
}

.price-package h4 {
  margin-bottom: 12px;
  color: #2f242d;
  font-size: 1rem;
}

.price-package h4 strong {
  color: #a61f55;
  white-space: nowrap;
}

.price-package p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
}

.price-package ul {
  padding-left: 18px;
}

.price-package li {
  margin: 8px 0;
  line-height: 1.4;
}

.tricho-card .price-package-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
  .price-package-grid,
  .price-package-grid.compact,
  .tricho-card .price-package-grid {
    grid-template-columns: 1fr;
  }

  .price-rows > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}


/* Logo-only hero layout */
.logo {
  width: min(430px, 82vw);
}

@media (max-width: 700px) {
  .hero-content .logo {
    width: min(225px, 64vw);
  }

  .hero-cta {
    top: 83vh;
  }
}


.home-jump {
  position: fixed;
  z-index: 10;
  right: 22px;
  bottom: 22px;
  padding: 11px 15px;
  border: 1px solid rgba(47, 36, 45, 0.25);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.92);
  color: #2f242d;
  box-shadow: 0 4px 18px rgba(47, 36, 45, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-page-nav {
  display: flex;
  gap: 20px;
}

@media (max-width: 700px) {
  .home-jump {
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
    font-size: 0.62rem;
  }
}


/* Subtle home button */
.logo {
  width: min(540px, 84vw);
}

.home-jump {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  font-size: 1.2rem;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(8px);
}

.home-jump.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .hero-content .logo {
    width: min(260px, 70vw);
  }

  .home-jump {
    right: 14px;
    bottom: 16px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}


.hero-tagline {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .hero-tagline {
    margin-top: 4px;
  }
}


.site-footer {
  align-items: center;
  flex-wrap: wrap;
}

.footer-credit {
  opacity: 0.78;
}

.footer-credit:hover {
  opacity: 1;
}

/* Language switch */
.lang-switch {
  display: inline-grid;
  min-width: 2.25rem;
  min-height: 2.25rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.site-nav .lang-switch {
  color: white;
}

.service-page-nav .lang-switch {
  margin-left: auto;
}

@media (max-width: 700px) {
  .lang-switch {
    min-width: 1.85rem;
    min-height: 1.85rem;
    font-size: 0.62rem !important;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav .lang-switch {
    color: #2f242d;
  }
}


.contact-details .contact-address {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
