:root {
  --white: #FFFFFF;
  --clean-white: #FBF7F4;
  --soft-white: #F8F8F6;
  --ink: #080808;
  --ink-soft: #34302D;
  --crimson: #8B0015;
  --dark-crimson: #5E000E;
  --gold: #CBA24A;
  --line: rgba(203, 162, 74, 0.28);
  --shadow: 0 10px 28px rgba(8, 8, 8, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell,
.announcement,
.site-header,
main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  min-height: 32px;
  padding: 5px 24px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 13px;
  font-weight: 500;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.announcement svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 12px 36px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.22);
  background: var(--white);
}

.brand {
  display: grid;
  width: 128px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-rule {
  width: 92px;
  height: 1px;
  margin: -1px 0 4px;
  background: var(--gold);
}

.brand-sub {
  color: var(--ink);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 48, 45, 0.18);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  place-items: center;
}

.menu-button svg,
.book-button svg,
.icon-link svg,
.primary-btn svg,
.light-btn svg,
.package-card svg,
.gallery-link svg,
.legal svg {
  width: 18px;
  height: 18px;
}

.book-button,
.primary-btn,
.outline-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button {
  min-width: 236px;
  padding: 0 22px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 5px 14px rgba(8, 8, 8, 0.16);
}

.book-short {
  display: none;
}

.icon-link {
  position: relative;
  display: grid;
  width: 28px;
  height: 42px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.bag-count {
  position: absolute;
  top: 2px;
  right: -8px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 10px;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.94fr) minmax(420px, 1.06fr);
  min-height: 320px;
  overflow: hidden;
  background: var(--white);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  z-index: 1;
  width: 23%;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 18px 0 18px 56px;
  background: var(--white);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero h1,
.booking-band h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4.1vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  color: var(--dark-crimson);
  font-style: italic;
  font-weight: 500;
}

