:root {
  --navy: #07111f;
  --navy-light: #0d1c2d;
  --navy-soft: #15273b;
  --gold: #c9a96e;
  --gold-light: #e2c894;
  --gold-dark: #a78751;
  --silver: #c8ccd1;
  --cream: #f8f5ef;
  --cream-dark: #f2eee6;
  --white: #ffffff;
  --text-dark: #17202b;
  --muted: #727a83;
  --serif: "Cormorant Garamond", serif;
  --sans: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.section-subtitle {
  max-width: 640px;
  margin-top: 24px;
  color: #69717a;
  font-size: 0.95rem;
  line-height: 1.9;
}

.section-subtitle--light {
  color: #b8c0ca;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
}

.btn-outline-dark:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

nav {
  position: relative;
  display: flex;
  height: 92px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.logo-symbol {
  overflow: hidden;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.logo-image[hidden],
.logo-fallback[hidden] {
  display: none;
}

.logo-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text span {
  color: var(--silver);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #edf0f3;
  font-size: 0.68rem;
  letter-spacing: 1.35px;
  list-style: none;
  text-transform: uppercase;
}

.nav-links a {
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-light);
}

.nav-contact {
  padding: 12px 19px;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  content: "";
  transition: 0.25s ease;
}

.mobile-toggle.is-open span {
  opacity: 0;
}

.mobile-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------- HEROES ---------------- */

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 12, 23, 0.97) 0%,
      rgba(5, 16, 29, 0.89) 48%,
      rgba(7, 17, 31, 0.65) 100%
    ),
    url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}

.hero.has-managed-media {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 12, 23, 0.97) 0%,
      rgba(5, 16, 29, 0.89) 48%,
      rgba(7, 17, 31, 0.65) 100%
    ),
    var(--managed-media-image);
  background-position: center;
  background-size: cover;
}

.hero-video,
.page-hero-video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.hero-video[hidden],
.page-hero-video[hidden] {
  display: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.4), transparent);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 110px;
}

.hero-small {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-small::before {
  width: 45px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.7rem);
  font-weight: 400;
  line-height: 0.84;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero h1 .title-main,
.page-hero h1 .title-main,
.petit-content h2 .title-main {
  color: inherit;
  font-style: normal;
}

.hero p {
  max-width: 590px;
  margin-top: 34px;
  color: #d2d7de;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
}

.hero-buttons,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.page-hero {
  position: relative;
  min-height: 510px;
  padding: 155px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.95), rgba(7, 17, 31, 0.65)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}

.page-hero--services {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96), rgba(7, 17, 31, 0.6)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=85");
}

.page-hero--rentals {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96), rgba(7, 17, 31, 0.58)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1800&q=85");
}

.page-hero--petit {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96), rgba(7, 17, 31, 0.55)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=85");
}

.page-hero--catalog {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96), rgba(7, 17, 31, 0.55)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1800&q=85");
}

.page-hero--blog {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96), rgba(7, 17, 31, 0.55)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85");
}

.page-hero.has-managed-media {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 23, 0.95), rgba(7, 17, 31, 0.65)),
    var(--managed-media-image);
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.35), transparent);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.page-hero p {
  max-width: 630px;
  margin-top: 28px;
  color: #d2d7de;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
}

/* ---------------- GENERAL SECTIONS ---------------- */

.page-section {
  padding: 120px 0;
}

.page-section--cream-dark {
  background: var(--cream-dark);
}

.page-section--navy {
  color: var(--white);
  background: var(--navy);
}

.intro {
  padding: 130px 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.intro-label {
  padding-left: 26px;
  border-left: 1px solid var(--gold);
}

.intro-label p {
  max-width: 330px;
  margin-top: 20px;
  color: #747b82;
  font-size: 0.9rem;
}

.intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.intro-copy h2 em {
  color: var(--gold-dark);
  font-weight: 400;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.section-heading-row > p {
  max-width: 500px;
  color: #69717a;
  font-size: 0.9rem;
}

/* ---------------- SERVICES ---------------- */

.services {
  padding: 120px 0;
  color: var(--white);
  background: var(--navy);
}

.services .section-heading-row > p {
  color: #aeb6c0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.service-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: 55px 42px;
  background: var(--navy);
  transition: 0.4s ease;
}

.service-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
}

.service-number {
  margin-bottom: 50px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-card h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.service-card p {
  color: #adb5bf;
  font-size: 0.86rem;
  line-height: 1.85;
}

.service-items,
.check-list {
  margin-top: 28px;
  color: #e1e4e8;
  font-size: 0.8rem;
  list-style: none;
}

.service-items li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-link {
  margin-top: auto;
  padding-top: 40px;
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 65px;
}

.service-detail-card {
  padding: 42px;
  border: 1px solid #dfd7ca;
  background: var(--white);
}

.service-detail-card .service-number {
  margin-bottom: 28px;
}

.service-detail-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.service-detail-card p {
  color: #69717a;
  font-size: 0.86rem;
  line-height: 1.85;
}

.service-detail-card .check-list {
  color: var(--text-dark);
}

.check-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid rgba(23, 32, 43, 0.1);
}

.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  color: var(--gold-dark);
  content: "✦";
  font-size: 0.7rem;
}

