:root {
  --ink: #202326;
  --muted: #64696e;
  --paper: #f7f3ed;
  --panel: #ffffff;
  --line: #ddd5ca;
  --accent: #8f2630;
  --accent-dark: #5a161d;
  --olive: #596348;
  --blue: #253e52;
  --soft-blue: #dce5e8;
  --shadow: 0 24px 70px rgba(32, 35, 38, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 237, .92);
  border-bottom: 1px solid rgba(32, 35, 38, .1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(210px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 68svh, 720px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vh, 86px) 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: .82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 18, .72), rgba(20, 20, 18, .2) 58%, rgba(20, 20, 18, .42)),
    linear-gradient(0deg, rgba(20, 20, 18, .54), rgba(20, 20, 18, 0) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 clamp(18px, 8vw, 120px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero .eyebrow,
.feature-band .eyebrow {
  color: #f6c9c9;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd2d2;
  font-size: clamp(12px, 1.12vw, 15px);
  font-weight: 820;
  letter-spacing: .11em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(40px, 6.6vw, 74px);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: inherit;
  color: var(--blue);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.15;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.feature-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .1);
}

.button.dark {
  background: var(--ink);
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--blue);
}

.notice-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.notice-band a {
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.split-section,
.video-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.intro-grid h2,
.split-section h2,
.video-section h2,
.social-section h2 {
  max-width: 760px;
}

.rich-text {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
}

.rich-text p:first-child,
.split-section p {
  margin-top: 0;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--blue);
  font-size: clamp(38px, 5vw, 64px);
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.legal-content ul {
  padding-left: 1.2em;
}

.legal-content li {
  margin: 8px 0;
}

.image-story {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  background: transparent;
}

.image-story article {
  min-width: 0;
  background: var(--panel);
  border: 1px solid rgba(32, 35, 38, .08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 35, 38, .08);
  overflow: hidden;
}

.image-story a {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

.image-story a *,
.image-story a:hover * {
  text-decoration: none !important;
}

.click-card a,
.click-card a:visited,
.click-card a:hover,
.click-card a:focus {
  color: inherit;
  text-decoration: none !important;
}

.click-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.click-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(32, 35, 38, .13);
}

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

.image-story div {
  padding: 22px;
}

.deko-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(58px, 8vw, 102px);
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(220, 229, 232, .78), rgba(255, 255, 255, .82));
  border: 1px solid rgba(37, 62, 82, .12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 62, 82, .08);
}

.deko-banner h2 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
}

.deko-banner p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.deko-banner-link {
  display: grid;
  gap: 3px;
  min-width: 190px;
  padding: 16px 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  text-decoration: none !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.deko-banner-link:hover {
  transform: translateY(-2px);
  background: #314c60;
  box-shadow: 0 18px 42px rgba(37, 62, 82, .18);
}

.deko-banner-link span {
  font-size: 14px;
  font-weight: 820;
}

.deko-banner-link strong {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.image-story p,
.service-list p,
.video-section p,
.contact-card p {
  color: var(--muted);
}

.split-section {
  background: #eee7dd;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  min-height: 210px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(32, 35, 38, .08);
  border-radius: 8px;
}

.service-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.feature-band {
  justify-content: space-between;
  padding: clamp(42px, 7vw, 74px) clamp(18px, 5vw, 72px);
  color: white;
  background: var(--olive);
}

.feature-band h2,
.contact-section h2 {
  color: inherit;
}

.feature-band div {
  max-width: 820px;
}

.feature-band p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.video-section {
  align-items: center;
}

.video-frame {
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background: #fcfaf7;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.social-grid a {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.social-grid a:nth-child(2) {
  background: var(--accent);
}

.social-grid a:nth-child(3) {
  background: var(--olive);
}

.social-grid a:nth-child(4) {
  background: #7b7166;
}

.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: linear-gradient(135deg, #e9e1d6 0%, var(--soft-blue) 100%);
}

.contact-card {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  height: 100%;
}

.contact-card address {
  margin: 24px 0;
  color: var(--blue);
  font-style: normal;
  font-size: 20px;
}

.contact-card a,
.site-footer a {
  text-decoration: none;
}

.map-card {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(37, 62, 82, .12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(37, 62, 82, .1);
}

.map-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 310px;
  border: 0;
  border-radius: 6px;
}

.map-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: white;
  background: var(--blue);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.map-card a:hover {
  background: #314c60;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(32, 35, 38, .08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 62, 82, .12);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  resize: vertical;
}

.contact-form .button.primary {
  background: var(--blue);
}

.contact-form .button.primary:hover {
  background: #314c60;
}

.contact-form .form-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.contact-form .form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.morek360-box {
  padding: clamp(56px, 8vw, 92px) clamp(36px, 9vw, 132px);
  background: var(--paper);
}

.morek360-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 270px);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  color: var(--blue);
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(37, 62, 82, .13);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 62, 82, .08);
}

