:root {
  --white: #ffffff;
  --clean-white: #fbf7f4;
  --soft-white: #f8f8f6;
  --ink: #080808;
  --ink-soft: #34302d;
  --crimson: #8b0015;
  --dark-crimson: #5e000e;
  --gold: #cba24a;
  --gold-soft: #d6b766;
  --gold-pale: #e8d7ae;
  --line: rgba(203, 162, 74, 0.28);
  --shadow: 0 16px 38px rgba(8, 8, 8, 0.08);
}

* {
  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;
}

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

.page-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 9vw, 210px);
  min-height: 48px;
  padding: 8px 36px;
  color: var(--white);
  background: linear-gradient(90deg, #65000f, #780012 55%, #5a000d);
  font-size: 14px;
  font-weight: 500;
}

.announcement span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.announcement b {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

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

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 94px;
  padding: 16px 36px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

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

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

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

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

.menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

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

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

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

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

.icon-link {
  display: grid;
  width: 24px;
  height: 48px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}

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

.book-button {
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(180deg, #760010, #59000c);
  box-shadow: 0 8px 18px rgba(94, 0, 14, 0.22);
}

.book-button svg {
  width: 17px;
  height: 17px;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  place-items: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(450px, 0.95fr) minmax(480px, 1.05fr);
  min-height: 446px;
  background: var(--white);
}

.hero-copy {
  padding: 44px 0 42px 52px;
}

.eyebrow,
.section-title p,
.experience-strip h2,
.mobile-features h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero h1,
.booking-band h2,
.gallery-heading h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(46px, 4.25vw, 62px);
  line-height: 1.03;
}

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

.hero h1 span {
  color: #a95a24;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.7em;
  font-weight: 300;
  vertical-align: 0.06em;
}

.hero-text {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.feature-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: 30px;
}

.feature-chips article {
  min-height: 126px;
  padding: 0 18px;
  text-align: center;
}

.feature-chips article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.feature-chips svg {
  width: 31px;
  height: 31px;
  margin: 0 auto 12px;
  color: var(--dark-crimson);
}

.feature-chips strong,
.experience-grid strong,
.phone-step strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-chips span,
.experience-grid p {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.primary-btn,
.outline-btn {
  min-width: 218px;
  padding: 0 24px;
}

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

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

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fbf7f4 0%, rgba(251, 247, 244, 0) 26%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 446px;
  object-fit: cover;
  object-position: center top;
}

.stat-badge {
  position: absolute;
  right: 32px;
  bottom: 30px;
  width: 160px;
  padding: 20px 19px 18px;
  border-radius: 10px;
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(8, 8, 8, 0.16);
}

.stat-badge strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.stat-badge span,
.stat-badge em {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
}

.stat-badge small {
  display: block;
  margin-top: 14px;
  color: #a45a11;
  font-size: 13px;
  letter-spacing: 2px;
}

.booking-flow {
  padding: 38px 34px 36px;
  background: var(--clean-white);
}

.section-title {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-title p {
  color: var(--ink);
  line-height: 1.6;
}

.section-title span {
  display: inline-block;
  width: 28px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  margin-top: 28px;
}

.phone-sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-step {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.phone-step span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #a45a11;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.phone-step img {
  width: 100%;
  max-width: 172px;
  border-radius: 25px;
  filter: drop-shadow(0 10px 18px rgba(8, 8, 8, 0.06));
}

.phone-step strong {
  min-height: 30px;
  text-align: center;
}

.mobile-features {
  padding-top: 62px;
}

.mobile-features h2 {
  margin-bottom: 18px;
}

.mobile-features article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.mobile-features svg {
  width: 30px;
  height: 30px;
  color: var(--dark-crimson);
}

.mobile-features strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.mobile-features p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.help-card {
  display: grid;
  justify-items: center;
  margin-top: 18px;
  padding: 18px 14px;
  border-radius: 8px;
  color: var(--dark-crimson);
  background: #FBF7F4;
  text-align: center;
}

.help-card svg {
  width: 34px;
  height: 34px;
}

.help-card strong {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.help-card span {
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
}

.help-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 20px;
  border-radius: 5px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.experience-strip {
  margin: 0 34px 24px;
  padding: 32px 32px 28px;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 72%, #FBF7F4 100%);
  box-shadow: var(--shadow);
}

.experience-strip h2 {
  color: var(--dark-crimson);
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 22px;
}

.experience-grid article {
  min-height: 126px;
  padding: 0 20px;
  text-align: center;
}

.experience-grid article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.experience-grid svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 13px;
  color: #b4640a;
}

.gallery-strip {
  padding: 10px 34px 30px;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.gallery-heading h2 {
  color: var(--dark-crimson);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.gallery-heading a {
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--clean-white);
  box-shadow: 0 8px 22px rgba(8, 8, 8, 0.06);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 11px 13px 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.booking-band {
  display: grid;
  grid-template-columns: 190px 1fr auto 230px;
  align-items: center;
  gap: 28px;
  min-height: 136px;
  margin: 0 34px 34px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(90deg, #65000f, #870014 64%, #5c000d);
}

.booking-band img {
  width: 190px;
  height: 136px;
  object-fit: cover;
}

.booking-band h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(27px, 2.8vw, 40px);
  line-height: 1.1;
}

.booking-band p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

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

.talk {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px !important;
  line-height: 1.65;
}

.talk a {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr 330px;
  gap: 44px;
  padding: 34px 36px 26px;
  overflow: hidden;
  background: var(--clean-white);
}

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

.socials {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}

.socials a {
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 28px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 238px;
  height: 46px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.14);
  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 48px 0 16px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 400;
}

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

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

.newsletter img {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 164px;
  height: 136px;
  object-fit: cover;
  opacity: 0.92;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.legal p {
  margin: 0;
}

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

@media (max-width: 1220px) {
  .announcement {
    gap: 22px;
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

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

  .hero-copy {
    padding: 38px 34px 32px;
  }

  .hero-media {
    height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .flow-layout {
    grid-template-columns: 1fr;
  }

  .mobile-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 8px;
  }

  .mobile-features h2,
  .help-card {
    grid-column: 1 / -1;
  }

  .mobile-features article {
    margin-bottom: 0;
  }

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

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

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

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

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

@media (max-width: 860px) {
  .announcement {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px 18px;
    min-height: 0;
    padding: 9px 16px;
    font-size: 12px;
  }

  .announcement span:first-child {
    flex-basis: 100%;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 82px;
    padding: 13px 16px;
  }

  .brand {
    width: 120px;
  }

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

  .brand-rule {
    width: 92px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 3.4px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(203, 162, 74, 0.2);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(8, 8, 8, 0.08);
  }

  .menu-toggle:checked ~ .main-nav {
    display: grid;
    gap: 10px;
  }

  .header-actions {
    gap: 12px;
  }

  .icon-link {
    display: none;
  }

  .book-button {
    min-height: 44px;
    max-width: 138px;
    padding: 0 13px;
    white-space: normal;
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 1.4px;
  }

  .book-button svg {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .hero {
    min-height: 0;
  }

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

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

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

  .feature-chips {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    border-top: 1px solid rgba(203, 162, 74, 0.2);
  }

  .feature-chips article {
    padding: 16px 12px 14px;
    border-bottom: 1px solid rgba(203, 162, 74, 0.2);
  }

  .feature-chips article + article {
    border-left: 0;
  }

  .feature-chips article:nth-child(even) {
    border-left: 1px solid rgba(203, 162, 74, 0.2);
  }

  .hero-actions {
    gap: 12px;
  }

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

  .hero-media {
    height: 330px;
  }

  .hero-media img {
    min-height: 330px;
  }

  .stat-badge {
    right: 16px;
    bottom: 16px;
    width: 132px;
    padding: 15px 14px;
  }

  .stat-badge strong {
    font-size: 28px;
  }

  .booking-flow {
    padding: 30px 16px;
  }

  .section-title p {
    font-size: 11px;
  }

  .section-title span {
    display: block;
    width: 0;
    height: 3px;
  }

  .phone-sequence {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 12px;
    scroll-snap-type: x mandatory;
  }

  .phone-step {
    flex: 0 0 190px;
    scroll-snap-align: center;
  }

  .phone-step img {
    max-width: 180px;
  }

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

  .experience-strip {
    margin: 0 16px 22px;
    padding: 27px 16px 18px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .experience-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    min-height: 0;
    padding: 16px 0;
    text-align: left;
  }

  .experience-grid article + article {
    border-top: 1px solid rgba(203, 162, 74, 0.24);
    border-left: 0;
  }

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

  .experience-grid p {
    margin-top: 4px;
  }

  .gallery-strip {
    padding: 4px 16px 26px;
  }

  .gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .gallery-grid figure {
    flex: 0 0 230px;
    scroll-snap-align: start;
  }

  .gallery-grid img {
    height: 188px;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 16px 28px;
    padding: 0 20px 24px;
  }

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

  .light-btn {
    width: 100%;
    min-width: 0;
  }

  .talk {
    grid-column: auto;
    padding: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 16px 24px;
  }

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

  .newsletter {
    min-height: 240px;
  }

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

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

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

@media (max-width: 430px) {
  .announcement span {
    white-space: normal;
  }

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

  .feature-chips article:nth-child(even) {
    border-left: 0;
  }

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