/* ---------------- RENTALS ---------------- */

.rentals {
  padding: 130px 0;
}

.rentals-header {
  margin-bottom: 65px;
  text-align: center;
}

.rentals-header .section-subtitle {
  margin-right: auto;
  margin-left: auto;
}

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

.rental-card {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
  background: #ddd;
}

.rental-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.rental-card:hover img {
  transform: scale(1.06);
}

.rental-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 27px;
  color: var(--white);
  background: linear-gradient(to top, rgba(4, 12, 23, 0.92), transparent 60%);
}

.rental-overlay h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.rental-overlay span {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rental-card--wide {
  height: 475px;
}

.rental-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}

.rental-info-card {
  padding: 32px;
  border-top: 1px solid var(--gold);
  background: var(--cream-dark);
}

.rental-info-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.rental-info-card p {
  color: #69717a;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ---------------- PETIT EVENTS ---------------- */

.petit {
  display: grid;
  min-height: 740px;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.petit-image {
  min-height: 500px;
  background:
    linear-gradient(rgba(4, 12, 23, 0.1), rgba(4, 12, 23, 0.2)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1200&q=85")
      center/cover;
}

.petit-image.has-managed-media {
  background-image:
    linear-gradient(rgba(4, 12, 23, 0.1), rgba(4, 12, 23, 0.2)),
    var(--managed-media-image);
  background-position: center;
  background-size: cover;
}

.petit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px max(7vw, 70px);
  color: var(--white);
}

.petit-content h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.92;
}

.petit-content h2 span {
  color: var(--gold-light);
  font-style: italic;
}

.petit-content > p {
  max-width: 530px;
  margin-top: 30px;
  color: #b8c0ca;
  font-size: 0.9rem;
  line-height: 1.9;
}

.petit-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
  margin-top: 45px;
}

.petit-feature {
  padding-top: 18px;
  border-top: 1px solid rgba(201, 169, 110, 0.55);
}

.petit-feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.petit-feature span {
  display: block;
  margin-top: 7px;
  color: #9fa8b4;
  font-size: 0.72rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
  background: var(--navy);
}

.feature-split--reverse .feature-split-image {
  order: 2;
}

.feature-split-image {
  min-height: 500px;
  background:
    linear-gradient(rgba(4, 12, 23, 0.05), rgba(4, 12, 23, 0.2)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=85")
      center/cover;
}

.feature-split-image.has-managed-media {
  background-image:
    linear-gradient(rgba(4, 12, 23, 0.05), rgba(4, 12, 23, 0.2)),
    var(--managed-media-image);
  background-position: center;
  background-size: cover;
}

.feature-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(7vw, 70px);
  color: var(--white);
}

