:root {
  --bg: #ffffff;
  --bg-page: #ebe8df;
  --text: #050505;
  --muted: #666666;
  --border: #111111;
  --accent: #000000;
  --shell-radius: 18px;
  --panel-radius: 12px;
  --container: 1380px;
  --font-stack: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text);
  font-family: var(--font-stack);
  line-height: 1.45;
}

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

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

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

.site-shell {
  width: min(calc(100% - 16px), var(--container));
  margin: 8px auto;
  padding: 0 22px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--shell-radius);
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  max-width: 66px;
  height: auto;
  filter: grayscale(100%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 28px;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

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

.page-content {
  display: grid;
  gap: 32px;
  padding-top: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  column-gap: 48px;
  padding: 28px 20px 20px;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand img {
  width: min(100%, 360px);
  max-width: 360px;
  height: auto;
  filter: grayscale(100%);
}

.hero-main {
  max-width: 520px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.hero-text,
.page-intro p,
.feature-item p,
.content-panel p,
.cta-box p {
  margin: 18px 0 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-outline {
  background: var(--bg);
  color: var(--text);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-row-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 148px;
  padding: 18px 22px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--border);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h2 {
  max-width: 15ch;
}

.feature-item p {
  margin-top: 10px;
  max-width: none;
  font-size: 0.95rem;
}

.space-grid {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.space-item {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 32px 24px;
  border-top: 1px solid #d6d6d6;
}

.space-item:first-child {
  border-top: 0;
}

.space-item-title {
  align-self: start;
}

.space-item-title h2 {
  max-width: 12ch;
}

.space-item-copy {
  min-width: 0;
}

.space-item-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.black-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg);
}

.black-banner p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 0 20px;
}

.gallery-strip-copy h2 {
  max-width: 10ch;
  margin-top: 8px;
}

.gallery-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-strip-grid,
.gallery-grid,
.menu-grid,
.contact-grid,
.contact-details {
  display: grid;
  gap: 14px;
}

.gallery-strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.contact-grid {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
}

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

.image-card,
.content-panel,
.cta-box,
.page-intro {
  border: 1px solid var(--border);
  border-radius: var(--panel-radius);
  background: var(--bg);
}

.page-intro,
.content-panel {
  padding: 20px;
}

.image-card {
  overflow: hidden;
}

.image-card figcaption {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-placeholder {
  position: relative;
  min-height: 148px;
  background: linear-gradient(135deg, #e7e7e7 0%, #f5f5f5 100%);
  filter: grayscale(100%);
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 42%, rgba(0, 0, 0, 0.08) 42% 58%, transparent 58% 100%);
  z-index: 1;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  filter: grayscale(100%);
}

.image-placeholder span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-placeholder-tall {
  min-height: 280px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #d5d5d5;
  font-weight: 700;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item strong {
  white-space: nowrap;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin: 0 20px;
  padding: 18px 22px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-field:last-of-type {
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  min-height: 48px;
  padding-top: 14px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.site-footer p,
.footer-links a,
.footer-links span {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  pointer-events: auto;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-shell {
    padding: 0 18px 18px;
  }

  .site-header {
    min-height: auto;
  }

  .hero,
  .gallery-strip,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding: 24px 0 16px;
  }

  .hero-brand {
    justify-content: center;
  }

  .hero-brand img {
    max-width: 320px;
  }

  .hero-main {
    max-width: 560px;
  }

  .feature-row,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .space-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .feature-row:not(.feature-row-grid) .feature-item:nth-child(3),
  .feature-row:not(.feature-row-grid) .feature-item:nth-child(2n + 1),
  .feature-row-grid .feature-item:nth-child(2n + 1) {
    border-left: 0;
  }

  .feature-row:not(.feature-row-grid) .feature-item:nth-child(2),
  .feature-row-grid .feature-item:nth-child(2),
  .feature-row-grid .feature-item:nth-child(4) {
    border-left: 1px solid var(--border);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer p:nth-child(2),
  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--container));
    margin: 8px auto;
    padding: 0 12px 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .brand-logo img {
    max-width: 70px;
  }

  .nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .hero {
    gap: 18px;
    padding: 20px 0 12px;
  }

  .hero-brand img {
    max-width: 260px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
  }

  .feature-row,
  .feature-row-grid,
  .menu-grid,
  .gallery-grid,
  .gallery-strip-grid {
    grid-template-columns: 1fr;
  }

  .space-item {
    gap: 10px;
    padding: 22px 0;
  }

  .feature-item + .feature-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .feature-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: auto;
    padding: 18px 0;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .gallery-strip,
  .cta-box {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
