@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@500;600&display=swap');

:root {
  --kc3-bg: #080400;
  --kc3-panel: #0d0600;
  --kc3-gold: #d5a327;
  --kc3-gold-soft: #a9781c;
  --kc3-cream: #fff4d7;
  --kc3-line: rgba(153, 111, 24, .72);
}

.kc3-page,
.kc3-page * { box-sizing: border-box; }

.kc3-page {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  color: var(--kc3-cream);
  background:
    radial-gradient(circle at 50% -6%, rgba(80, 42, 5, .38), transparent 35%),
    linear-gradient(180deg, #0c0600 0%, #070300 100%);
  font-family: Montserrat, Arial, sans-serif;
}

.kc3-hero {
  position: relative;
  height: 435px;
  padding-top: 25px;
  text-align: center;
  border-bottom: 2px solid #aa7f19;
}

.kc3-logo {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto -2px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(201, 143, 26, .12));
}

.kc3-hero h1 {
  margin: 0;
  color: #fff6dc;
  font: 600 58px/1.05 "Cormorant Garamond", Georgia, serif;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #6e4d20;
}

.kc3-tagline {
  margin: 7px 0 16px;
  color: #e1ae2d;
  font: 500 17px/1.5 "Cormorant Garamond", Georgia, serif;
  letter-spacing: 8px;
}

.kc3-tagline span { margin: 0 12px; }

.kc3-ornament,
.kc3-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--kc3-gold);
}

.kc3-ornament i,
.kc3-divider i {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #76530e);
}

.kc3-ornament i:last-child,
.kc3-divider i:last-child {
  background: linear-gradient(90deg, #76530e, transparent);
}

.kc3-ornament b,
.kc3-divider b { font-size: 9px; }

.kc3-choose {
  margin: 16px 0 11px;
  color: #a57420;
  font-size: 11px;
  letter-spacing: 8px;
}

.kc3-longline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #946715;
}

.kc3-longline i {
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #39260c);
}

.kc3-longline i:last-child {
  background: linear-gradient(90deg, #39260c, transparent);
}

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

.kc3-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 760px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, #160a00 0%, #0a0500 100%);
  border-right: 1px solid var(--kc3-line);
  isolation: isolate;
}

.kc3-card:last-child { border-right: 0; }

.kc3-media {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #160a00;
}

/* Separate image layer: only this element animates, so motion remains smooth. */
.kc3-image {
  position: absolute;
  inset: -3%;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.085) translateZ(0);
  transform-origin: center center;
  transition: transform 2200ms cubic-bezier(.16, 1, .3, 1), filter 1400ms ease;
  will-change: transform;
  backface-visibility: hidden;
  filter: brightness(.88) saturate(.92);
}

.kc3-card--right .kc3-image { background-position: center 47%; }

.kc3-card:hover .kc3-image,
.kc3-card:focus-visible .kc3-image {
  transform: scale(1) translateZ(0);
  filter: brightness(1) saturate(1);
}

.kc3-media-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02) 37%, rgba(7, 3, 0, .22) 66%, #0c0600 100%);
}

.kc3-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(147, 86, 12, .22), transparent 45%),
    radial-gradient(circle, rgba(108, 64, 11, .24) 1px, transparent 2px);
  background-size: auto, 62px 62px;
}

.kc3-coming {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 50%;
  width: 165px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid #936918;
  border-radius: 50%;
  color: #a9791e;
  text-align: center;
  letter-spacing: 2px;
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1), border-color 600ms ease;
}

.kc3-card:hover .kc3-coming {
  transform: translate(-50%, -50%) scale(.96);
  border-color: #c18f25;
}

.kc3-star { margin-bottom: 10px; font-size: 34px; }
.kc3-coming strong { font: 500 12px/1.45 "Cormorant Garamond", Georgia, serif; }

.kc3-content {
  position: relative;
  z-index: 4;
  padding: 30px 40px 44px;
}

