:root {
  --ivory: #f7efe4;
  --linen: #efe0cf;
  --sand: #d6b18a;
  --champagne: #d8a85e;
  --copper: #a86335;
  --espresso: #26160f;
  --ink: #39251b;
  --muted: #7e6656;
  --white: #fffaf3;
  --border: rgba(90, 52, 30, 0.16);
  --shadow: 0 28px 70px rgba(65, 36, 20, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--espresso);
  background:
    linear-gradient(90deg, rgba(168, 99, 53, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(168, 99, 53, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 52px 52px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: clamp(14px, 4vw, 52px);
  right: clamp(14px, 4vw, 52px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(168, 99, 53, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 18px 45px rgba(65, 36, 20, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
  height: 58px;
}

.brand-logo {
  object-fit: contain;
  animation: logoGlow 4.8s ease-in-out infinite;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.desktop-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.desktop-nav a:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.header-cta,
.primary-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9a5a30;
  border-radius: var(--radius);
  padding: 0 24px;
  color: #fff8ed;
  background: linear-gradient(135deg, #c98246, #9a572f);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(168, 99, 53, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta::after,
.primary-button::after {
  content: "";
  position: absolute;
  inset: -30% -55%;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 239, 180, 0.65) 50%, transparent 64%);
  transform: translateX(-120%);
  animation: buttonShine 4.2s ease-in-out infinite;
}

.header-cta {
  min-height: 44px;
  color: var(--espresso);
  background: transparent;
  box-shadow: none;
}

.primary-button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(168, 99, 53, 0.26);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.intro-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(216, 168, 94, 0.22), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(168, 99, 53, 0.22), transparent 18%),
    #120a06;
  animation: introExit 900ms ease 2.7s forwards;
}

.intro-overlay::before,
.intro-overlay::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(216, 168, 94, 0.22);
  border-radius: 50%;
  animation: introRing 2.5s ease-out forwards;
}

.intro-overlay::after {
  width: 620px;
  height: 620px;
  animation-delay: 260ms;
}

.intro-logo {
  position: relative;
  z-index: 2;
  width: min(520px, 82vw);
  height: min(420px, 52vh);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.82);
  animation: introLogo 2.3s cubic-bezier(0.2, 0.8, 0.2, 1) 180ms forwards;
}

.intro-line {
  position: absolute;
  z-index: 1;
  width: min(720px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 150, 0.86), transparent);
  transform: scaleX(0);
  animation: introLine 1.8s ease 500ms forwards;
}

.intro-burst,
.intro-burst span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-burst span {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 16px rgba(255, 220, 130, 0.8);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
  animation: confettiPop 1.85s cubic-bezier(0.18, 0.78, 0.25, 1) var(--delay) forwards;
}

.intro-burst span:nth-child(3n) {
  width: 7px;
  height: 16px;
  border-radius: 2px;
  background: #fff0b0;
}

.intro-burst span:nth-child(4n) {
  background: #a86335;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: 128px clamp(20px, 6vw, 86px) 82px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 168, 94, 0.34), transparent 68%);
  filter: blur(1px);
  opacity: 0.75;
  animation: sparkleDrift 7s ease-in-out infinite;
}

.hero::before {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 42%;
}

.hero::after {
  width: 96px;
  height: 96px;
  right: 8%;
  bottom: 18%;
  animation-delay: -2.4s;
}

.hero-copy {
  max-width: 660px;
}

.hero-logo {
  width: min(390px, 74vw);
  height: 206px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
  animation: logoGlow 5s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--espresso);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.secondary-link {
  color: var(--copper);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.hero-gallery {
  position: relative;
  min-height: 620px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: photoFloat 7s ease-in-out infinite;
}

.top-photo {
  animation-delay: -1.6s;
}

.bottom-photo {
  animation-delay: -3.2s;
}

.main-photo {
  inset: 42px 10% 0 0;
}

.small-photo {
  width: 42%;
  height: 34%;
}

.top-photo {
  top: 0;
  right: 0;
}

.bottom-photo {
  left: 2%;
  bottom: 8%;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.about,
.services,
.gallery,
.reservation {
  padding: clamp(64px, 9vw, 116px) 0;
}

.about {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.about-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.section-label {
  margin-bottom: 12px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  color: var(--espresso);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

.about-copy p,
.reservation-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.stats article,
.services-grid article,
.quote-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.74);
  box-shadow: 0 18px 45px rgba(65, 36, 20, 0.08);
}

.stats article {
  padding: 24px;
}

.stats strong {
  display: block;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.services {
  background: linear-gradient(180deg, var(--ivory), var(--linen));
}

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

.services-grid article {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.services-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 99, 53, 0.45);
}

.services-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 22, 15, 0.82), rgba(38, 22, 15, 0.15) 62%, transparent);
}

