:root {
  --wine: #74271d;
  --wine-dark: #3e1813;
  --terracotta: #b85634;
  --sand: #e8c7a9;
  --cream: #f6eee6;
  --paper: #fffaf5;
  --ink: #2a1a16;
  --muted: #725e56;
  --line: rgba(74, 41, 30, .16);
  --shadow: 0 24px 60px rgba(63, 30, 20, .14);
  --radius: 28px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.brand-copy small { margin-top: 5px; color: rgba(255, 255, 255, .72); font-size: 11px; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { color: inherit; font-size: 13px; font-weight: 700; text-decoration: none; }
.main-nav a:not(.nav-call):hover,
.main-nav a:not(.nav-call):focus-visible { color: var(--sand); }
.nav-call {
  padding: 12px 20px;
  color: var(--wine-dark) !important;
  background: #fff;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 150px 0 100px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(218, 131, 87, .28), transparent 34%),
    linear-gradient(135deg, #4b1c16 0%, var(--wine) 48%, #8b3727 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -200px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025);
}
.hero-decoration {
  position: absolute;
  top: 130px;
  left: 5vw;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
}
.hero-copy { padding-top: 18px; }
.kicker {
  margin: 0 0 15px;
  color: #efb893;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.kicker-dark { color: var(--terracotta); }
.hero h1,
.section-title h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { font-size: clamp(72px, 8vw, 116px); }
.hero h1 span { display: block; color: var(--sand); font-style: italic; }
.hero-text { max-width: 570px; margin: 28px 0 0; color: rgba(255, 255, 255, .78); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--wine-dark); background: #fff; }
.button-outline { color: #fff; border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .06); }
.button-outline:hover,
.button-outline:focus-visible { background: rgba(255, 255, 255, .14); }
.contact-number {
  display: inline-grid;
  gap: 3px;
  margin-top: 42px;
  color: #fff;
  text-decoration: none;
}
.contact-number span { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-number strong { font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.hero-media {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 180px 30px 30px 30px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 35px 80px rgba(24, 8, 5, .35);
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 166px 19px 19px 19px;
}
.hero-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 11px 15px;
  color: var(--wine-dark);
  background: rgba(255, 250, 245, .94);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(22, 8, 5, .2);
}

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: end; gap: 100px; }
.section-title h2 { font-size: clamp(50px, 6vw, 80px); }
.intro-content > p { max-width: 620px; margin: 0 0 35px; color: var(--muted); font-size: 21px; }
.info-list { border-top: 1px solid var(--line); }
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.info-row span { color: var(--terracotta); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.info-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; }

.spaces { background: var(--cream); }
.centered { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.feature-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: #d9c8bb;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.feature-card-wide { grid-row: span 2; min-height: 782px; }
.feature-card img { width: 100%; height: 100%; object-fit: contain; border-radius: calc(var(--radius) - 10px); background: #2d211d; }
.feature-card::after,
.view-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(35, 14, 9, .74));
  pointer-events: none;
}
.feature-card span,
.view-card span,
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 27px;
  bottom: 23px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.video-section { background: var(--paper); }
.video-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; }
.video-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(55px, 7vw, 88px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.video-copy > p:last-child { max-width: 450px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.video-frame {
  max-width: 520px;
  justify-self: center;
  padding: 12px;
  border-radius: 34px;
  background: var(--wine-dark);
  box-shadow: 0 32px 70px rgba(51, 24, 17, .22);
}
.video-frame video { width: 100%; max-height: 720px; border-radius: 24px; background: #160d0a; }

.new-views { background: #eadacb; }
.views-heading,
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 48px; }
.views-heading > p,
.gallery-heading > p { max-width: 400px; margin: 0 0 8px; color: var(--muted); }
.views-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.view-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  display: grid;
  place-items: center;
  padding: 15px;
  border-radius: var(--radius);
  background: #d3c0b0;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.view-card-large { grid-row: span 2; min-height: 752px; }
.view-card img { width: 100%; height: 100%; object-fit: contain; border-radius: calc(var(--radius) - 10px); background: #2c201c; }

.gallery { background: var(--paper); }
.gallery-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  padding: 8px;
  border-radius: 20px;
  background: #e4d7cc;
  box-shadow: 0 13px 36px rgba(59, 28, 18, .1);
  break-inside: avoid;
  text-decoration: none;
}
.gallery-item img { width: 100%; height: auto; border-radius: 13px; transition: transform .35s ease; }
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.018); }
.gallery-item span { left: 22px; bottom: 18px; font-size: 21px; }

.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: var(--wine-dark);
}
.contact::before {
  content: "HC";
  position: absolute;
  right: -45px;
  bottom: -115px;
  color: rgba(255,255,255,.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(37vw, 480px);
  line-height: .8;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; }
.contact h2 { font-size: clamp(62px, 8vw, 106px); }
.contact h2 + p { margin: 16px 0 0; color: rgba(255,255,255,.7); font-size: 19px; }
.contact-action { display: grid; justify-items: start; }
.contact-action > span { color: #efb893; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.phone-link { margin: 7px 0 23px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3vw, 42px); text-decoration: none; white-space: nowrap; }
.button-light { color: var(--wine-dark); background: #fff; }

.site-footer { color: rgba(255,255,255,.76); background: #211310; }
.footer-inner { min-height: 155px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner > div { display: grid; }
.footer-inner strong { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.footer-inner span { margin-top: 4px; font-size: 12px; }
.footer-inner a { color: #efb893; font-weight: 800; text-decoration: none; }

.floating-call {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--terracotta);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(40, 16, 11, .28);
  transition: transform .2s ease;
}
.floating-call:hover,
.floating-call:focus-visible { transform: translateY(-4px); }
.floating-call svg { width: 28px; height: 28px; fill: currentColor; }

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 92px;
  color: #fff;
  background: rgba(18, 9, 7, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1100px, 100%); max-height: 100%; display: grid; justify-items: center; gap: 12px; margin: 0; }
.lightbox-image { max-width: 100%; max-height: calc(100vh - 155px); object-fit: contain; border-radius: 10px; box-shadow: 0 28px 85px rgba(0,0,0,.5); }
.lightbox-caption { color: rgba(255,255,255,.72); font-size: 14px; }
.lightbox-close,
.lightbox-control {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  cursor: pointer;
}
.lightbox-close { top: 20px; right: 22px; width: 49px; height: 49px; border-radius: 50%; font-size: 31px; }
.lightbox-control { top: 50%; width: 56px; height: 72px; border-radius: 999px; font-size: 43px; transform: translateY(-50%); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close:hover,
.lightbox-control:hover { background: var(--terracotta); }

@media (max-width: 980px) {
  :root { --container: min(760px, calc(100% - 34px)); }
  .header-inner { min-height: 80px; }
  .brand-copy small { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 47px;
    height: 47px;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: transparent;
  }
  .menu-toggle span { width: 20px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 110px 35px 45px;
    color: #fff;
    background: #5b2119;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: Georgia, "Times New Roman", serif; font-size: 36px; font-weight: 400; }
  .main-nav .nav-call { margin-top: 8px; font-family: "Segoe UI", Arial, sans-serif; font-size: 14px; font-weight: 800; }
  .hero { min-height: 0; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 690px; }
  .hero-media { max-width: 690px; justify-self: end; }
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid,
  .views-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-wide,
  .view-card-large { grid-column: 1 / -1; grid-row: auto; min-height: 620px; }
  .video-grid { grid-template-columns: 1fr; gap: 45px; }
  .video-copy { max-width: 640px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); --radius: 19px; }
  .section { padding: 78px 0; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 17px; }
  .hero { padding: 116px 0 72px; }
  .hero h1 { font-size: clamp(63px, 19vw, 88px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; max-width: 315px; }
  .hero-actions .button { width: 100%; }
  .contact-number strong { font-size: 23px; }
  .hero-media { padding: 8px; border-radius: 100px 18px 18px 18px; }
  .hero-media img { border-radius: 93px 12px 12px 12px; }
  .hero-media figcaption { position: static; margin: 8px 4px 0; padding: 0; color: rgba(255,255,255,.72); background: transparent; box-shadow: none; font-size: 10px; }
  .section-title h2 { font-size: 50px; }
  .intro-content > p { font-size: 18px; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .feature-grid,
  .views-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card-wide,
  .view-card,
  .view-card-large { grid-column: auto; min-height: 0; }
  .feature-card img,
  .view-card img { height: auto; object-fit: initial; }
  .video-frame { width: 100%; padding: 8px; border-radius: 25px; }
  .video-frame video { max-height: 72vh; border-radius: 18px; }
  .views-heading,
  .gallery-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .gallery-grid { columns: 1; }
  .gallery-item { margin-bottom: 14px; }
  .contact { padding: 84px 0; }
  .phone-link { white-space: normal; }
  .footer-inner { min-height: 190px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .floating-call { right: 14px; bottom: 14px; width: 57px; height: 57px; }
  .lightbox { padding: 68px 14px 82px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-control { top: auto; bottom: 18px; width: 58px; height: 46px; transform: none; }
  .lightbox-prev { left: calc(50% - 68px); }
  .lightbox-next { right: calc(50% - 68px); }
  .lightbox-image { max-height: calc(100vh - 175px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
