:root {
  --color-primary: #8f393b;
  --color-primary-dark: #752e30;
  --color-primary-light: #f9efef;
  --color-text: #211a1a;
  --color-text-muted: #6b5e5e;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f1f1;
  --color-footer-bg: #2a1e1e;
  --color-border: #e8dddd;
  --radius: 14px;
  --radius-small: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.05);
  --font-main: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 160ms ease;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
}

address {
  font-style: normal;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-primary);
  margin-top: 0.75rem;
}

.specialties .section-title::after {
  background: #fff;
}

.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-small);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(143, 57, 59, 0.22);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(143, 57, 59, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.35rem;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg) 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content p {
  color: var(--color-text-muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}

.hero-note {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  border-left: 3px solid var(--color-primary);
  padding-left: 0.9rem;
  margin-bottom: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.specialties {
  background: var(--color-primary);
  color: #fff;
  padding: 5rem 0;
}

.specialties .section-title {
  color: #fff;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.specialty {
  border-left: 3px solid rgba(255, 255, 255, 0.45);
  padding-left: 1.6rem;
}

.specialty h3 {
  color: #fff;
  font-size: 1.4rem;
}

.specialty p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.gallery-preview {
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.link-arrow {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.15rem;
  transition: color 160ms ease, border-color 160ms ease;
}

.link-arrow:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.prices {
  background: var(--color-primary-light);
  padding: 5rem 0;
}

.prices .section-title {
  text-align: center;
}

.prices .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.price-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.price-row {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.price-row:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.price-name {
  font-weight: 700;
  color: var(--color-text);
}

.price-value {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.price-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.price-note a {
  font-weight: 700;
}

.story {
  background: var(--color-bg-alt);
  padding: 5rem 0;
}

.story-inner {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.story-inner p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.story-inner .btn {
  margin-top: 1rem;
}

.contact-bar {
  padding: 5rem 0;
  background: var(--color-primary-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 1.2rem;
}

.contact-grid p {
  margin-bottom: 0.6rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-header {
  background: var(--color-primary-light);
  border-bottom: 1px solid var(--color-border);
  padding: 4.5rem 0;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.content-section {
  padding: 5rem 0;
}

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.content-narrow p {
  font-size: 1.06rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.content-narrow .btn {
  margin-top: 0.6rem;
}

.faq-section {
  background: var(--color-bg);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--color-text-muted);
  padding-bottom: 1.1rem;
  margin-bottom: 0;
}

.faq-help {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.faq-help a {
  font-weight: 700;
}

.gallery-page {
  padding: 5rem 0;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-page-grid img:hover {
  transform: translatY(-4px);
  box-shadow: var(--shadow);
}

.gallery-note {
  max-width: 760px;
  margin-top: 2.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

.contact-section {
  padding: 5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--color-text-muted);
}

.contact-info address {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

.contact-info .btn {
  margin-top: 1rem;
}

.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-wrap .btn {
  align-self: flex-start;
}

.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-bg);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-img {
    min-height: 260px;
    max-height: 400px;
  }

  .specialties {
    padding: 4rem 0;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-preview {
    padding: 4rem 0;
  }

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

  .prices {
    padding: 4rem 0;
  }

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

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

  .contact-actions {
    flex-direction: column;
  }

  .story,
  .contact-bar,
  .content-section,
  .gallery-page,
  .contact-section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 3.5rem 0;
  }

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

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

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}