:root {
  --bg: #151210;
  --bg-soft: #211b18;
  --panel: #1d1713;
  --panel-soft: #2a2019;
  --brown: #85624a;
  --brown-2: #31241d;
  --gold: #dfb96a;
  --gold-deep: #b07a35;
  --text: #f7f1e9;
  --muted: #cdbfb1;
  --line: rgba(242, 242, 238, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(223, 185, 106, 0.14), transparent 30rem),
    radial-gradient(circle at 12% 48%, rgba(133, 98, 74, 0.3), transparent 36rem),
    linear-gradient(180deg, var(--bg), var(--brown-2) 46%, #1a1411);
  color: var(--text);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 92px;
  padding: 0.65rem clamp(1rem, 3vw, 3rem);
  background: rgba(21, 18, 16, 0.3);
  border-bottom: 1px solid rgba(246, 241, 233, 0.12);
  backdrop-filter: blur(18px);
}

main {
  flex: 1;
  padding-top: 92px;
}

main .hero:first-child {
  margin-top: -92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--gold);
  line-height: 1;
}

.brand-text span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  padding-left: 0.38em;
}

.brand-text span::before,
.brand-text span::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.brand-text strong {
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
}

.brand-mark {
  display: inline-block;
  width: 42px;
  height: 54px;
  flex: 0 0 42px;
  background: url("assets/logo-scissors-gold-clean.png") center / contain no-repeat;
}

.brand-mark svg {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  color: var(--muted);
  font-size: 1.02rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.social-links {
  justify-self: end;
  display: flex;
  gap: 0.875rem;
  color: var(--gold);
  font-weight: 700;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
}

.social-links svg,
.footer-socials svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #12100e;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(105px, 13.5vw, 205px);
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(49, 36, 29, 0) 0%,
      rgba(49, 36, 29, 0.2) 46%,
      rgba(49, 36, 29, 0.58) 80%,
      rgba(49, 36, 29, 0.92) 100%
    );
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: brightness(1.13) contrast(1.03) saturate(1.06);
}

.hero-scrim {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.04) 55%, rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 7rem);
}

.hero-content-centered {
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  transform: translateY(clamp(1rem, 3vh, 2.6rem));
}

.hero-emblem {
  width: min(760px, 100%);
  color: var(--gold);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.72);
}

.hero-title {
  display: grid;
  justify-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.45rem);
  margin-bottom: 0.75rem;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.25rem);
  width: min(430px, 74%);
  color: #f5d88a;
  font-size: clamp(1.05rem, 2vw, 1.72rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}

.hero-title span::before,
.hero-title span::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 216, 138, 0.92), transparent);
}

.hero-title strong {
  color: transparent;
  font-size: clamp(3.8rem, 10vw, 7.8rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  padding-left: 0.045em;
  background: linear-gradient(180deg, #fff1c7 0%, #dcb36b 42%, #8e5f2f 72%, #f6d990 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.72));
}

.hero-rule {
  width: min(360px, 62%);
  height: 1px;
  margin: 0.35rem auto 1rem;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(223, 185, 106, 0.96), transparent);
}

.opening-hours {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 600;
  line-height: 1.45;
}

.opening-hours div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 430px;
}

.opening-hours span {
  color: var(--muted);
}

.opening-hours strong {
  color: var(--gold);
  font-size: 1.04em;
}

.opening-hours p {
  margin: 0.35rem 0 0;
  color: var(--gold);
  font-size: 0.92em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.32rem;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: #fff8ef;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-card {
  background: var(--gold);
  color: #151515;
}

.button-primary:hover,
.button-card:hover {
  background: #e8c77b;
}

