

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

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

:root {
  --ink:       #0f0f1a;
  --gold:      #e8c16a;
  --ash:       #f2f0eb;
  --smoke:     #6b6b7b;
  --charcoal:  #1e1e2e;
  --white:     #ffffff;
  --border:    #2e2e3e;
  --gold-dim:  #b89a4a;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif:'Noto Serif JP', serif;
  --max-w:     1200px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; background-color: var(--ash); }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--ash);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  flex-shrink: 0;
}

.photo-placeholder {
  background-color: #c8c4bc;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0,0,0,0.04) 10px,
      rgba(0,0,0,0.04) 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.site-header {
  background-color: var(--ink);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.header-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ash);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.brand-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-contact a {
  font-size: 14px;
  color: var(--ash);
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-contact a:hover { opacity: 1; }
.header-contact .icon { color: var(--gold); }

.hero {
  background-color: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 14px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  color: var(--ash);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  color: #a0a0b0;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background-color: var(--gold-dim); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold-dim);
  color: var(--ash);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  background: none;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image-col {
  position: relative;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 540px;
}
.hero-photo .photo-placeholder { height: 100%; }
.hero-photo-label {
  position: absolute;
  bottom: 32px;
  left: 24px;
  background-color: var(--ink);
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat-item {
  flex: 1;
  padding-right: 24px;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: #808090;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.section-intro {
  padding: var(--section-pad);
  background-color: var(--ink);
  color: var(--ash);
}
.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--ash);
  margin-bottom: 24px;
}
.intro-text {
  font-size: 15px;
  color: #a0a0b0;
  line-height: 1.85;
  margin-bottom: 20px;
}
.intro-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ash);
  line-height: 1.6;
  margin-top: 32px;
}

.section-gallery {
  padding: var(--section-pad);
  background-color: var(--ash);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 15px;
  color: var(--smoke);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item .photo-placeholder {
  height: 100%;
  min-height: 200px;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) img {
  height: 100%;
  min-height: 460px;
}
.gallery-item:nth-child(1) .photo-placeholder { min-height: 460px; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15,15,26,0.85));
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 24px 14px 10px;
}
.gallery-link {
  text-align: center;
  margin-top: 40px;
}

.section-districts {
  padding: var(--section-pad);
  background-color: var(--charcoal);
  color: var(--ash);
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.district-card {
  position: relative;
  overflow: hidden;
}
.district-photo {
  height: 320px;
}
.district-photo .photo-placeholder { height: 100%; }
.district-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(15,15,26,0.92));
}
.district-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ash);
  display: flex;
  flex-direction: column;
}
.district-name ruby {
  font-size: 14px;
}
.district-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.district-count {
  font-size: 12px;
  color: #808090;
  margin-top: 4px;
}

.section-services {
  padding: var(--section-pad);
  background-color: var(--ash);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid #d8d4cc;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}
.service-image {
  height: 220px;
  overflow: hidden;
}
.service-image .photo-placeholder { height: 100%; }
.service-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.service-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-serif);
  margin-bottom: 16px;
}
.service-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--smoke);
}
.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background-color: var(--ink);
  color: var(--ash);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-service:hover { background-color: var(--charcoal); color: var(--gold); }
.btn-service .icon { color: var(--gold); }

.section-journal {
  padding: var(--section-pad);
  background-color: var(--ink);
  color: var(--ash);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
}
.journal-card {
  background-color: var(--charcoal);
  display: flex;
  flex-direction: column;
}
.journal-image {
  height: 240px;
  overflow: hidden;
}
.journal-image .photo-placeholder { height: 100%; }
.journal-body {
  padding: 24px 20px;
  flex: 1;
}
.journal-date {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.journal-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ash);
  line-height: 1.4;
  margin-bottom: 10px;
}
.journal-excerpt {
  font-size: 13px;
  color: #808090;
  line-height: 1.7;
}
.journal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}

.section-process {
  padding: var(--section-pad);
  background-color: var(--ash);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: steps;
}
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid #d8d4cc;
  padding-right: 32px;
  counter-increment: steps;
  position: relative;
}
.step:last-child { border-right: none; }
.step + .step { padding-left: 32px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: #dedad4;
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 44px;
  height: 44px;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon .icon { width: 22px; height: 22px; color: var(--gold); }
.step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-text {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

.section-testimonials {
  padding: var(--section-pad);
  background-color: var(--charcoal);
  color: var(--ash);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background-color: rgba(255,255,255,0.03);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars .icon { width: 16px; height: 16px; color: var(--gold); }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ash);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.author-avatar .photo-placeholder { height: 100%; border-radius: 50%; }
.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ash);
}
.author-origin {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
}

