:root{
  --bg: #0b7f86;        /* teal brand background */
  --bg-2: #0b7f86;      /* light section */
  --text: #0e1111;
  --muted: #ffffff;
  --card: #ffffff;
  --border: rgba(14,17,17,0.12);
  --shadow: 0 12px 30px rgba(0,0,0,0.12);
  --radius: 18px;
  --max: 1080px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.55;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.arrival-headline{
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  margin: 6px 0 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--bg);
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.skip-link:focus{ left: 12px; z-index: 999; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
}
.brand-mark{
  display:inline-flex;
  width: 40px;
  height: 40px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: var(--bg);
  color: #fff;
  font-weight: 800;
}

.brand-name{ font-weight: 800; letter-spacing: 0.2px; color: var(--bg); }
.brand-sub{ font-size: 13px; color: var(--text); }

.nav{ display:flex; gap: 10px; }
.nav-link{
  text-decoration:none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover{
  background: var(--bg);
  color: #ffffff;
  border-color: var(--bg);
  transition: 0.2s ease;
}
.nav-link.active{
  background: var(--bg);
  color: #ffffff;
  border-color: var(--bg);
}

.brand-logo{
  height: 40px;
  width: auto;
  display: block;
}

.hero-copy{
  display: flex;
  flex-direction: column;
}

.owners{
  margin-top: 28px;
}

.owners-title{
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.owners-grid{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.owner{
  max-width: 220px;
}

.owner img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.owner h4{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.owner p{
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.hero{
  background: linear-gradient(135deg, var(--bg), #0a6a70);
  color: #fff;
  padding: 52px 0;
  width: 80%;
  margin: 60px auto;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;                /* covers full hero */
  background-image: url("assets/logo.png");
  background-repeat: repeat;
  background-size: 180px;  /* adjust for spacing */
  opacity: 0.07;           /* keep your original */
  pointer-events: none;
  z-index: 0;
}

.hero .btn-primary {
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}

.hero .btn-primary:hover,
.cta .btn-primary:hover {
  background: #0a6a70;
  transform: translateY(-2px);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.hero h1{ margin: 0 0 10px; font-size: clamp(28px, 4vw, 44px); line-height: 1.12; }
.lead{ font-size: 18px; opacity: 0.95; margin: 0 0 18px; }

.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.meta{
  list-style:none;
  margin: 16px 0 0;
  padding: 0;
  display:grid;
  gap: 6px;
  opacity: 0.95;
}
.meta a{ color: #fff; }

.social-buttons{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.card{
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card .card{ margin-top: 6px; }

.tag{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,127,134,0.12);
  border: 1px solid rgba(11,127,134,0.25);
  margin: 0 0 10px;
}

/* Location hero card layout */
.location-top{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.address{
  font-style: normal;
  margin: 8px 0 14px;
  line-height: 1.4;
  font-weight: 600;
}

.location-image{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.map-container{
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.section{ padding: 44px 0; }


.section-head{ margin-bottom: 18px; }
.section-head h1, .section-head h2{ margin: 0 0 6px; }
.muted{ color: var(--muted); }

.two-col{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.panel{
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  list-style: none;
  align-self: center;
}

.checklist{
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: none;
}
.checklist li{ margin: 8px 0; }

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item{
  margin: 0;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.gallery img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display:block;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
  background: var(--bg);
  color: #0a6a70;
}

.cta h2,
.cta p{
  color: #ffffff;
}

.cta .btn-primary {
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

.form.card {
  border: 2px solid var(--bg);
  box-shadow: 0 12px 30px rgba(11,127,134,0.15);
}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-card{
  background: #0b7f86;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.menu-card h2{ margin: 0 0 12px;
  text-align: center;
 }

.menu-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content:space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.menu-item:first-of-type{ border-top: 0; padding-top: 0; }
.menu-item h3{ margin: 0 0 4px; font-size: 16px; }
.price{ font-weight: 800; white-space: nowrap; }

.form{ max-width: 720px; }
.field{ display:grid; gap: 6px; margin-bottom: 14px; }
label{ font-weight: 600; }
input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 2px solid rgba(11,127,134,0.25);
  background: #ffffff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(11,127,134,0.18);
}

.form-actions{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}

.notice{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: #ffffff;
}

.notice h2 {
  color: #ffffff;
}

.notice .muted {
  color: rgba(255,255,255,0.85);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  background: var(--bg);
  color: #ffffff;
  border: 2px solid var(--bg);
  padding: 14px 22px;
  font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(11,127,134,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: #0a6a70;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11,127,134,0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(11,127,134,0.25);
}

.text-link{
  font-weight: 700;
  color: var(--bg);
  text-decoration: none;
}

.text-link:hover{ text-decoration: underline; }

.fineprint{
  font-size: 13px;
  color: var(--bg);
  margin: 10px 0 0;
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.gallery img {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}
/* Responsive */
@media (max-width: 600px){
  .header-inner{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .brand{
    width: 100%;
    justify-content: center;
  }

  .nav{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-link{
    padding: 8px 10px;
    font-size: 14px;
  }
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .menu-grid{ grid-template-columns: 1fr; }
  .gallery img{ height: 170px; }

  .location-top{
    grid-template-columns: 1fr;
  }

  .location-image{
    margin-top: 16px;
  }
    .owners{
    justify-content: center;
  }

  .owners img{
    width: 100px;
    height: 100px;
  }
}