:root {
  --deep-teal: #385c63;
  --mid-seafoam: #6ea2a2;
  --light-aqua: #9dd2d5;
  --stone-grey: #e7e9eb;
  --stone-grey-2: #d9dce0;
  --white: #fefefe;
  --ink: #22353a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
.brand-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  margin-top: 0;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 254, 254, 0.95);
  border-bottom: 1px solid var(--stone-grey-2);
  backdrop-filter: blur(6px);
}

.lightbox-active .site-header {
  z-index: 1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 44px;
  height: 66px;
  object-fit: contain;
  mix-blend-mode: darken;
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.32rem;
}

.brand-title {
  font-size: 1.45rem;
  color: var(--deep-teal);
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4f676d;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--deep-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 162, 162, 0.15), rgba(110, 162, 162, 0.95), rgba(110, 162, 162, 0.15));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: #2f555d;
  text-shadow: 0 0 12px rgba(110, 162, 162, 0.25);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(110, 162, 162, 0.45);
  outline-offset: 4px;
  border-radius: 3px;
}

.nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-reserve:hover {
  background: #1dbe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  color: #fff;
  text-decoration: none;
}

.nav-reserve:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--stone-grey-2);
  background: var(--white);
  color: var(--deep-teal);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 72vh;
  background: linear-gradient(160deg, rgba(8, 22, 26, 0.78) 0%, rgba(18, 50, 58, 0.65) 50%, rgba(30, 70, 78, 0.45) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(157, 210, 213, 0.2), transparent 45%);
}

.hero-content {
  position: relative;
  color: var(--white);
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 0.4rem;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--mid-seafoam);
  color: #0f2024;
}

.btn-secondary {
  background: rgba(254, 254, 254, 0.15);
  color: var(--white);
  border: 1px solid rgba(254, 254, 254, 0.5);
}

.hero-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  color: #f3fcfd;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.hero-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.hero-btn-wa {
  gap: 0.55rem;
}

.wa-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  color: #fff;
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(2rem, 4.3vw, 3rem);
  margin-bottom: 1rem;
}

.section-light {
  background: linear-gradient(180deg, var(--white), #f5f8f9);
}

.section-accent {
  background: linear-gradient(180deg, #edf5f6, #f7fbfc);
}

.section-dark {
  background: linear-gradient(150deg, #2f555d 0%, #4e7f88 45%, #dfecee 100%);
  color: var(--white);
}

.about-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 80px 20px;
}

.about-text {
  max-width: 860px;
  margin-bottom: 2.5rem;
}

.about-text p {
  color: #3a5a62;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-gallery-item {
  appearance: none;
  padding: 0;
  background: transparent;
  width: 100%;
  border-radius: 12px;
  min-height: 190px;
  border: 1px solid var(--stone-grey-2);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.about-gallery-item:focus-visible {
  outline: 2px solid rgba(110, 162, 162, 0.55);
  outline-offset: 2px;
}

.about-link {
  position: relative;
  color: var(--deep-teal);
  text-decoration: none;
  font: inherit;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.about-link:visited {
  color: var(--deep-teal);
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 162, 162, 0.15), rgba(110, 162, 162, 0.95), rgba(110, 162, 162, 0.15));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.about-link:hover {
  color: #2f555d;
  text-shadow: 0 0 12px rgba(110, 162, 162, 0.25);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.about-link:hover::after,
.about-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.about-link:focus-visible {
  outline: 2px solid rgba(110, 162, 162, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.visit-section {
  position: relative;
  background: linear-gradient(135deg, #4f7c82 0%, #7f9ea3 100%);
  padding: 120px 0;
  overflow: hidden;
}

.visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.12), transparent 50%);
  pointer-events: none;
}

.visit-section .container {
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visit-section > * {
  animation: fadeUp 0.8s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .visit-section > * {
    animation: none;
  }
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-card,
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--stone-grey-2);
  box-shadow: 0 8px 26px rgba(17, 47, 53, 0.08);
}

.about-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.menu-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid var(--stone-grey-2);
}

.menu-card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.menu-note {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: #49666f;
}

.menu-section {
  width: min(1080px, 92vw);
  max-width: none;
  margin: 0 auto;
  padding: 72px 20px;
  text-align: left;
}

#menu {
  position: relative;
  background: linear-gradient(135deg, #4f7c82 0%, #7f9ea3 100%);
  overflow: hidden;
}

#menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.12), transparent 50%);
  pointer-events: none;
}

#menu .menu-section {
  position: relative;
  z-index: 1;
}

#menu .eyebrow,
#menu h2 {
  color: #f2fbfc;
}

.menu-section .menu-grid {
  display: block;
  margin-top: 2rem;
}

.menu-category {
  margin-bottom: 22px;
  scroll-margin-top: 110px;
}

.menu-category h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ebf9fa;
  cursor: pointer;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.menu-category h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(157, 210, 213, 0.15), rgba(157, 210, 213, 0.95), rgba(157, 210, 213, 0.15));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-category h3:hover,
.menu-category h3:focus-visible,
.menu-category.expanded h3 {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(157, 210, 213, 0.35);
}

.menu-category h3:hover::after,
.menu-category h3:focus-visible::after,
.menu-category.expanded h3::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-category h3:focus-visible {
  outline: 2px solid rgba(157, 210, 213, 0.6);
  outline-offset: 4px;
  border-radius: 3px;
}