.feature-split-content h2 {
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

.feature-split-content h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.feature-split-content p {
  max-width: 520px;
  margin-top: 26px;
  color: #b8c0ca;
  font-size: 0.88rem;
  line-height: 1.9;
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.event-type-card {
  padding: 34px;
  border: 1px solid #dfd7ca;
  background: var(--white);
}

.event-type-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.event-type-card p {
  color: #69717a;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ---------------- PROCESS ---------------- */

.process {
  padding: 125px 0;
  background: var(--cream-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.steps {
  border-top: 1px solid #c9bfae;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #c9bfae;
}

.step-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.step h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.step p {
  max-width: 520px;
  color: #6f7479;
  font-size: 0.82rem;
}

.process--light {
  background: var(--cream);
}

/* ---------------- CTA ---------------- */

.cta-strip {
  padding: 90px 0;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.cta-strip h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-strip p {
  max-width: 580px;
  margin: 24px auto 0;
  color: #b8c0ca;
  font-size: 0.88rem;
  line-height: 1.9;
}

.cta-strip .btn {
  margin-top: 34px;
}

/* ---------------- CONTACT ---------------- */

.contact {
  padding: 120px 0;
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.contact-info h2 span {
  color: var(--gold-light);
  font-style: italic;
}

.contact-info > p {
  max-width: 440px;
  margin-top: 30px;
  color: #aeb7c1;
  font-size: 0.86rem;
  line-height: 1.9;
}

.contact-details {
  margin-top: 50px;
}

.contact-detail {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: #c5cad0;
  font-size: 0.6rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #66717e;
  outline: none;
  color: var(--white);
  background: transparent;
  font-size: 0.85rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

select option {
  color: var(--text-dark);
}

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

.contact-form .btn {
  width: fit-content;
  margin-top: 15px;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: #b8c0ca;
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-status--success {
  color: #d9e9dc;
}

.form-status--error {
  color: #f0b5b5;
}

/* ---------------- CATALOG ---------------- */

.catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.catalog-intro .section-subtitle {
  margin-top: 0;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 55px 0 35px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd4c6;
}

.filter-button {
  padding: 12px 18px;
  border: 1px solid #d3c8b8;
  color: #626a73;
  background: transparent;
  font-size: 0.65rem;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.catalog-status {
  margin-bottom: 24px;
  color: #7b8289;
  font-size: 0.75rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #e1d9ce;
  background: var(--white);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #e4e1db;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gold-light);
  font-size: 0.58rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.product-body {
  padding: 25px 25px 28px;
}

.product-body h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.product-body p {
  min-height: 48px;
  color: #707880;
  font-size: 0.78rem;
  line-height: 1.75;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid #ebe5dc;
}

.product-footer span {
  color: var(--gold-dark);
  font-size: 0.63rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-footer a {
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catalog-note {
  max-width: 700px;
  margin: 55px auto 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  color: #69717a;
  background: var(--cream-dark);
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ---------------- BLOG ---------------- */

.blog-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: end;
}

.blog-intro p {
  max-width: 650px;
  color: #69717a;
  font-size: 0.92rem;
  line-height: 1.9;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 430px;
  margin-top: 65px;
  background: var(--navy);
}

.featured-post-image {
  min-height: 390px;
  background:
    linear-gradient(rgba(4, 12, 23, 0.05), rgba(4, 12, 23, 0.2)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1200&q=85")
      center/cover;
}

.featured-post-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  color: var(--white);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.post-meta span + span::before {
  margin-right: 12px;
  color: #77818d;
  content: "·";
}

.featured-post-body h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 0.98;
}

.featured-post-body p {
  margin-top: 20px;
  color: #b8c0ca;
  font-size: 0.83rem;
  line-height: 1.85;
}

.featured-post-body .btn {
  align-self: flex-start;
  margin-top: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #e1d9ce;
  background: var(--white);
}

.blog-card-image {
  height: 235px;
  overflow: hidden;
  background: #e4e1db;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 26px 25px 30px;
}

.blog-card-body .post-meta {
  color: var(--gold-dark);
}

.blog-card-body h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
}

.blog-card-body p {
  margin-top: 13px;
  color: #707880;
  font-size: 0.78rem;
  line-height: 1.8;
}

.blog-card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.blog-note {
  margin-top: 70px;
  padding: 38px 44px;
  border-top: 1px solid var(--gold);
  background: var(--cream-dark);
}

.blog-note h2 {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.blog-note p {
  max-width: 720px;
  margin-top: 14px;
  color: #69717a;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ---------------- FOOTER ---------------- */

footer {
  padding: 70px 0 25px;
  color: #8e98a4;
  background: #030a12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  font-size: 0.75rem;
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--white);
}

.copyright {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  text-align: center;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1000px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--navy);
  }

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

  .nav-links li a {
    display: block;
    padding: 13px 0;
  }

  .nav-contact {
    margin-top: 8px;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .intro-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .rental-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .feature-split--reverse .feature-split-image {
    order: 0;
  }

  .petit-image,
  .feature-split-image {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-intro,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post-image {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .section-heading-row,
  .catalog-intro {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 25px;
  }

  .catalog-intro .section-subtitle {
    margin-top: 24px;
  }

  .service-detail-grid,
  .event-type-grid,
  .rental-info-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  nav {
    height: 78px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-buttons,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 530px;
    padding-top: 135px;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }

  .service-card,
  .service-detail-card,
  .event-type-card {
    padding: 34px 28px;
  }

  .rental-grid {
    grid-template-columns: 1fr;
  }

  .rental-card,
  .rental-card--wide {
    height: 370px;
  }

  .petit-content,
  .feature-split-content {
    padding: 75px 8%;
  }

  .petit-features {
    grid-template-columns: 1fr;
  }

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

  .form-group.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-image {
    height: 270px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-post-body {
    padding: 40px 28px;
  }

  .blog-note {
    padding: 30px 25px;
  }
}
