﻿/* ==========================================================================
   MC Steel Vip Güzellik Salonu — stil dosyası
   ========================================================================== */

:root {
  --ink: #121b24;
  --ink-soft: #1b2732;
  --ink-line: #2b3a47;
  --paper: #f6f2e9;
  --paper-soft: #f0e7d6;
  --line: #e2d5bd;
  --text: #23201d;
  --text-muted: #6b6664;
  --gold: #d7a67b;
  --gold-light: #e8c6a8;
  --plum: #1f385f;
  --plum-light: #3f5c85;
  --cream-on-ink: #f6f2e9;
  --muted-on-ink: #aebdc9;

  --font-display: "Figtree", "Segoe UI", Arial, sans-serif;
  --font-body: "Figtree", "Segoe UI", Arial, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
  --shadow-soft: 0 24px 48px -32px rgba(23, 19, 15, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: inherit;
}

h3, h4 {
  font-weight: 500;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: 108px 0;
}

.section--tight {
  padding: 84px 0;
}

.section--dark {
  background: var(--ink);
  color: var(--cream-on-ink);
}

.section--soft {
  background: var(--paper-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin-top: 14px;
}

.section-head p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--dark .section-head p {
  color: var(--muted-on-ink);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--cream-on-ink);
  border-color: rgba(244, 239, 231, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream-on-ink);
}

.btn-ink:hover {
  background: var(--ink-soft);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.topbar {
  background: var(--ink);
  color: var(--muted-on-ink);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar-info {
  display: flex;
  gap: 24px;
}

.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-info a:hover {
  color: var(--gold-light);
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.topbar-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.6);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--cream-on-ink);
}

.logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-light);
}

.logo-word {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
  margin-top: 2px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 64px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-on-ink);
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-caret {
  margin-left: 6px;
  display: inline-flex;
}

.nav-dropdown-caret svg {
  width: 11px;
  height: 11px;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-caret svg,
.nav-dropdown.is-open .nav-dropdown-caret svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.01em;
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(209, 172, 108, 0.1);
  color: var(--gold-light);
}

.nav-dropdown-menu a.nav-dropdown-all {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream-on-ink);
  padding: 6px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--cream-on-ink);
  overflow: hidden;
  padding: 150px 0 130px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 27, 36, 0.6) 0%, rgba(18, 27, 36, 0.32) 38%, rgba(18, 27, 36, 0.62) 68%, rgba(18, 27, 36, 0.94) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 720px;
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.hero-copy .eyebrow::before {
  background: var(--gold-light);
}

.hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-copy p {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--muted-on-ink);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

/* ---------- Hero quick links ---------- */

.hero-quicklinks {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 0;
}

.hero-quicklinks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}

.hero-quicklinks-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-on-ink);
  white-space: nowrap;
}

.hero-quicklinks-row a:hover {
  color: var(--gold-light);
}

.hero-quicklinks-row a svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ---------- Intro block ---------- */

.intro-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.intro-block h2 {
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
}

.intro-block h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.intro-block p {
  margin-top: 20px;
  color: var(--muted-on-ink);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ---------- Personalised analysis ---------- */

.analysis-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.analysis-pills {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}

.analysis-pill {
  background: var(--paper);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.analysis-pill:hover {
  background: var(--paper-soft);
  padding-left: 26px;
}

.analysis-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.analysis-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.analysis-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Before / after teaser ---------- */

.ba-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-line);
}

.ba-teaser-visual {
  position: relative;
  aspect-ratio: 4 / 3;
}

.ba-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-teaser-body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.ba-teaser-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.ba-teaser-body p {
  color: var(--muted-on-ink);
}

/* ---------- Benefits list ---------- */

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
}

.benefits-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.benefits-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.benefits-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Video button ---------- */

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-on-ink);
}

.video-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.video-btn-icon svg {
  width: 16px;
  height: 16px;
}

/* ---------- Blog ---------- */

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

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding-top: 20px;
}

.blog-card-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card h3 {
  margin-top: 10px;
  font-size: 1.4rem;
}

.blog-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-card .card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.blog-card .card-link svg {
  width: 15px;
  height: 15px;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 68px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--ink) 22%, rgba(23, 19, 15, 0.72) 62%, rgba(23, 19, 15, 0.35) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.page-hero p {
  margin-top: 16px;
  max-width: 560px;
  color: var(--muted-on-ink);
  font-size: 1.02rem;
}

.breadcrumb {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-on-ink);
  display: flex;
  gap: 8px;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ---------- Marquee strip ---------- */

.marquee {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-item span.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background-color 0.25s ease;
}

.service-card:hover {
  background: var(--paper-soft);
}

.service-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  flex-grow: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}

.service-card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Full services list (hizmetler.html) */

.service-row-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-row .service-icon {
  width: 54px;
  height: 54px;
}

.service-row .service-icon svg {
  width: 26px;
  height: 26px;
}

.service-row-body h3 {
  font-size: 1.5rem;
}

.service-row-body h3 a:hover {
  color: var(--gold);
}

.service-row-body p {
  margin-top: 8px;
  color: var(--text-muted);
  max-width: 560px;
}

.service-row-price {
  text-align: right;
  white-space: nowrap;
}