.kc3-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e0ab24;
  font-size: 11px;
  letter-spacing: 3px;
}

.kc3-stars { font-size: 14px; letter-spacing: 2px; }

.kc3-region {
  margin: 20px 0 12px;
  color: #dda820;
  font-size: 11px;
  letter-spacing: 4px;
}

.kc3-content h2 {
  margin: 0;
  color: #fff4d5;
  font: 600 47px/.95 "Cormorant Garamond", Georgia, serif;
  text-shadow: 0 1px 0 #9b6814;
}

.kc3-subtitle {
  margin: 8px 0 30px;
  color: #ab7a24;
  font: italic 500 18px/1.4 "Cormorant Garamond", Georgia, serif;
}

.kc3-divider { margin: 0 auto 32px; }

.kc3-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 34px;
  color: #d6ba72;
  font: italic 500 18px/1.55 "Cormorant Garamond", Georgia, serif;
}

.kc3-pin { color: #d4a020; font-style: normal; }

.kc3-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 258px;
  padding: 17px 24px;
  border: 1px solid #79570f;
  color: #e0ad2c;
  background: rgba(102, 65, 8, .08);
  font-size: 11px;
  letter-spacing: 3px;
  transition: color 500ms ease, background-color 500ms ease, border-color 500ms ease, transform 500ms cubic-bezier(.16,1,.3,1);
}

.kc3-arrow {
  margin-left: auto;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}

.kc3-card:hover .kc3-button,
.kc3-card:focus-visible .kc3-button {
  color: #130900;
  background: #d2a02a;
  border-color: #d2a02a;
  transform: translateY(-2px);
}

.kc3-card:hover .kc3-arrow,
.kc3-card:focus-visible .kc3-arrow { transform: translateX(4px); }

.kc3-card:focus-visible {
  outline: 2px solid #d5a327;
  outline-offset: -2px;
}

.kc3-footer {
  padding: 30px 20px 36px;
  text-align: center;
  background: #070300;
  border-top: 1px solid #6a490d;
}

.kc3-footer .kc3-ornament i { width: 70px; }

.kc3-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: #e5c573;
  text-decoration: none;
  font: 600 15px/1.2 Montserrat, Arial, sans-serif;
  letter-spacing: 2px;
  transition: color 300ms ease;
}

.kc3-phone:hover { color: #fff1c5; }

.kc3-footer p {
  margin: 16px 0 0;
  color: #76551c;
  font: italic 500 13px "Cormorant Garamond", Georgia, serif;
  letter-spacing: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .kc3-image,
  .kc3-coming,
  .kc3-button,
  .kc3-arrow { transition: none !important; }
}

@media (max-width: 900px) {
  .kc3-hero { height: auto; padding: 24px 20px 28px; }
  .kc3-hero h1 { font-size: 45px; }
  .kc3-tagline { font-size: 13px; letter-spacing: 4px; }
  .kc3-grid { grid-template-columns: 1fr; }
  .kc3-card { min-height: 0; border-right: 0; border-bottom: 1px solid #67470d; }
  .kc3-card:last-child { border-bottom: 0; }
  .kc3-media { height: 330px; }
  .kc3-content { padding: 28px 24px 42px; }
  .kc3-content h2 { font-size: 42px; }
  .kc3-longline i { width: 34%; }
}

@media (max-width: 520px) {
  .kc3-logo { width: 105px; height: 105px; }
  .kc3-hero h1 { font-size: 39px; }
  .kc3-tagline { font-size: 11px; letter-spacing: 3px; }
  .kc3-choose { letter-spacing: 5px; }
  .kc3-media { height: 260px; }
  .kc3-content h2 { font-size: 37px; }
  .kc3-address { font-size: 16px; }
  .kc3-button { width: 100%; min-width: 0; justify-content: center; }
  .kc3-arrow { margin-left: 0; }
  .kc3-footer p { letter-spacing: 2px; }
}