.section-approach {
  padding: var(--section-pad);
  background-color: var(--ash);
}
.approach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-photo {
  height: 500px;
}
.approach-photo .photo-placeholder { height: 100%; }
.approach-content {}
.approach-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approach-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.approach-icon {
  width: 40px;
  height: 40px;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.approach-icon .icon { width: 18px; height: 18px; color: var(--gold); }
.approach-item-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.approach-item-text {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.65;
}

.section-contacts {
  padding: var(--section-pad);
  background-color: var(--ink);
  color: var(--ash);
}
.contacts-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts-left .section-title { color: var(--ash); text-align: left; }
.contacts-text {
  font-size: 15px;
  color: #a0a0b0;
  line-height: 1.8;
  margin-top: 16px;
}
.contact-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--charcoal);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .icon { width: 22px; height: 22px; color: var(--gold); }
.contact-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ash);
  line-height: 1.5;
}
.contact-value a {
  color: var(--ash);
}
.contact-value a:hover { color: var(--gold); }
.contacts-right {}
.contact-map {
  height: 320px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.contact-map .photo-placeholder {
  height: 100%;
  background-color: #1a1a2a;
  color: #505060;
}
.contact-map-label {
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.5;
}

.site-footer {
  background-color: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .header-brand { margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: #606070;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: #808090;
}
.footer-links a:hover { color: var(--ash); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: #505060;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: #505060;
}
.footer-legal a:hover { color: #808090; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}
.cookie-banner.show { display: flex; }
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  color: var(--ash);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.cookie-banner-text p { margin: 0; }
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: var(--ash); }
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  white-space: nowrap;
}
.cookie-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-transform: uppercase;
}
.cookie-btn-accept {
  background-color: var(--gold);
  color: var(--ink);
}
.cookie-btn-accept:hover { background-color: var(--gold-dim); }
.cookie-btn-secondary {
  background-color: transparent;
  border: 1px solid #505060;
  color: var(--ash);
}
.cookie-btn-secondary:hover { border-color: var(--ash); }
.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid #505060;
  color: var(--ash);
}
.cookie-btn-decline:hover { border-color: var(--ash); }

.cookie-options {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  background-color: #1a1a28;
  border: 1px solid #505060;
  padding: 24px;
  display: none;
}
.cookie-options.show { display: block; }
.cookie-options-inner h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ash);
}
.cookie-option {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #505060;
}
.cookie-option:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}
.cookie-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cookie-label input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}
.cookie-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-name {
  font-weight: 600;
  color: var(--ash);
  font-size: 14px;
  display: block;
}
.cookie-desc {
  color: #a0a0b0;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.cookie-options-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-link {
  color: var(--gold);
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: #1a1a28;
  border: 1px solid var(--border);
  text-align: center;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 32px;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ash);
  margin: 0 0 12px 0;
}
.service-desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin: 16px 0 20px 0;
}
.btn-service {
  padding: 12px 24px;
  background-color: var(--gold);
  color: var(--ink);
  text-decoration: none;
  border: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
}
.btn-service:hover {
  background-color: var(--gold-dim);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-brand {
  margin-bottom: 16px;
}
.section-gallery .section-header,
.section-districts .section-header,
.section-services .section-header,
.section-journal .section-header,
.section-process .section-header,
.section-testimonials .section-header,
.section-approach {
  text-align: center;
}
.section-intro .intro-inner { justify-items: center; }
.intro-inner > div:first-child { grid-column: 1 / -1; }
.intro-inner > div:last-child { grid-column: 1 / -1; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 64px 32px; }
  .hero-photo { display: none; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid #d8d4cc; padding-bottom: 32px; margin-bottom: 32px; }
  .journal-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; }
  .approach-photo { height: 300px; }
  .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 16px; }
  .header-inner { height: 60px; }
  .header-contact { display: none; }
  .hero-content { padding: 48px 20px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .districts-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-card { padding: 24px; }
  .cookie-banner-inner { flex-direction: column; }
  .cookie-banner-buttons { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