.contact-card .button-primary {
  min-height: 50px;
  margin-top: 0.15rem;
  border-radius: 999px;
  border-color: rgba(223, 185, 106, 0.82);
  background: rgba(223, 185, 106, 0.06);
  color: #f3d78c;
  box-shadow: inset 0 0 0 1px rgba(223, 185, 106, 0.12), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.contact-card .button-primary:hover {
  border-color: rgba(246, 217, 144, 0.96);
  background: rgba(223, 185, 106, 0.13);
  color: #ffe7a6;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(21, 18, 16, 0.48);
  color: var(--text);
}

.button-light {
  min-width: 220px;
  margin-top: 2rem;
  background: rgba(246, 241, 233, 0.96);
  color: #24170f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-light:hover {
  background: #ffffff;
}

.button-hero {
  min-width: 220px;
  min-height: 54px;
  padding: 0 1.8rem;
  border-color: rgba(223, 185, 106, 0.72);
  background: rgba(21, 18, 16, 0.18);
  color: #f0cf88;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(223, 185, 106, 0.12), 0 16px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.button-hero:hover {
  border-color: rgba(246, 217, 144, 0.95);
  background: rgba(223, 185, 106, 0.12);
  color: #ffe7a6;
}

.section {
  width: min(1480px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-story {
  width: min(940px, calc(100% - 2rem));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.8rem) 0 clamp(3rem, 6vw, 5rem);
}

.about-story h1 {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
}

.about-copy {
  display: grid;
  gap: 1.35rem;
  max-width: 820px;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 1px solid rgba(223, 185, 106, 0.34);
}

.about-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.85;
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.section-copy {
  max-width: 680px;
}

.image-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.centered-copy {
  width: min(760px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.pricing {
  width: min(1500px, calc(100% - 2rem));
  padding-top: clamp(0.75rem, 1.8vh, 1.4rem);
  padding-bottom: clamp(2rem, 4vh, 3.5rem);
}

.pricing .centered-copy {
  width: min(860px, 100%);
  margin-bottom: clamp(0.9rem, 1.6vh, 1.35rem);
}

.pricing .centered-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.pricing .centered-copy h1 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.pricing .centered-copy p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(1260px, 100%);
  margin: 0 auto;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  padding: 0.8rem 1rem;
  background:
    linear-gradient(180deg, rgba(133, 98, 74, 0.24), rgba(21, 18, 16, 0.9)),
    var(--panel-soft);
  border: 1px solid rgba(223, 185, 106, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.price-row h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.price-row p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-row strong {
  color: var(--gold);
  font-size: clamp(1.35rem, 1.9vw, 1.78rem);
  white-space: nowrap;
}

.info-panel {
  width: min(1260px, 100%);
  margin: clamp(0.65rem, 1.2vh, 0.95rem) auto 0;
  padding: clamp(0.85rem, 1.4vw, 1.15rem);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(133, 98, 74, 0.22), rgba(21, 18, 16, 0.9)),
    var(--panel);
  border: 1px solid rgba(223, 185, 106, 0.18);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.info-panel h2 {
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.info-panel p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0.7rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-panel .button-primary {
  border-color: rgba(223, 185, 106, 0.82);
  background: rgba(223, 185, 106, 0.06);
  color: #f3d78c;
  box-shadow: inset 0 0 0 1px rgba(223, 185, 106, 0.12);
}

.info-panel .button-primary:hover {
  border-color: rgba(246, 217, 144, 0.96);
  background: rgba(223, 185, 106, 0.13);
  color: #ffe7a6;
}

@media (min-width: 901px) {
  .pricing .info-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 2rem;
  }

  .pricing .info-panel .button {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    white-space: nowrap;
  }
}

.gallery {
  display: grid;
  gap: 2.2rem;
  margin-top: clamp(-1.6rem, -2vw, -0.8rem);
  padding-top: clamp(0.45rem, 1.2vw, 1.15rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.gallery-eyebrow {
  margin-bottom: -0.6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.2rem);
}

.gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(29, 23, 19, 0.72);
  border: 1px solid rgba(223, 185, 106, 0.16);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 315px);
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-card-reception img {
  object-position: center 72%;
}

.gallery-card-products img {
  object-position: center 28%;
}

.gallery-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-card figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.42rem 0.72rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(21, 18, 16, 0.74);
  border: 1px solid rgba(223, 185, 106, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  align-items: center;
  width: min(920px, calc(100% - 2rem));
  min-height: calc(100svh - 92px);
  padding-top: clamp(1.2rem, 2.5vh, 2rem);
  padding-bottom: clamp(1.2rem, 2.5vh, 2rem);
}

.contact-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(223, 185, 106, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(91, 58, 40, 0.34), rgba(23, 16, 13, 0.94) 56%, rgba(16, 12, 10, 0.98)),
    var(--panel);
  border: 1px solid rgba(223, 185, 106, 0.2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 234, 190, 0.08);
}

.contact-card {
  padding: clamp(1.65rem, 3.6vw, 3rem);
}

.contact-card h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.3rem, 4.3vw, 4.6rem);
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 1.55rem;
  padding: 1.15rem;
  background: rgba(246, 241, 233, 0.045);
  border: 1px solid rgba(223, 185, 106, 0.18);
  border-radius: 16px;
}

.contact-details p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-details strong {
  display: inline-block;
  min-width: 78px;
  color: var(--gold);
}

.contact-details a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.32rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(223, 185, 106, 0.22);
  border-radius: 14px;
  background: rgba(255, 246, 234, 0.055);
  color: var(--text);
  font: inherit;
  padding: 0.82rem 1rem;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 108px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(223, 185, 106, 0.74);
  background: rgba(255, 246, 234, 0.085);
  box-shadow: 0 0 0 4px rgba(223, 185, 106, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  width: min(1480px, calc(100% - 2rem));
  padding: 2rem 0 2.8rem;
  border-top: 1px solid var(--line);
}

.footer-contact {
  justify-self: start;
  display: grid;
  justify-items: start;
  gap: 0.25rem;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-socials {
  justify-self: end;
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(223, 185, 106, 0.32);
  border-radius: 999px;
  background: rgba(21, 18, 16, 0.34);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 185, 106, 0.72);
  background: rgba(223, 185, 106, 0.1);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    gap: 1rem;
    padding-inline: 1rem;
  }

  main {
    padding-top: 76px;
  }

  main .hero:first-child {
    margin-top: -76px;
  }

  .site-nav,
  .social-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 0.35rem;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(223, 185, 106, 0.42);
    border-radius: var(--radius);
    background: rgba(223, 185, 106, 0.06);
    color: var(--gold);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(21, 18, 16, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 0.85rem;
    color: var(--text);
  }

  .section {
    width: min(100% - 1.25rem, 720px);
    padding: clamp(2.75rem, 8vw, 4rem) 0;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    background:
      linear-gradient(180deg, #120d0a, #1a120e 58%, #151210);
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    filter: brightness(1.1) contrast(1.02) saturate(1.04);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.18));
  }

  .hero-content-centered {
    align-self: end;
    width: min(520px, calc(100% - 1.25rem));
    padding: 0 0 clamp(1.5rem, 5vh, 2.8rem);
    transform: translateY(-6rem);
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .intro,
  .contact,
  .price-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 1.5rem;
  }

  .intro .image-panel {
    display: none;
  }

  .section-copy {
    max-width: none;
  }

  .section-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .section-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .image-panel img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .gallery-card img {
    height: clamp(230px, 58vw, 340px);
  }

  .pricing {
    width: min(100% - 1.25rem, 720px);
    min-height: calc(100svh - 76px - 118px);
    padding-top: 0.9rem;
    padding-bottom: 1.6rem;
  }

  .pricing .centered-copy {
    margin-bottom: 0.95rem;
  }

  .pricing .centered-copy .eyebrow {
    margin-bottom: 0.72rem;
  }

  .pricing .centered-copy h1 {
    margin-bottom: 0.42rem;
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .pricing .centered-copy p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .price-list {
    gap: 0.75rem;
  }

  .price-row {
    min-height: 82px;
    padding: 0.82rem 0.95rem;
    border-radius: 18px;
  }

  .price-row h3 {
    font-size: 0.9rem;
  }

  .info-panel {
    margin-top: 0.8rem;
    padding: 0.95rem;
    border-radius: 20px;
  }

  .info-panel .eyebrow {
    margin-bottom: 0.45rem;
  }

  .info-panel h2 {
    font-size: 1rem;
  }

  .info-panel p:not(.eyebrow) {
    margin-bottom: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .info-panel .button {
    min-height: 46px;
    font-size: 0.82rem;
  }

  .contact {
    width: min(100% - 1.25rem, 640px);
    min-height: calc(100svh - 76px - 118px);
    padding-top: clamp(1.6rem, 5vh, 3rem);
    padding-bottom: clamp(1.6rem, 5vh, 3rem);
  }

  .about-story {
    width: min(100% - 1.25rem, 680px);
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .about-copy {
    padding-left: 1rem;
  }

  .site-footer {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    width: min(100% - 1.25rem, 720px);
    padding: 1.35rem 0 1.65rem;
  }

  .footer-contact {
    justify-self: start;
    justify-items: start;
    gap: 0.12rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-socials {
    justify-self: end;
    align-self: center;
    gap: 0.55rem;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 32px;
    height: 42px;
    flex-basis: 32px;
  }

  .brand-text span {
    gap: 0.3rem;
    font-size: 0.52rem;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
  }

  .brand-text span::before,
  .brand-text span::after {
    width: 14px;
  }

  .brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.055em;
    padding-left: 0.055em;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    padding: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .hero-content-centered {
    padding: 0 0 2rem;
    transform: translateY(-6.4rem);
  }

  .hero-title span {
    width: min(260px, 82%);
    font-size: clamp(0.82rem, 4.3vw, 1rem);
    letter-spacing: 0.32em;
    padding-left: 0.32em;
  }

  .hero-title strong {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
    letter-spacing: 0.02em;
    padding-left: 0.02em;
  }

  .hero-rule {
    width: min(230px, 66%);
    margin-bottom: 0.5rem;
  }

  .opening-hours {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    padding: 1rem;
    gap: 0.55rem;
    border: 1px solid rgba(223, 185, 106, 0.24);
    border-radius: 14px;
    background: rgba(20, 15, 12, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 236, 196, 0.06);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .opening-hours div {
    max-width: none;
    gap: 0.75rem;
  }

  .opening-hours p {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .button:not(.button-hero) {
    width: 100%;
  }

  .button-hero {
    width: min(250px, 100%);
    min-width: 0;
    min-height: 48px;
    font-size: 0.82rem;
  }

  .intro {
    justify-items: center;
    padding-top: 2.5rem;
    text-align: center;
  }

  .intro .section-copy {
    display: grid;
    justify-items: center;
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .gallery-card img {
    height: 260px;
  }

  .contact-card h1 {
    font-size: clamp(2.1rem, 13vw, 3rem);
  }

  .price-row strong {
    justify-self: start;
    font-size: 1.25rem;
  }
}