.menu-category h3::before {
  content: "›";
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 1.1em;
  color: rgba(157, 210, 213, 0.65);
  transition: transform 0.28s ease, color 0.25s ease;
}

.menu-category.expanded h3::before {
  transform: rotate(90deg);
  color: var(--light-aqua);
}

.menu-category h3:hover::before,
.menu-category h3:focus-visible::before {
  color: rgba(157, 210, 213, 0.9);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.2s ease;
}

.menu-category.expanded .menu-list {
  margin-top: 16px;
  opacity: 1;
  pointer-events: auto;
}

.menu-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: #edf7f8;
  text-align: left;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-name {
  flex: 1;
}

.menu-item-price {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #9dd2d5;
  letter-spacing: 0.01em;
}

.menu-item-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(233, 248, 249, 0.8);
  line-height: 1.4;
  text-align: left;
}

#menu .menu-note {
  color: #e3f2f4;
}

#menu .menu-note-highlight {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  appearance: none;
  padding: 0;
  background: transparent;
  width: 100%;
  border-radius: 12px;
  min-height: 190px;
  border: 1px solid var(--stone-grey-2);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(110, 162, 162, 0.55);
  outline-offset: 2px;
}

@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-img-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 13, 15, 0.93);
  z-index: 9999;
  padding-top: 74px;
}

.lightbox.open {
  display: flex;
  animation: lightbox-fade-in 0.22s ease forwards;
}

.lightbox-image {
  max-width: min(1200px, 86vw);
  max-height: calc(92vh - 74px);
  width: auto;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: lightbox-img-in 0.25s ease forwards;
}

.lightbox-nav {
  position: absolute;
  top: calc(50% + 37px);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  color: #f6fdff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  color: #f6fdff;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.lightbox-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.lightbox-zone-left {
  left: 0;
}

.lightbox-zone-right {
  right: 0;
}

@media (max-width: 900px) {
  .lightbox {
    padding-top: 64px;
  }

  .lightbox-image {
    max-height: calc(92vh - 64px);
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    top: calc(50% + 32px);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

.map-embed {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.site-footer {
  background: linear-gradient(180deg, #1b343a, #13282d);
  color: #d5e8ea;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.95rem;
  color: #cde2e5;
}

.footer-btn {
  position: relative;
  color: #f3fcfd;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(157, 210, 213, 0.35);
}

.footer-btn:focus-visible {
  outline: 2px solid rgba(157, 210, 213, 0.55);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(157, 210, 213, 0.15), rgba(157, 210, 213, 0.95), rgba(157, 210, 213, 0.15));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-btn:hover::after,
.footer-btn:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 900px) {
  .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: calc(100svh - 74px);
    background-position: center center;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding: 4rem 1rem 3rem;
  }

  #about {
    background: #ffffff;
  }

  .about-wrap {
    padding: 48px 16px;
  }

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

  #menu .menu-section {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: calc(100svh - 74px);
    box-sizing: border-box;
    text-align: center;
  }

  #menu .menu-category h3 {
    display: table;
    margin: 0 auto;
  }

  #menu .menu-list li,
  #menu .menu-item-desc {
    text-align: center;
  }

  #visit .container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 0;
    box-sizing: border-box;
  }

  .visit-section {
    padding: 72px 0 32px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-intro {
    grid-column: auto;
  }

  .map-embed iframe {
    height: 340px;
  }

  .split,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 4vw;
    top: 64px;
    background: var(--white);
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--stone-grey-2);
    flex-direction: column;
    min-width: 160px;
  }

  .nav-links.open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .visit-contact {
    margin-top: 0;
    height: auto;
    min-height: 340px;
  }

  .brand-logo {
    width: 34px;
    height: 52px;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }
}

.visit-contact {
  margin-top: 0;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}

.contact-details {
  flex: 1;
  display: grid;
  gap: 0.7rem;
}

.contact-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.5rem;
}

.contact-actions .visit-btn {
  white-space: nowrap;
  height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}

.section-dark .contact-card {
  color: #eaf4f5;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.section-dark .contact-card h3 {
  color: #f4fbfc;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  font-family: "Cormorant Garamond", serif;
}

.section-dark .contact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.section-dark .contact-card a {
  color: #c7f0f3;
  text-decoration: none;
}

.section-dark .contact-card a:hover {
  text-decoration: underline;
}

.contact-label {
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.contact-value {
  font-weight: 500;
  opacity: 0.95;
}

.contact-details a[href^="mailto:"] {
  white-space: nowrap;
}

.visit-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  color: #f3fcfd;
  transition: all 0.25s ease;
}

.visit-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.visit-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.visit-btn-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.visit-btn-wa-icon:hover {
  background: #1dbe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.visit-btn-wa-icon:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.visit-intro {
  grid-column: 1 / -1;
  max-width: 760px;
}

.visit-title {
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.visit-description {
  margin-bottom: 60px;
}

.contact-card {
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 18px 18px 0 0;
}

@media (max-width: 900px) {
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .visit-contact {
    min-height: 0;
    width: 100%;
  }

  .section-dark .contact-card {
    padding: 24px;
  }

  .section-dark .contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-dark .contact-card p {
    font-size: 0.9rem;
    line-height: 1.25;
    white-space: nowrap;
  }

  .contact-actions {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.35rem;
  }

  .contact-actions .visit-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    font-size: 0.82rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
}