.services-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.services-grid article:hover img {
  transform: scale(1.05);
}

.services-grid div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.services-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.services-grid h3 {
  margin: 0;
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.14;
  font-weight: 500;
}

.gallery {
  background: var(--espresso);
  color: var(--ivory);
}

.gallery .section-label,
.gallery h2 {
  color: var(--ivory);
}

.gallery .section-label {
  color: var(--champagne);
}

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

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.gallery-card.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 22, 15, 0.82), transparent 58%);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  text-transform: uppercase;
}

.reservation {
  background:
    radial-gradient(circle at 8% 14%, rgba(216, 168, 94, 0.26), transparent 28%),
    var(--ivory);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--ink);
  font-weight: 800;
}

.contact-links svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  padding: 9px;
  fill: var(--espresso);
  background: var(--champagne);
  animation: iconPulse 3.8s ease-in-out infinite;
}

.contact-links a:nth-child(2) svg {
  animation-delay: -1.2s;
}

.contact-links a:nth-child(3) svg {
  animation-delay: -2.4s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid article.reveal,
.gallery-card.reveal,
.stats article.reveal {
  transition: opacity 700ms ease, transform 700ms ease, border-color 180ms ease, background 180ms ease;
}

.services-grid article.reveal.is-visible:hover,
.gallery-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

@keyframes photoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes sparkleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes buttonShine {
  0%,
  58% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(216, 168, 94, 0));
  }
  50% {
    filter: drop-shadow(0 8px 18px rgba(216, 168, 94, 0.24));
  }
}

@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 168, 94, 0.34);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(216, 168, 94, 0);
  }
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(18px);
    filter: drop-shadow(0 0 0 rgba(216, 168, 94, 0));
  }
  45% {
    opacity: 1;
    transform: scale(1.02) translateY(0);
    filter: drop-shadow(0 0 28px rgba(216, 168, 94, 0.5));
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 18px rgba(216, 168, 94, 0.36));
  }
}

@keyframes introLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.55;
  }
}

@keyframes introRing {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes confettiPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(0.35);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--distance)) scale(1);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .intro-overlay {
    display: none;
  }
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(20px, 4vw, 36px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(90, 52, 30, 0.2);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--espresso);
  background: #fffaf3;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(168, 99, 53, 0.14);
}

.form-button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  font-size: 16px;
}

footer {
  padding: 32px 0;
  color: var(--ivory);
  background: #160d09;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 190px;
  height: 96px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  color: var(--sand);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    top: 10px;
    height: 68px;
  }

  .brand {
    width: 142px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: fixed;
    top: 22px;
    right: 28px;
    width: 44px;
    height: 40px;
    border: 1px solid rgba(168, 99, 53, 0.34);
    border-radius: var(--radius);
    background: rgba(255, 250, 243, 0.82);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--espresso);
  }

  .mobile-nav {
    position: fixed;
    z-index: 19;
    top: 88px;
    left: 14px;
    right: 14px;
    display: grid;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 180ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-gallery {
    width: 100%;
    min-height: 520px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    left: 10px;
    right: 10px;
  }

  .hero {
    padding: 112px 18px 58px;
  }

  .hero-logo {
    width: 220px;
    height: 126px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-gallery {
    min-height: 420px;
  }

  .main-photo {
    inset: 32px 0 0 0;
  }

  .small-photo {
    width: 44%;
    height: 30%;
  }

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

  .secondary-link {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .top-photo {
    right: 0;
  }

  .bottom-photo {
    left: 0;
  }

  .stats,
  .services-grid,
  .quote-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
