:root {
  --ink: #11100d;
  --muted: #70685b;
  --paper: #f3eee4;
  --panel: #fffaf0;
  --gold: #c89b55;
  --gold-light: #e7c782;
  --line: rgba(17, 16, 13, 0.13);
  --dark: #080807;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 155, 85, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2e9, #e6ded0);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

.catalog-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.catalog-cover,
.catalog-section,
.catalog-contact {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 85, 0.24);
  border-radius: 34px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 34px 90px rgba(48, 34, 18, 0.16);
}

.catalog-cover {
  display: grid;
  min-height: 760px;
  margin-bottom: 24px;
  color: #f8f0e2;
  background: var(--dark);
}

.cover-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.84), rgba(7, 7, 6, 0.42) 54%, rgba(7, 7, 6, 0.22)),
    url("assets/gallery-full-22.png") center / cover;
  filter: saturate(0.86) contrast(1.08);
}

.cover-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 760px;
  padding: clamp(34px, 6vw, 76px);
}

.catalog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(248, 240, 226, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(231, 199, 130, 0.56);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
}

.cover-copy {
  max-width: 760px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.88;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(248, 240, 226, 0.78);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.58;
}

.cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.cover-meta span,
.print-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(231, 199, 130, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7ead1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-button {
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), #b77b37);
  color: #15120d;
}

.catalog-section,
.catalog-contact {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 58px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 36px;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading p,
.story-copy,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card,
.feature-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(231, 199, 130, 0.08));
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.story-image,
.contact-image {
  min-height: 500px;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
}

.story-image {
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18)),
    url("assets/sea-view-terrace.png");
}

.contact-image {
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)),
    url("assets/crystal-sea-detail.png");
}

.story-card {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 28px;
  background: #11100d;
  color: #f8f0e2;
}

.story-card .story-copy {
  color: rgba(248, 240, 226, 0.74);
}

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

.feature-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 30px;
  line-height: 1;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.image-grid figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #11100d;
}

.image-grid figure:first-child {
  grid-row: span 2;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.contact-layout {
  align-items: center;
}

.contact-card {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background: #11100d;
  color: #f8f0e2;
}

.contact-card .contact-copy {
  color: rgba(248, 240, 226, 0.76);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  padding: 16px 18px;
  border: 1px solid rgba(231, 199, 130, 0.22);
  border-radius: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.catalog-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .catalog-topline,
[dir="rtl"] .catalog-footer {
  direction: rtl;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] p {
  letter-spacing: normal;
}

@media (max-width: 820px) {
  .catalog-shell {
    width: min(100% - 20px, 560px);
    padding-top: 10px;
  }

  .catalog-cover,
  .cover-content {
    min-height: 680px;
  }

  .catalog-topline,
  .section-heading,
  .story-layout,
  .contact-layout,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .catalog-topline {
    align-items: flex-start;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .story-image,
  .contact-image,
  .image-grid figure {
    min-height: 310px;
  }

  .catalog-footer {
    flex-direction: column;
  }
}

@media print {
  body {
    background: #fff;
  }

  .catalog-shell {
    width: 100%;
    padding: 0;
  }

  .catalog-cover,
  .catalog-section,
  .catalog-contact {
    break-inside: avoid;
    margin: 0 0 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .print-button {
    display: none;
  }
}
