:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --yellow: #f6d800;
  --yellow-deep: #dfc400;
  --white: #fff;
  --muted: #a8a8a8;
  --line: rgba(255,255,255,.14);
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  color: var(--black);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(76px, 10vw, 132px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; background: var(--yellow); color: #000; font-weight: 800; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 52px);
  color: #fff;
  background: rgba(10,10,10,.9);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(10,10,10,.98); box-shadow: 0 10px 35px rgba(0,0,0,.22); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.04em; font-size: 1.08rem; }
.brand strong { color: var(--yellow); }
.brand-mark { width: 34px; aspect-ratio: 1; display: grid; place-items: center; background: var(--yellow); color: #000; border-radius: 8px 2px 8px 2px; font-size: 1.25rem; font-style: italic; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: .84rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.main-nav a:not(.nav-call) { position: relative; color: #ddd; }
.main-nav a:not(.nav-call)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-call { padding: 10px 16px; color: #000; background: var(--yellow); border-radius: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }

.hero { position: relative; min-height: min(860px, 100svh); display: grid; align-items: end; overflow: hidden; color: #fff; background: #111; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 45%; transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.91) 0%, rgba(0,0,0,.62) 48%, rgba(0,0,0,.18) 100%), linear-gradient(0deg, rgba(0,0,0,.56) 0%, transparent 48%); }
.hero::before { content: ""; position: absolute; z-index: 2; left: 0; top: 72px; width: 7px; height: 56%; background: var(--yellow); }
.hero-content { position: relative; z-index: 3; padding: clamp(130px, 20vh, 200px) 0 clamp(92px, 14vh, 145px); }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #fff; }
.eyebrow span { width: 35px; height: 3px; background: var(--yellow); }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(3.7rem, 11vw, 9rem); line-height: .84; letter-spacing: -.075em; font-style: italic; text-transform: uppercase; text-shadow: 0 8px 40px rgba(0,0,0,.35); }
.hero h1 span { color: var(--yellow); }
.hero-lead { max-width: 590px; margin: 27px 0 34px; color: #ececec; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 22px; border: 1px solid transparent; border-radius: 10px; font-size: .9rem; font-weight: 900; letter-spacing: .04em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #000; background: var(--yellow); }
.button-primary:hover { background: #ffe926; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.18); backdrop-filter: blur(6px); }
.button-ghost:hover { color: #000; background: #fff; }
.hero-info { position: absolute; z-index: 4; right: 0; bottom: 0; width: min(340px, 32vw); padding: 25px 34px 27px; display: grid; background: var(--yellow); color: #000; }
.hero-info span, .hero-info small { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-info strong { font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -.04em; }

.section-intro { max-width: 780px; margin-bottom: clamp(38px, 6vw, 64px); }
.section-kicker { color: #6b5e00; }
.section-intro h2, .hours-card h2, .location-card h2, .contact h2 { margin: 0; font-size: clamp(2.3rem, 5.4vw, 4.9rem); line-height: 1.02; letter-spacing: -.055em; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.about-copy { margin: 0; font-size: clamp(1.05rem, 2vw, 1.33rem); color: #393939; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #ddd; }
.about-points div { padding: 23px 18px 18px 0; border-bottom: 1px solid #ddd; }
.about-points strong, .about-points span { display: block; }
.about-points strong { font-size: 1.15rem; }
.about-points span { color: #6e6e6e; font-size: .9rem; }

.offer { color: #fff; background: var(--black); }
.offer .section-kicker { color: var(--yellow); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #323232; border: 1px solid #323232; }
.offer-card { position: relative; min-height: 220px; padding: 28px 25px; background: var(--black-soft); overflow: hidden; transition: transform .25s ease, background .25s ease; }
.offer-card:hover { z-index: 2; transform: translateY(-5px); background: #1c1c1c; }
.offer-card > span { color: var(--yellow); font-weight: 900; font-size: .76rem; letter-spacing: .12em; }
.offer-card h3 { margin: 65px 0 8px; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.1; letter-spacing: -.035em; }
.offer-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.offer-card::after { content: ""; position: absolute; width: 75px; height: 75px; right: -38px; top: -38px; border: 1px solid rgba(246,216,0,.4); border-radius: 50%; transition: transform .3s ease; }
.offer-card:hover::after { transform: scale(1.6); }
.offer-card-accent { color: #000; background: var(--yellow); }
.offer-card-accent:hover { background: #ffe51a; }
.offer-card-accent > span { color: #000; }
.offer-card-accent p { color: #3d3700; }
.offer-card-accent::after { border-color: rgba(0,0,0,.35); }

.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: repeat(2, minmax(220px, 1fr)); gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; min-height: 260px; overflow: hidden; border-radius: 15px; background: #eee; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-main { grid-row: 1 / 3; }
.gallery-crop img { width: 170%; max-width: none; }
.gallery-left img { object-position: left center; }
.gallery-right img { margin-left: -70%; object-position: right center; }
.gallery-grid figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; color: #fff; background: rgba(0,0,0,.74); border-radius: 7px; font-size: .78rem; font-weight: 750; backdrop-filter: blur(5px); }

.visit { background: #f2f2f2; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hours-card, .location-card { min-height: 490px; padding: clamp(30px, 5vw, 60px); border-radius: var(--radius); }
.hours-card { color: #fff; background: var(--black); }
.hours-card .section-kicker { color: var(--yellow); }
.hours-card h2, .location-card h2 { font-size: clamp(2rem, 4.2vw, 3.8rem); }
.hours-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-top: 25px; padding: 19px 0; border-top: 1px solid var(--line); }
.hours-row span { color: #d2d2d2; }
.hours-row strong { color: var(--yellow); font-size: 1.05rem; text-align: right; }
.hours-row.closed strong { color: #fff; }
.location-card { position: relative; color: #000; background: var(--yellow); overflow: hidden; }
.location-icon { position: absolute; right: -40px; top: -20px; opacity: .13; }
.location-icon svg { width: 230px; height: 230px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.location-card .section-kicker { color: #514800; }
.location-card p:not(.section-kicker) { max-width: 430px; margin: 22px 0 30px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 5px; border-bottom: 2px solid #000; font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.contact { position: relative; overflow: hidden; color: #fff; text-align: center; background: #080808; }
.contact-shape { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07); font-size: clamp(8rem, 27vw, 25rem); font-weight: 950; font-style: italic; letter-spacing: -.1em; white-space: nowrap; user-select: none; }
.contact-inner { position: relative; z-index: 1; }
.contact .section-kicker { color: var(--yellow); }
.contact h2 { max-width: 780px; margin-inline: auto; }
.contact p:not(.section-kicker) { color: #c7c7c7; font-size: 1.1rem; }
.big-call { width: min(100%, 630px); display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 38px auto 0; padding: 23px 30px; color: #000; background: var(--yellow); border-radius: 12px; text-align: left; transition: transform .2s ease, box-shadow .2s ease; }
.big-call:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(246,216,0,.22); }
.big-call span { font-size: .77rem; font-weight: 900; letter-spacing: .08em; }
.big-call strong { font-size: clamp(1.45rem, 4vw, 2.35rem); letter-spacing: -.04em; }

.site-footer { padding: 34px 0 110px; color: #aaa; background: #080808; border-top: 1px solid #242424; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { color: #fff; font-weight: 900; letter-spacing: -.04em; }
.footer-brand strong { color: var(--yellow); }
.site-footer p { margin: 0; font-size: .85rem; }
.site-footer a { color: #fff; font-size: .84rem; font-weight: 800; }

.mobile-call { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid #ffea3d; outline-offset: 4px; }

@media (max-width: 900px) {
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .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: 72px 0 auto; padding: 28px 22px 32px; display: grid; gap: 0; background: #0a0a0a; border-bottom: 1px solid #2b2b2b; transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .2s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid #292929; }
  .main-nav a:not(.nav-call)::after { display: none; }
  .nav-call { margin-top: 16px; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 30px), var(--max)); }
  .site-header { height: 64px; padding-inline: 15px; }
  .main-nav { top: 64px; }
  .brand { font-size: 1rem; }
  .hero { min-height: 780px; align-items: center; }
  .hero::before { top: 64px; width: 5px; height: 43%; }
  .hero-image { object-position: 53% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.51) 65%, rgba(0,0,0,.3) 100%); }
  .hero-content { padding-top: 205px; padding-bottom: 125px; align-self: end; }
  .hero h1 { font-size: clamp(3.5rem, 20vw, 5.8rem); }
  .hero-lead { margin-block: 20px 27px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-info { width: 100%; padding: 15px; grid-template-columns: 1fr auto; align-items: center; }
  .hero-info small { grid-column: 1 / -1; }
  .hero-info strong { font-size: 1.35rem; }
  .section { padding-block: 74px; }
  .section-intro h2, .contact h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .about-points { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 165px; }
  .offer-card h3 { margin-top: 35px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 190px; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .gallery-crop { min-height: 190px !important; }
  .gallery-crop img { width: 220%; }
  .gallery-right img { margin-left: -120%; }
  .gallery-grid figcaption { left: 9px; bottom: 9px; padding: 6px 8px; font-size: .69rem; }
  .hours-card, .location-card { min-height: 410px; padding: 30px 24px; }
  .hours-row { display: grid; gap: 3px; }
  .hours-row strong { text-align: left; }
  .big-call { display: grid; gap: 3px; padding: 21px; }
  .footer-inner { display: grid; text-align: center; justify-content: center; }
  .site-footer { padding-bottom: 105px; }
  .mobile-call { position: fixed; z-index: 45; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 13px; color: #000; background: var(--yellow); border: 1px solid rgba(0,0,0,.2); border-radius: 14px; box-shadow: 0 12px 38px rgba(0,0,0,.36); font-weight: 900; letter-spacing: -.02em; }
  .mobile-call svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-call span { display: grid; line-height: 1.2; }
  .mobile-call small { font-size: .62rem; letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* New media within the original gallery and visual style. */
.facebook-link { margin-top: 22px; }
.gallery-additions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; align-items: start; }
.gallery-additions figure { margin: 0; overflow: hidden; border-radius: 15px; background: #eee; }
.gallery-additions img { display: block; width: 100%; height: auto; }
.gallery-video video { display: block; width: 100%; height: auto; aspect-ratio: 9/16; background: #000; }
.gallery-video figcaption { padding: 12px 16px; font-size: .875rem; font-weight: 700; }
@media (max-width: 640px) {
  .gallery-additions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-additions .gallery-video { grid-column: 1 / -1; width: min(100%, 360px); justify-self: center; }
}

/* Compact update: quicker mobile browsing and prominent destination links. */
.hero-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social-link { min-height: 46px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border-radius: 9px; font-size: .9rem; font-weight: 850; transition: transform .2s ease, filter .2s ease; }
.social-link:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-link svg { width: 23px; height: 23px; flex: none; }
.social-link.facebook { color: #fff; background: #1877f2; }
.social-link.facebook svg { fill: currentColor; }
.social-link.maps { color: #202124; background: #fff; }
.social-link.maps svg { fill: #ea4335; stroke: #fff; stroke-width: 1.3; }

.about.section { padding-block: clamp(28px, 5vw, 56px); }
.about-details { border: 1px solid #dedede; border-radius: 16px; background: #fff; overflow: hidden; }
.about-details summary { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px clamp(22px, 4vw, 42px); cursor: pointer; list-style: none; }
.about-details summary::-webkit-details-marker { display: none; }
.about-details summary span:first-child { display: grid; gap: 5px; }
.about-details summary small { color: #6b5e00; font-size: .78rem; font-weight: 850; letter-spacing: .16em; }
.about-details summary strong { font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.1; letter-spacing: -.045em; }
.about-toggle { width: 44px; height: 44px; display: grid; place-items: center; flex: none; color: #000; background: var(--yellow); border-radius: 50%; font-size: 2rem; font-weight: 500; line-height: 1; transition: transform .2s ease; }
.about-details[open] .about-toggle { transform: rotate(45deg); }
.about-details .about-grid { padding: 0 clamp(22px, 4vw, 42px) 34px; }

.offer.section { padding-block: clamp(50px, 7vw, 82px); }
.offer .section-intro { margin-bottom: 28px; }
.offer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; border: 0; background: transparent; }
.offer-card { min-height: 0; display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: var(--black-soft); border: 1px solid #303030; border-radius: 9px; overflow: hidden; transition: background .2s ease, border-color .2s ease; }
.offer-card:hover { transform: none; background: #1d1d1d; border-color: #555; }
.offer-card::after { display: none; }
.offer-card > span { flex: none; font-size: .72rem; }
.offer-card strong { font-size: 1rem; line-height: 1.25; }
.offer-card-accent { background: var(--yellow); border-color: var(--yellow); }
.offer-card-accent:hover { background: #ffe51a; border-color: #ffe51a; }

.gallery-additions { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-additions figure { min-width: 0; }
.gallery-video video { object-fit: cover; }

@media (max-width: 900px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-additions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero { min-height: 680px; }
  .hero-content { padding-top: 150px; }
  .hero-socials { display: grid; grid-template-columns: 1fr 1fr; }
  .social-link { justify-content: center; padding-inline: 10px; }
  .social-link span { font-size: .82rem; }
  .about-details summary { min-height: 100px; padding: 20px; }
  .about-details summary strong { font-size: 1.55rem; }
  .about-details .about-grid { padding: 0 20px 24px; gap: 22px; }
  .about-toggle { width: 40px; height: 40px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card { min-height: 0; padding: 13px 12px; }
  .offer-card strong { font-size: .94rem; overflow-wrap: anywhere; }
  .gallery-additions { width: calc(100vw - 15px); margin-right: calc(50% - 50vw); display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 15px 12px 0; }
  .gallery-additions::-webkit-scrollbar { display: none; }
  .gallery-additions figure, .gallery-additions .gallery-video { width: min(76vw, 300px); min-width: min(76vw, 300px); grid-column: auto; justify-self: auto; scroll-snap-align: start; }
}

/* Quick links directly below the main banner. */
.top-connect { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 64px); align-items: center; padding-block: clamp(34px, 6vw, 72px); }
.top-connect-photo { margin: 0; overflow: hidden; border-radius: var(--radius); background: #eee; box-shadow: var(--shadow); }
.top-connect-photo img { width: 100%; height: auto; object-fit: contain; }
.top-connect-links h2 { margin: 0 0 28px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.03; letter-spacing: -.05em; }
.top-link-card { position: relative; min-height: 98px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 17px; margin-top: 15px; padding: 18px 20px; color: #121212; background: linear-gradient(145deg, #fff 0%, #f7f8fa 100%); border: 1px solid #e3e6eb; border-radius: 18px; box-shadow: 0 6px 0 #dfe3e9, 0 14px 28px rgba(18,25,38,.10); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.top-link-card:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #dfe3e9, 0 18px 34px rgba(18,25,38,.15); }
.top-link-card:active { transform: translateY(3px); box-shadow: 0 2px 0 #dfe3e9, 0 7px 14px rgba(18,25,38,.12); }
.top-link-card svg { width: 52px; height: 52px; padding: 11px; border-radius: 15px; }
.top-link-card span { display: grid; }
.top-link-card small { color: #5c6470; font-size: .69rem; font-weight: 850; line-height: 1.2; letter-spacing: .105em; }
.top-link-card strong { margin-top: 4px; font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.2; letter-spacing: -.02em; }
.link-arrow { width: 38px; height: 38px; display: grid; place-items: center; color: #242931; background: #fff; border: 1px solid #dfe3e8; border-radius: 50%; box-shadow: 0 3px 8px rgba(18,25,38,.08); font-size: 1.1rem; }
.top-link-facebook { border-left: 4px solid #1877f2; }
.top-link-facebook svg { color: #fff; background: #1877f2; fill: currentColor; box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 5px 12px rgba(24,119,242,.25); }
.top-link-maps { border-left: 4px solid #4285f4; }
.top-link-maps svg { background: #fff; border: 1px solid #e2e5e9; box-shadow: inset 0 1px 0 #fff, 0 5px 12px rgba(66,133,244,.18); }
.message-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.message-link { min-height: 78px; display: flex; align-items: center; justify-content: flex-start; gap: 11px; padding: 12px 14px; color: #151515; background: linear-gradient(145deg, #fff 0%, #f7f8fa 100%); border: 1px solid #e3e6eb; border-radius: 16px; box-shadow: 0 5px 0 #dfe3e9, 0 12px 22px rgba(18,25,38,.09); transition: transform .18s ease, box-shadow .18s ease; }
.message-link:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #dfe3e9, 0 16px 28px rgba(18,25,38,.13); }
.message-link:active { transform: translateY(3px); box-shadow: 0 2px 0 #dfe3e9, 0 6px 12px rgba(18,25,38,.11); }
.message-link svg { width: 45px; height: 45px; flex: none; padding: 9px; color: #fff; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; border-radius: 14px; }
.message-link span { display: grid; min-width: 0; }
.message-link small { color: #717782; font-size: .55rem; font-weight: 850; line-height: 1.1; letter-spacing: .075em; }
.message-link strong { margin-top: 3px; font-size: 1.02rem; line-height: 1.1; letter-spacing: -.015em; }
.message-viber { border-left: 3px solid #7360f2; }
.message-viber svg { background: #7360f2; box-shadow: 0 5px 12px rgba(115,96,242,.25); }
.message-whatsapp { border-left: 3px solid #25d366; }
.message-whatsapp svg { background: #25d366; box-shadow: 0 5px 12px rgba(37,211,102,.24); }
.gallery { padding-bottom: 26px; }
.gallery + .visit { padding-top: 26px; }
.gallery-additions--single { grid-template-columns: minmax(0, 360px); }

@media (max-width: 720px) {
  .hero { min-height: 590px; }
  .hero-content { padding-top: 135px; padding-bottom: 115px; }
  .top-connect { grid-template-columns: 1fr; gap: 28px; padding-block: 34px; }
  .top-connect-links h2 { margin-bottom: 20px; }
  .top-link-card { min-height: 88px; grid-template-columns: 48px 1fr auto; gap: 12px; padding: 14px; border-radius: 16px; }
  .top-link-card svg { width: 48px; height: 48px; padding: 10px; border-radius: 14px; }
  .top-link-card small { font-size: .61rem; }
  .top-link-card strong { font-size: 1rem; }
  .link-arrow { width: 34px; height: 34px; font-size: 1rem; }
  .message-link { min-height: 72px; padding: 10px; border-radius: 14px; }
  .message-link svg { width: 41px; height: 41px; padding: 8px; border-radius: 12px; }
  .message-link small { font-size: .5rem; letter-spacing: .045em; }
  .message-link strong { font-size: .93rem; }
  .about.section { padding-top: 8px; }
  .gallery-additions--single { width: min(100%, 360px); margin-right: 0; overflow: visible; padding-right: 0; }
  .gallery-additions--single .gallery-video { width: 100%; min-width: 0; }
  .gallery { padding-bottom: 16px; }
  .gallery + .visit { padding-top: 16px; }
}
