:root {
  --ink: #171515;
  --muted: #766f6a;
  --paper: #f7f4ef;
  --card: #fffdf9;
  --line: #e8dfd8;
  --accent: #b51f2b;
  --accent-dark: #861520;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
}
.site-header {
  align-items: center;
  background: #111010;
  color: #fff;
  display: flex;
  gap: 42px;
  height: 78px;
  padding: 0 clamp(18px, 5vw, 75px);
}
.brand {
  display: block;
  width: 80px;
}
.brand img {
  display: block;
  width: 80px;
  height: auto;
}
nav {
  display: flex;
  gap: clamp(17px, 3vw, 38px);
  margin-left: auto;
}
nav a {
  color: #d8d1ca;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a.active {
  color: #fff;
  position: relative;
}
nav a.active:after {
  background: var(--accent);
  bottom: -13px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}
.header-cta,
.button {
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.header-cta:hover,
.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.header-cta {
  padding: 12px 16px;
}
.crumb {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 23px 0;
}
.crumb a {
  text-decoration: none;
}
.crumb span {
  margin: 0 10px;
}
.crumb strong {
  color: var(--accent);
}
main {
  margin: auto;
  max-width: 1270px;
  padding: 0 26px 65px;
}
.hero {
  background: #171313;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 450px;
}
.hero-copy {
  align-self: center;
  padding: clamp(30px, 5vw, 68px);
}
.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: #db777d;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4.3vw, 63px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
  text-transform: capitalize;
}
.hero h1 em {
  color: #e6a0a4;
  font-style: normal;
}
.tagline {
  color: #e5c8c8;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  margin: 25px 0;
}
.branch-meta {
  border-top: 1px solid #4c3436;
  color: #ded5d1;
  display: grid;
  gap: 12px;
  padding: 20px 0;
  font-size: 12px;
  line-height: 1.5;
}
.branch-meta b {
  color: #e6a0a4;
  font-size: 18px;
  margin-right: 9px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button.secondary {
  background: transparent;
  border: 1px solid #94545a;
}
.hero-image {
  min-height: 450px;
  overflow: hidden;
  position: relative;
}
.hero-image > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero-image:after {
  background: linear-gradient(90deg, rgba(23, 19, 19, 0.2), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}
.location-card {
  align-items: center;
  background: rgba(255, 253, 249, 0.97);
  bottom: 20px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  left: 20px;
  padding: 15px 18px;
  position: absolute;
  right: 20px;
  z-index: 1;
}
.map-mark {
  color: var(--accent);
  font-size: 24px;
}
.location-card div {
  display: grid;
  gap: 4px;
}
.location-card strong {
  font-family: "Playfair Display", serif;
  font-size: 16px;
}
.location-card small {
  color: var(--muted);
  font-size: 11px;
}
.location-card a {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
  text-decoration: none;
  text-transform: uppercase;
}
.quick-actions {
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0;
  padding: 8px;
}
.quick-actions a {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding: 15px 18px;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}
.quick-actions a:last-child {
  border: 0;
}
.quick-actions a:hover {
  background: #fbefef;
}
.action-icon {
  color: var(--accent);
  font-size: 23px;
}
.quick-actions b,
.quick-actions small {
  display: block;
}
.quick-actions b {
  font-size: 12px;
  text-transform: uppercase;
}
.quick-actions small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
.quick-actions i {
  color: var(--accent);
  font-style: normal;
  margin-left: auto;
}
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.panel,
.price-section {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
}
.section-head {
  margin-bottom: 20px;
}
.section-head h2,
.price-section h2,
.promo h2,
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  letter-spacing: -0.03em;
  margin: 0;
}
.feature-list {
  display: grid;
  gap: 14px;
}
.feature {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
}
.feature img {
  background: #211919;
  border-radius: 50%;
  height: 48px;
  object-fit: contain;
  padding: 10px;
  width: 48px;
}
.feature h3,
.special-row h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin: 0 0 4px;
}
.feature p,
.special-row p,
.promo p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.feature-badge {
  align-items: center;
  background: #211919;
  color: #fff;
  display: flex;
  gap: 13px;
  margin-top: 15px;
  padding: 15px;
}
.feature-badge img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}
.feature-badge div {
  display: grid;
  gap: 3px;
}
.feature-badge strong {
  color: #fff;
}
.feature-badge span {
  color: #cbbab7;
  font-size: 11px;
}
.special-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 0 0 15px;
  margin-bottom: 15px;
}
.special-row:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.special-thumb {
  height: 72px;
  overflow: hidden;
  width: 100px;
}
.special-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.special-row a {
  color: var(--accent);
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 9px;
  text-decoration: none;
  text-transform: uppercase;
}
.price-section {
  margin-top: 18px;
}
.price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.price-card {
  align-items: center;
  background: #211919;
  color: #fff;
  display: flex;
  gap: 15px;
  padding: 20px;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease),
    background 0.2s;
}
.price-card:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.price-icon {
  color: #e9a3a7;
  font-size: 26px;
}
.price-card span:nth-child(2) {
  display: grid;
  gap: 4px;
}
.price-card small {
  color: #d7aaa9;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.price-card strong {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 500;
}
.price-card em {
  color: #d3c6c2;
  font-size: 11px;
  font-style: normal;
}
.price-card > b {
  font-size: 20px;
  margin-left: auto;
}
.promo {
  align-items: center;
  background: #211919;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 30px 34px;
}
.promo em {
  color: #e6a0a4;
  font-style: normal;
}
.promo p {
  color: #d3c6c2;
  margin-top: 10px;
}
.final-cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 50px 10px 10px;
}
.final-cta h2 {
  font-size: 32px;
}
footer {
  background: #111010;
  color: #c9c1bb;
  font-size: 11px;
  padding: 25px;
  text-align: center;
}
.reveal {
  animation: rise 0.65s var(--ease) both;
}
.quick-actions {
  animation-delay: 0.08s;
}
.feature-grid {
  animation-delay: 0.14s;
}
.price-section {
  animation-delay: 0.2s;
}
.promo {
  animation-delay: 0.26s;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 70px;
    padding: 0 16px;
  }
  .brand {
    width: 80px;
  }
  nav {
    display: none;
  }
  .header-cta {
    font-size: 9px;
    margin-left: auto;
    padding: 11px 12px;
  }
  main {
    padding: 0 15px 45px;
  }
  .crumb {
    padding: 17px 0;
  }
  .hero {
    display: block;
  }
  .hero-copy {
    padding: 35px 25px;
  }
  .hero-image {
    min-height: 290px;
  }
  .location-card {
    align-items: flex-start;
    bottom: 12px;
    flex-wrap: wrap;
    left: 12px;
    padding: 12px;
    right: 12px;
  }
  .location-card a {
    margin-left: 0;
    width: 100%;
  }
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .quick-actions a {
    border-bottom: 1px solid var(--line);
    padding: 13px 12px;
  }
  .quick-actions a:nth-child(2) {
    border-right: 0;
  }
  .quick-actions a:nth-child(3) {
    border-bottom: 0;
  }
  .quick-actions a:nth-child(4) {
    border-bottom: 0;
    border-right: 0;
  }
  .feature-grid,
  .price-grid {
    display: block;
  }
  .panel,
  .price-section {
    margin-top: 18px;
    padding: 22px 18px;
  }
  .price-card {
    margin-bottom: 10px;
  }
  .promo {
    align-items: flex-start;
    display: block;
    margin-top: 18px;
    padding: 24px 20px;
  }
  .promo .button {
    margin-top: 22px;
  }
  .final-cta {
    align-items: flex-start;
    display: block;
    padding: 36px 5px 5px;
  }
  .final-cta .button {
    margin-top: 18px;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