.morek360-card h2 {
  color: var(--blue);
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
}

.morek360-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.morek360-copy .eyebrow {
  color: var(--accent);
}

.morek360-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(37, 62, 82, .08);
  border-radius: 8px;
}

.morek360-logo img {
  width: min(220px, 100%);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .82);
  background: var(--blue);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.deko-page .site-header {
  position: sticky;
}

.gallery-hero {
  padding: clamp(72px, 9vw, 112px) clamp(36px, 10vw, 150px) clamp(42px, 6vw, 72px);
  background: linear-gradient(135deg, #f7f3ed 0%, #e8eef0 100%);
}

.gallery-hero-inner,
.gallery-section {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.gallery-hero h1 {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 620;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

.tradition-note {
  display: grid;
  gap: 4px;
  max-width: 680px;
  margin-top: clamp(22px, 4vw, 36px);
  padding: 18px 20px;
  color: var(--blue);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(37, 62, 82, .1);
  border-radius: 8px;
}

.tradition-note strong {
  font-size: 15px;
  font-weight: 820;
}

.tradition-note span {
  color: var(--muted);
}

.gallery-section {
  padding: clamp(54px, 7vw, 88px) clamp(36px, 10vw, 150px);
}

.gallery-section-soft {
  background: #eee7dd;
  width: 100%;
  max-width: none;
  margin: 0;
}

.gallery-section-soft .gallery-heading,
.gallery-section-soft .deko-grid {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gallery-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gallery-heading h2 {
  max-width: 680px;
  font-size: clamp(26px, 2.65vw, 38px);
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(24px, 4vw, 42px);
  padding: 9px 13px;
  color: var(--blue);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(37, 62, 82, .12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none !important;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.back-link span,
.back-card span {
  transition: transform .18s ease;
}

.back-link:hover {
  transform: translateX(-3px);
  background: white;
  border-color: rgba(37, 62, 82, .22);
}

.back-link:hover span,
.back-card:hover span {
  transform: translateX(-4px);
}

.deko-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.deko-tile {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  text-align: left;
  color: var(--blue);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(37, 62, 82, .1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(37, 62, 82, .08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.deko-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(37, 62, 82, .14);
}

.deko-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.deko-tile span {
  padding: 0 4px 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.herren-grid {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.gallery-return {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(48px, 7vw, 78px) clamp(36px, 10vw, 150px);
  background: var(--paper);
}

.gallery-return > div {
  max-width: 820px;
}

.gallery-return h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.gallery-return p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.back-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 16px 38px rgba(37, 62, 82, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.back-card:hover {
  transform: translateY(-2px);
  background: #314c60;
  box-shadow: 0 20px 48px rgba(37, 62, 82, .22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(25, 35, 43, .86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  display: grid;
  gap: 14px;
  width: min(560px, calc(100vw - 36px));
  max-height: 92svh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 78svh;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.lightbox figcaption {
  color: white;
  font-size: 15px;
  font-weight: 750;
  text-align: center;
}

.lightbox button {
  border: 0;
  cursor: pointer;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  font-size: 32px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav.legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 13px;
  }

  .notice-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-grid,
  .split-section,
  .video-section,
  .social-section,
  .morek360-card,
  .gallery-return,
  .deko-banner,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .service-list,
  .social-grid,
  .deko-grid,
  .herren-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-nav {
    bottom: 20px;
    top: auto;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 74px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    min-height: clamp(560px, 78svh, 680px);
    padding: 44px 0;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .button {
    width: 100%;
  }

  .service-list,
  .social-grid,
  .deko-grid,
  .herren-grid {
    grid-template-columns: 1fr;
  }
}