.service-row-price .price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.service-row-price .price-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Price categories ---------- */

.price-note-banner {
  text-align: center;
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.price-note-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
}

.price-note-banner span {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
}

.price-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.price-category {
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.price-category-head {
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 22px 26px;
}

.price-category-head h3 {
  font-size: 1.35rem;
}

.price-category-head span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.price-list {
  padding: 10px 26px 8px;
  flex-grow: 1;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row a.price-name {
  color: var(--text);
}

.price-row a.price-name:hover {
  color: var(--gold);
}

.price-name {
  font-size: 0.96rem;
}

.price-name small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.price-value {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.98rem;
}

.price-category-foot {
  padding: 16px 26px 22px;
}

.price-category-foot a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-category-foot a:hover {
  color: var(--gold);
}

.price-category-foot svg {
  width: 14px;
  height: 14px;
}

/* ---------- Divider ribbon ---------- */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 6px;
}

.divider svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  color: var(--gold);
}

/* ---------- About / story ---------- */

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px;
}

.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 15, 0.72) 0%, rgba(23, 19, 15, 0) 45%);
}

.story-visual-caption {
  position: relative;
  z-index: 1;
  color: var(--cream-on-ink);
}

.story-visual-caption strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  display: block;
}

.story-visual-caption span {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
}

/* ---------- Gallery ---------- */

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

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

.gallery-item-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
}

.story-body .eyebrow {
  margin-bottom: 14px;
}

.story-body h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.story-body p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--gold);
}

.stat-row span {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ---------- Process steps ---------- */

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

.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--ink-line);
}

.step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-light);
}

.step h3 {
  margin-top: 14px;
  font-size: 1.35rem;
}

.step p {
  margin-top: 12px;
  color: var(--muted-on-ink);
  font-size: 0.98rem;
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.stars svg {
  width: 15px;
  height: 15px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--gold);
  color: var(--ink);
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 56px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  max-width: 520px;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.cta-phone svg {
  width: 20px;
  height: 20px;
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

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

.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
}

.form-status {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  display: none;
}

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

.form-status.is-success {
  background: #e7f2e6;
  color: #2f5b2a;
}

.form-status.is-error {
  background: #f6e6e4;
  color: #7a2e26;
}

.info-card {
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 40px;
}

.info-card h3 {
  font-size: 1.5rem;
}

.info-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
  margin-bottom: 4px;
}

.hours-table {
  margin-top: 26px;
  border-top: 1px solid var(--ink-line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.hours-row span:first-child {
  color: var(--muted-on-ink);
}

.map-box {
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  overflow: hidden;
}

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

/* ---------- Service detail ---------- */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-detail-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 40px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  font-size: 1.8rem;
  margin-top: 44px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-top: 16px;
  color: var(--text-muted);
  max-width: 620px;
}

.prose ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prose ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}

.prose ul li svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-sidebar {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-card {
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 32px;
}

.detail-card h3 {
  font-size: 1.3rem;
}

.detail-card p {
  margin-top: 12px;
  color: var(--muted-on-ink);
  font-size: 0.94rem;
}

.detail-card .btn {
  margin-top: 20px;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}

.detail-price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
}

.related-list {
  border: 1px solid var(--line);
}

.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 500;
}

.related-list a:last-child {
  border-bottom: none;
}

.related-list a:hover {
  color: var(--gold);
  background: var(--paper-soft);
}

/* ---------- Before / after gallery page ---------- */

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

.ba-card {
  border: 1px solid var(--line);
}

.ba-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ba-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.ba-card-body {
  padding: 20px 22px 24px;
}

.ba-card-body h3 {
  font-size: 1.2rem;
}

.ba-card-body p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.consent-note {
  margin-top: 44px;
  padding: 20px 24px;
  background: var(--paper-soft);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 720px;
}

/* ---------- Article (blog post) ---------- */

.article-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.article-header h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
}

.article-cover {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 48px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
}

.article-body p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 40px;
  font-size: 1.7rem;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
}

.article-footer-cta {
  max-width: 680px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--muted-on-ink);
  padding-top: 76px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}

.footer-about p {
  margin-top: 18px;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-on-ink);
}

.footer-col ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-col address {
  font-style: normal;
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 1.7;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-visual {
    aspect-ratio: 16 / 9;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .detail-sidebar {
    position: static;
  }

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

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

  .hero {
    padding: 100px 0 190px;
  }

  .hero-quicklinks-row {
    gap: 10px 18px;
  }

  .hero-quicklinks-row a {
    font-size: 11px;
  }

  .intro-block,
  .analysis-section,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .ba-teaser {
    grid-template-columns: 1fr;
  }

  .ba-teaser-body {
    padding: 40px 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

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

  .article-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    padding: 120px 0 150px;
  }

  .hero-quicklinks-row {
    gap: 12px 22px;
  }

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

@media (max-width: 1080px) {
  .topbar-info span.hide-mobile,
  .hide-mobile {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 28px 40px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow-y: auto;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown > a {
    border-bottom: 1px solid var(--ink-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 8px 16px;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu a {
    border-bottom: none;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-row-price {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 76px 0;
  }

  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