.hero-text {
  max-width: 468px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.trust-chips {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 18px;
}

.trust-chips article {
  min-height: 82px;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(203, 162, 74, 0.36);
}

.trust-chips article + article {
  padding-left: 18px;
}

.trust-chips svg {
  width: 27px;
  height: 27px;
  margin-bottom: 7px;
  color: #B4640A;
}

.trust-chips h2 {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.trust-chips p {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.stat-chip {
  display: grid;
  align-content: start;
  min-height: 82px;
  padding-left: 18px;
  border-right: 0;
}

.trust-chips .stat-chip strong {
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.trust-chips .stat-chip span,
.trust-chips .stat-chip small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
}

.stars {
  color: #B4640A;
  letter-spacing: 2px;
}

.trust-chips .stat-chip .stars {
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.primary-btn,
.outline-btn {
  min-width: 222px;
  padding: 0 22px;
}

.primary-btn {
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 8px 18px rgba(139, 0, 21, 0.18);
}

.outline-btn {
  border: 1px solid rgba(139, 0, 21, 0.55);
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.82);
}

.hero-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 56% center;
}

.services-section,
.packages-section,
.process-section,
.gallery-section {
  margin: 8px 36px 0;
  padding: 16px 18px;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 8px;
  background: var(--clean-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.service-card {
  overflow: hidden;
  min-height: 166px;
  border: 1px solid rgba(203, 162, 74, 0.22);
  border-radius: 5px;
  background: var(--white);
}

.service-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.service-card h2 {
  margin: 9px 10px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.service-card p {
  margin: 4px 10px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.packages-section {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(210px, 0.55fr) minmax(240px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.package-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 6px;
  background: var(--white);
}

.package-card.featured {
  border-color: rgba(139, 0, 21, 0.22);
  box-shadow: 0 6px 18px rgba(8, 8, 8, 0.06);
}

.package-card > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.package-card h2,
.includes-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
}

.package-card p {
  min-height: 34px;
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.package-card ul,
.includes-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
}

.package-card a,
.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--dark-crimson);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.package-card a svg,
.gallery-link svg {
  width: 15px;
  height: 15px;
}

.includes-panel {
  padding: 16px 18px;
  border-left: 1px solid rgba(203, 162, 74, 0.25);
}

.includes-panel h2 {
  margin-bottom: 14px;
  color: var(--dark-crimson);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.includes-panel li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 12px;
}

.includes-panel svg {
  width: 20px;
  height: 20px;
  color: #B4640A;
}

.proof-card {
  position: relative;
  padding: 26px 24px 18px;
  border-radius: 6px;
  background: var(--white);
}

.quote-mark {
  position: absolute;
  top: 0;
  left: 16px;
  color: rgba(203, 162, 74, 0.24);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.proof-card blockquote {
  position: relative;
  margin: 0;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
}

.proof-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.proof-person img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.proof-person strong,
.proof-person span {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.proof-person span {
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.process-section {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 18px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: var(--gold);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: var(--clean-white);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--dark-crimson);
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.process-list strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.process-list p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.25;
}

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

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.gallery-strip img {
  width: 100%;
  height: 76px;
  border-radius: 5px;
  object-fit: cover;
}

.gallery-link {
  margin-top: 0;
  white-space: nowrap;
}

.booking-band {
  display: grid;
  grid-template-columns: 176px 1fr auto 270px;
  align-items: center;
  gap: 28px;
  min-height: 66px;
  margin: 20px 36px 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
}

.booking-band img {
  width: 176px;
  height: 66px;
  object-fit: cover;
}

.booking-band h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.05;
}

.booking-band p {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.light-btn {
  min-width: 238px;
  padding: 0 18px;
  color: var(--dark-crimson);
  background: var(--white);
}

.question {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 13px;
}

.question a {
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr 360px;
  gap: 48px;
  padding: 20px 44px 0;
  overflow: hidden;
  background: var(--white);
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(52, 48, 45, 0.18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.newsletter {
  position: relative;
  min-height: 150px;
  padding-left: 22px;
  border-left: 1px solid rgba(203, 162, 74, 0.22);
}

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 240px;
  height: 38px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.15);
  border-radius: 4px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 44px 0 14px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 400;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  color: var(--crimson);
  background: transparent;
}

.newsletter button svg {
  width: 18px;
  height: 18px;
}

.newsletter img {
  position: absolute;
  right: -18px;
  bottom: -3px;
  width: 210px;
  height: 88px;
  object-fit: cover;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px -44px 0;
  padding: 14px 44px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 12px;
  font-weight: 400;
}

.legal p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.legal nav {
  display: flex;
  gap: 52px;
}

.legal svg {
  color: var(--gold);
}

@media (max-width: 1320px) {
  .announcement {
    gap: 28px;
  }

  .site-header {
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 12px 24px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero-copy {
    padding-left: 36px;
  }

  .packages-section {
    grid-template-columns: 1fr 260px;
  }

  .proof-card {
    grid-column: 1 / -1;
  }

  .booking-band {
    grid-template-columns: 150px 1fr auto;
  }

  .booking-band img {
    width: 150px;
  }

  .question {
    grid-column: 2 / 4;
    padding: 0 0 18px;
    border-left: 0;
  }

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

  .newsletter {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.22);
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .announcement {
    gap: 12px;
    min-height: 40px;
    padding: 8px 16px;
    flex-wrap: wrap;
    font-size: 12px;
  }

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

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 28px 24px;
  }

  .hero-image {
    min-height: 320px;
    order: -1;
  }

  .services-section,
  .packages-section,
  .process-section,
  .gallery-section,
  .booking-band {
    margin-right: 24px;
    margin-left: 24px;
  }

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

  .packages-section,
  .process-section,
  .gallery-section {
    grid-template-columns: 1fr;
  }

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

  .includes-panel {
    border-top: 1px solid rgba(203, 162, 74, 0.25);
    border-left: 0;
  }

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

  .process-list::before {
    display: none;
  }

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

  .booking-band {
    grid-template-columns: 132px 1fr;
    padding-right: 24px;
  }

  .light-btn,
  .question {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    width: 100vw;
    max-width: 100vw;
    gap: 12px;
    min-height: 72px;
    padding: 12px 16px;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .menu-button {
    display: grid;
  }

  .brand {
    width: 112px;
  }

  .brand-main {
    font-size: 42px;
  }

  .brand-rule {
    width: 78px;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .main-nav,
  .header-actions .icon-link {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .book-button {
    min-width: 92px;
    height: 42px;
    padding: 0 12px;
    letter-spacing: 1.4px;
  }

  .book-button svg,
  .book-full {
    display: none;
  }

  .book-short {
    display: inline;
  }

  .hero-copy {
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    max-width: 340px;
    font-size: 16px;
  }

  .trust-chips {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-chips article {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    min-height: 0;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.24);
  }

  .trust-chips article + article {
    padding-left: 0;
  }

  .trust-chips svg {
    grid-row: 1 / 3;
    margin: 0;
  }

  .stat-chip {
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(203, 162, 74, 0.24);
    border-radius: 6px;
    background: var(--clean-white);
  }

  .trust-chips .stat-chip {
    display: block;
    border-bottom: 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-image {
    min-height: 280px;
  }

  .services-section,
  .packages-section,
  .process-section,
  .gallery-section,
  .booking-band {
    margin-right: 16px;
    margin-left: 16px;
  }

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

  .service-card img {
    height: 176px;
  }

  .process-list,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 160px;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px 22px;
  }

  .booking-band img {
    width: calc(100% + 40px);
    height: 92px;
    margin: 0 -20px;
  }

  .light-btn,
  .question {
    grid-column: auto;
  }

  .light-btn {
    width: 100%;
  }

  .question {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 0;
  }

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

  .newsletter {
    min-height: 220px;
  }

  .newsletter form {
    width: min(100%, 280px);
  }

  .legal {
    align-items: flex-start;
    flex-direction: column;
    margin-right: -16px;
    margin-left: -16px;
    padding: 16px;
  }

  .legal nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}
