:root {
  --navy:        #0b1f3a;
  --navy2:       #0e2847;
  --gold:        #c9a84c;
  --gold-lt:     #e8d5a0;
  --cream:       #f6f1e9;
  --white:       #ffffff;
  --gray:        #6b6b6b;
  --light:       #f9f7f4;
  --ff-display:  'Cormorant Garamond', serif;
  --ff-body:     'Jost', sans-serif;
  --ease:        cubic-bezier(.4, 0, .2, 1);
}


/* ════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html  { scroll-behavior: smooth; }

body  {
  font-family: var(--ff-body);
  background: #fff;
  color: #222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}


/* ════════════════════════════════════════
   3. SHARED TYPOGRAPHY
════════════════════════════════════════ */
.section-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.section-text {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 8px;
}


/* ════════════════════════════════════════
   4. BUTTONS
════════════════════════════════════════ */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background .3s var(--ease), transform .2s;
}
.btn-primary-dark:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}


/* ════════════════════════════════════════
   5. NAVBAR
════════════════════════════════════════ */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 15px 0;
  transition: box-shadow .3s;
}
#mainNav.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, .07); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.5px;
  color: var(--navy);
}

.navbar-nav .nav-link {
  font-size: 11px !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #333 !important;
  padding: 8px 13px !important;
  position: relative;
  transition: color .25s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active           { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after    { transform: scaleX(1); }

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background .3s, transform .2s;
}
.btn-book:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.navbar-toggler { border: none; box-shadow: none !important; color: var(--navy); }


/* ════════════════════════════════════════
   6. HERO (Homepage)
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: url('image/hero.jpeg') center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,36,.55) 0%, rgba(8,18,36,.3) 45%, rgba(8,18,36,.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 400;
  line-height: .95;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-lt); }

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: .8;
}

.hero-desc {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background .3s, border-color .3s;
}
.hero-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.hero-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .5));
}
.hero-scroll-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}


/* ════════════════════════════════════════
   7. INTRO SECTION
════════════════════════════════════════ */
.intro {
  padding: 130px 0;
  background: var(--white);
  overflow: hidden;
}

.intro-media { position: relative; }

.intro-main-img {
  height: 580px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 40px 40px 0 var(--cream);
}

.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -28px;
  background: #fff;
  padding: 26px 28px;
  width: 290px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .11);
  border-top: 3px solid var(--gold);
}

.badge-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.badge-text {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 0;
}

.intro-body { padding-left: 48px; }

.intro-stats {
  display: flex;
  align-items: center;
  margin-top: 44px;
  border: 1px solid #eee;
  border-radius: 2px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  text-align: center;
}
.stat-item strong {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.stat-divider { width: 1px; background: #eee; align-self: stretch; }


/* ════════════════════════════════════════
   8. TOURS CAROUSEL (Homepage)
════════════════════════════════════════ */
.tours {
  padding: 130px 0 70px;
  background: var(--light);
}

.tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ede9e0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  height: 100%;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0, 0, 0, .09); }

.tour-img-wrap { position: relative; overflow: hidden; }
.tour-img-wrap img {
  height: 340px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.tour-card:hover .tour-img-wrap img { transform: scale(1.05); }

.tour-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
}

.tour-body { padding: 30px 28px 28px; }
.tour-body h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}
.tour-body p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 20px;
}

.tour-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s;
}

.tour-link:hover { gap: 14px; color: var(--gold); }

.tours .owl-dots { margin-top: 16px; text-align: center; }
.tours .owl-dot span {
  width: 6px !important;
  height: 6px !important;
  background: #ccc !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all .3s !important;
}
.tours .owl-dot.active span {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 3px !important;
}
.tours .owl-stage { padding-bottom: 8px; }
.tours .tour-card { margin: 8px 4px; }


/* ════════════════════════════════════════
   9. RENTAL SECTION (Homepage)
════════════════════════════════════════ */
.rental { padding: 130px 0; background: var(--white); }

.rental-checklist {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.rental-checklist li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: var(--navy);
}
.rental-checklist li i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.rental-gallery { position: relative; padding-bottom: 80px; }
.rental-img-main {
  width: 88%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .13);
}
.rental-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .13);
}


/* ════════════════════════════════════════
   10. CTA SECTION
════════════════════════════════════════ */
.cta {
  padding: 80px 0;
  background: url('image/gjipe.jpg') center / cover no-repeat fixed;
  text-align: center;
  position: relative;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,36,.75) 0%, rgba(8,18,36,.5) 50%, rgba(8,18,36,.78) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .3));
  margin: 0 auto 32px;
}
.cta-line:last-child {
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
  margin: 32px auto 0;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 400;
  color: #fff;
  line-height: .97;
  margin: 12px 0 22px;
  letter-spacing: 1px;
}
.cta-title em { font-style: italic; font-weight: 300; color: var(--gold-lt); }

.cta-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.85;
}

.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: border-color .3s, background .3s;
}
.cta-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); color: #fff; }


/* ════════════════════════════════════════
   11. HOTEL / ACCOMMODATION PREVIEW
════════════════════════════════════════ */
.hotel { padding: 130px 0; background: var(--light); }

.hotel-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 540px;
}

.hotel-img-main {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hotel-img-sm-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-img-sm {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  min-height: 0;
}

.hotel-img-badge {
  background: var(--navy);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex-shrink: 0;
}
.hotel-img-badge i       { color: var(--gold); font-size: 22px; }
.hotel-img-badge span    { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .7); }

.hotel-feats {
  display: flex;
  flex-direction: column;
  margin: 28px 0 36px;
}

.hotel-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e2d9;
}
.hotel-feat:first-child { border-top: 1px solid #e8e2d9; }

.hotel-feat > i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hotel-feat strong { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.hotel-feat span   { font-size: 13px; color: var(--gray); }


/* ════════════════════════════════════════
   12. WATER — BOAT & KAYAK PREVIEW
════════════════════════════════════════ */
.water { position: relative; }
.water-bg { background: var(--navy); padding: 130px 0; }

.water-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}
.water-card img { width: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.water-card:hover img { transform: scale(1.04); }
.water-card--large img,
.water-card--tall   img { height: 520px; }

.water-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(8,18,36,.85) 0%, transparent 100%);
}

.water-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201, 168, 76, .4);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.water-card-body h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.water-card-body p { font-size: 14px; line-height: 1.75; color: rgba(255, 255, 255, .65); margin-bottom: 20px; }

.water-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .25s;
}
.water-link:hover { gap: 14px; color: var(--gold); }


/* ════════════════════════════════════════
   13. RESTAURANT PREVIEW (Homepage)
════════════════════════════════════════ */
.restaurant {
  padding: 130px 0 40px;
  background: var(--light);
}

.rest-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 64px;
}

.rest-img-col { position: relative; }
.rest-img-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.rest-location-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rest-location-tag i { color: var(--gold); }

.rest-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rest-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e2d9;
}
.rest-feature:first-child { border-top: 1px solid #e8e2d9; }

.rest-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.rest-feature strong { display: block; font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.rest-feature p { font-size: 14px; line-height: 1.75; color: var(--gray); margin: 0; }

.rest-content-col .btn-primary-dark { margin-top: 32px; align-self: flex-start; }

.rest-strip { margin-top: 40px; overflow: hidden; border-radius: 0 0 2px 2px; }
.rest-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
  transition: filter .4s;
}
.rest-strip img:hover { filter: brightness(1); }


/* ════════════════════════════════════════
   14. WINERY PREVIEW (Homepage)
════════════════════════════════════════ */
.winery { position: relative; }
.winery-hero { position: relative; overflow: hidden; }

.winery-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}

.winery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,18,36,.82) 0%, rgba(8,18,36,.45) 60%, rgba(8,18,36,.15) 100%);
}

.winery-container {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 130px;
}

.winery-offerings { display: flex; flex-direction: column; margin: 36px 0 38px; }

.winery-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.winery-item:first-child { border-top: 1px solid rgba(255, 255, 255, .08); }

.winery-num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.winery-item strong { display: block; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.winery-item p      { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, .48); margin: 0; }

.winery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background .3s, border-color .3s;
}
.winery-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.winery-card { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .10); }
.winery-card img { width: 100%; height: 460px; object-fit: cover; display: block; }

.winery-card-foot {
  padding: 18px 22px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.winery-card-foot span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, .35); }


/* ════════════════════════════════════════
   15. FOOTER
════════════════════════════════════════ */
.footer { background: var(--navy); padding-top: 90px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col--brand .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-col--brand .brand-icon   { background: var(--gold); flex-shrink: 0; }
.footer-col--brand .brand-name   { color: #fff; font-size: 15px; letter-spacing: 2.5px; }

.footer-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  font-size: 15px;
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, .08); }

.footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links li a {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  display: inline-block;
  transition: color .25s, padding-left .25s;
}
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact li > i { font-size: 15px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a,
.footer-contact li span { font-size: 15px; color: rgba(255, 255, 255, .45); text-decoration: none; line-height: 1.6; transition: color .25s; }
.footer-contact li a:hover { color: var(--gold); }

.footer-map { border-radius: 4px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); }
.footer-map iframe {
  width: 100%;
  height: 185px;
  display: block;
  border: none;
  filter: grayscale(30%) brightness(.85);
  transition: filter .3s;
}
.footer-map:hover iframe { filter: grayscale(0%) brightness(1); }

.footer-bottom { background: rgba(0, 0, 0, .25); padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy { font-size: 15px; color: rgba(185, 181, 181, 0.596); letter-spacing: .5px; }

.footer-powered { display: flex; align-items: center; gap: 10px; }
.footer-powered > span { font-size: 15px; color: rgba(185, 181, 181, 0.596); letter-spacing: .5px; }

.powered-logo { display: flex; align-items: center; text-decoration: none; transition: opacity .25s; }
.powered-logo img { height: 30px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }


/* ════════════════════════════════════════
   16. PAGE: TOURS (tours.html)
   ── Shared Hero + Grid ──
════════════════════════════════════════ */
.tp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url('image/boat-tour.jpg') center / cover no-repeat;
}

.tp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,36,.65) 0%, rgba(8,18,36,.45) 100%);
}

.tp-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.tp-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 400;
  line-height: .92;
  color: #fff;
  margin: 20px 0 0;
}
.tp-hero-content h1 em { font-style: italic; font-weight: 300; color: var(--gold-lt); }

.tp-hero-content p {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.9;
  max-width: 480px;
  margin: 0;
}

/* Tours Grid */
.tp-grid-section { padding: 110px 0; background: var(--light); }

.tp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ede9e0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.tp-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0, 0, 0, .09); }

.tp-img-wrap { position: relative; overflow: hidden; }
.tp-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.tp-card:hover .tp-img-wrap img { transform: scale(1.05); }

.tp-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
}

.tp-body {
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tp-meta { display: flex; gap: 18px; margin-bottom: 14px; }
.tp-meta span { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.tp-meta span i { color: var(--gold); font-size: 13px; }

.tp-body h3 {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.tp-body p { font-size: 14.5px; line-height: 1.85; color: var(--gray); flex: 1; margin-bottom: 22px; }

.tp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #f0ebe2;
}

.tp-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: background .3s;
}
.tp-book-btn:hover { background: var(--navy); color: #fff; }

/* Tours CTA */
.tour-cta {
  position: relative;
  padding: 150px 0;
  background: url('image/winery1.jpeg') center / cover no-repeat fixed;
  overflow: hidden;
}
.tour-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,36,.75), rgba(8,18,36,.65));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: auto;
}
.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(54px, 6vw, 92px);
  line-height: .98;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
}
.cta-content p {
  max-width: 560px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.9;
  font-size: 15px;
}


/* ════════════════════════════════════════
   17. PAGE: RENTAL (rental.html)
════════════════════════════════════════ */
.rental-hero {
  background-image: url('image/rental1.jpeg');
}

.rental-cta {
  position: relative;
  padding: 150px 0;
  background: url('image/rental2.jpg') center / cover no-repeat fixed;
  overflow: hidden;
}
.rental-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,36,.78), rgba(8,18,36,.68));
}
.rental-cta .cta-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: auto; }
.rental-cta .cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(54px, 6vw, 92px);
  line-height: .98;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
}
.rental-cta .cta-content h2 em { color: var(--gold); font-style: italic; }
.rental-cta .cta-content p { max-width: 560px; margin: 0 auto 42px; color: rgba(255, 255, 255, .68); line-height: 1.9; font-size: 15px; }
.rental-cta .cta-btns { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.rental-cta .btn-primary-dark {
  background: var(--navy);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: .35s ease;
}
.rental-cta .btn-primary-dark:hover { transform: translateY(-3px); }
.rental-cta .cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: .35s ease;
  backdrop-filter: blur(10px);
}
.rental-cta .cta-ghost:hover { background: rgba(255, 255, 255, .08); }


/* ════════════════════════════════════════
   18. PAGE: ACCOMMODATION (accomodation.html)
════════════════════════════════════════ */
.acc-hero { background-image: url('image/hotel1.jpg'); }

.acc-section { padding: 110px 0; background: var(--light); }

.acc-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.acc-right { display: flex; flex-direction: column; gap: 14px; }

.acc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.acc-prop {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
.acc-prop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.62);
  transition: filter .5s var(--ease), transform .7s var(--ease);
}
.acc-prop:hover img { filter: brightness(.45); transform: scale(1.03); }

.acc-prop--large { height: 652px; }
.acc-prop--small { height: 319px; }
.acc-prop--wide  { height: 300px; }

.acc-prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,36,.35) 0%, rgba(8,18,36,.12) 40%, rgba(8,18,36,.03) 70%, transparent 100%);
  pointer-events: none;
}

.acc-prop-rating {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(11, 31, 58, .85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.acc-prop-rating i { font-size: 9px; }

.acc-prop-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
  z-index: 2;
}

.acc-prop-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201, 168, 76, .4);
  padding: 5px 13px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.acc-prop-body h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 6px;
}
.acc-prop--large .acc-prop-body h3 { font-size: 38px; }

.acc-prop-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.acc-prop-loc i { color: var(--gold); font-size: 12px; }

.acc-prop-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.acc-prop-meta span {
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .5px;
  background: rgba(255, 255, 255, .08);
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.acc-prop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: background .3s, border-color .3s;
}
.acc-prop-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }


/* ════════════════════════════════════════
   19. PAGE: BOAT & KAYAK (boat-kayak.html)
════════════════════════════════════════ */

/* Tab Bar */
.bk-tabs-bar {
  background: #fff;
  border-bottom: 1px solid #ede9e0;
  position: sticky;
  top: 64px;
  z-index: 100;
}
.bk-tabs { display: flex; }
.bk-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: color .25s, border-color .25s;
  margin-bottom: -1px;
}
.bk-tab i { font-size: 14px; }
.bk-tab:hover { color: var(--navy); }
.bk-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

.bk-panel { display: none; }
.bk-panel.active { display: block; }

/* Boat Accordion */
.boat-section { background: var(--light); padding: 100px 0 120px; }
.boat-intro { text-align: center; margin-bottom: 64px; }

.boat-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e2ddd5;
  border-radius: 16px;
  overflow: hidden;
}

.ba-item { border-bottom: 1px solid #e2ddd5; background: #fff; transition: background .3s; }
.ba-item:last-child { border-bottom: none; }
.ba-item.open { background: var(--navy); }

.ba-trigger {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
}

.ba-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #ddd;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  transition: color .3s;
}
.ba-item.open .ba-num { color: var(--gold); }

.ba-label { flex: 1; }
.ba-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  transition: color .3s;
}
.ba-item.open .ba-tag { color: var(--gold-lt); }

.ba-title {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  transition: color .3s;
}
.ba-item.open .ba-title { color: #fff; }

.ba-meta { display: flex; gap: 20px; margin-left: auto; flex-shrink: 0; }
.ba-meta span {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .3s;
}
.ba-meta span i { color: var(--gold); font-size: 13px; }
.ba-item.open .ba-meta span { color: rgba(255, 255, 255, .5); }

.ba-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color .3s, color .3s, transform .4s;
}
.ba-item.open .ba-icon { border-color: rgba(255, 255, 255, .2); color: #fff; transform: rotate(45deg); }

.ba-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}
.ba-item.open .ba-body { grid-template-rows: 1fr; }
.ba-body-inner { overflow: hidden; }

.ba-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 40px 44px;
}

.ba-img { border-radius: 12px; overflow: hidden; height: 300px; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ba-info { padding: 0 0 0 44px; display: flex; flex-direction: column; justify-content: center; }

.ba-desc { font-size: 15px; line-height: 1.85; color: rgba(255, 255, 255, .55); margin-bottom: 28px; }

.ba-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.ba-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.ba-features li i { color: var(--gold); font-size: 14px; flex-shrink: 0; }

.ba-book {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  align-self: flex-start;
  transition: background .3s, transform .2s;
}
.ba-book:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* Kayak Section */
.kayak-accordion-section { background: var(--light); }


/* ════════════════════════════════════════
   20. PAGE: RESTAURANT (restaurant.html)
════════════════════════════════════════ */
.rest-hero { background-image: url('image/restaurant1.jpg'); }

/* Intro Strip */
.rest-intro-strip {
  background: var(--navy);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ris-inner { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.ris-item { display: flex; align-items: center; gap: 10px; padding: 20px 32px; font-size: 13px; color: rgba(255, 255, 255, .55); flex-shrink: 0; }
.ris-item i { color: var(--gold); font-size: 15px; }
.ris-item a { color: rgba(255, 255, 255, .55); text-decoration: none; transition: color .25s; }
.ris-item a:hover { color: var(--gold); }
.ris-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, .1); flex-shrink: 0; }
.ris-cta { margin-left: auto; padding: 14px 24px; }
.ris-cta .btn-book { background: var(--gold); color: var(--navy); }
.ris-cta .btn-book:hover { background: #fff; color: var(--navy); }

/* Philosophy */
.rest-philosophy { padding: 80px 0; background: #fff; }
.rp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.rp-pillars { margin-top: 44px; display: flex; flex-direction: column; gap: 0; }
.rp-pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ede9e0;
}
.rp-pillar:first-child { border-top: 1px solid #ede9e0; }
.rp-pillar-num {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.rp-pillar strong { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.rp-pillar p { font-size: 13.5px; line-height: 1.75; color: var(--gray); margin: 0; }

.rp-img-stack { position: relative; padding-bottom: 60px; }
.rp-img-main { border-radius: 24px; overflow: hidden; height: 520px; }
.rp-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rp-img-float {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 210px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}
.rp-img-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rp-badge {
  position: absolute;
  top: 36px;
  right: -24px;
  background: var(--navy);
  padding: 20px 22px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.rp-badge i { color: var(--gold); font-size: 20px; margin-bottom: 4px; }
.rp-badge-num { font-family: var(--ff-display); font-size: 36px; font-weight: 400; color: #fff; line-height: 1; display: block; }
.rp-badge-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .45); display: block; }

/* Menu Section */
.rest-menu { padding: 110px 0 130px; background: var(--light); }

.menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid #e2ddd5;
  border-radius: 60px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.menu-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 20px;
  background: none;
  border: none;
  border-radius: 60px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: background .3s, color .3s;
  white-space: nowrap;
}
.menu-tab i { font-size: 13px; }
.menu-tab:hover { color: var(--navy); }
.menu-tab.active { background: var(--navy); color: #fff; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 60px; margin-bottom: 48px; }
.menu-col { display: flex; flex-direction: column; gap: 0; }

.menu-item { padding: 22px 0; border-bottom: 1px solid #e2ddd5; position: relative; }
.menu-item:first-child { border-top: 1px solid #e2ddd5; }
.menu-item.featured {
  background: var(--navy);
  border-radius: 14px;
  padding: 22px 24px;
  border: none;
  margin-bottom: 2px;
}
.menu-item.featured:first-child { border-top: none; }
.menu-item.featured + .menu-item { border-top: 1px solid #e2ddd5; }

.mi-top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.mi-name { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--navy); flex-shrink: 0; }
.menu-item.featured .mi-name { color: #fff; }
.mi-dots {
  flex: 1;
  border-bottom: 1px dashed #d0c9bc;
  margin: 0 6px;
  min-width: 20px;
  position: relative;
  top: -4px;
}
.menu-item.featured .mi-dots { border-bottom-color: rgba(255, 255, 255, .15); }
.mi-price { font-size: 13px; font-weight: 500; color: var(--gold); flex-shrink: 0; }
.mi-desc { font-size: 13.5px; line-height: 1.75; color: var(--gray); margin: 0; }
.menu-item.featured .mi-desc { color: rgba(255, 255, 255, .5); }
.mi-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .4);
  padding: 4px 12px;
  border-radius: 30px;
}

.menu-panel-img { position: relative; border-radius: 20px; overflow: hidden; height: 260px; }
.menu-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.65); }
.mpi-label { position: absolute; bottom: 22px; left: 28px; font-family: var(--ff-display); font-size: 28px; font-weight: 300; font-style: italic; color: #fff; }


/* ════════════════════════════════════════
   21. PAGE: WINERY (winery.html)
════════════════════════════════════════ */
.wn-hero { background-image: url('image/winery1.jpeg'); }

/* Story */
.wn-story { padding: 120px 0; background: #fff; }
.wns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.wns-media { position: relative; padding-bottom: 50px; }
.wns-img-main { border-radius: 24px; overflow: hidden; height: 520px; }
.wns-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wns-img-sm {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}
.wns-img-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wns-stat-card {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--gold);
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(201, 168, 76, .35);
}
.wns-stat-num { display: block; font-family: var(--ff-display); font-size: 38px; font-weight: 400; color: #fff; line-height: 1; }
.wns-stat-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-top: 4px; }

.wns-facts { display: flex; align-items: center; margin-top: 40px; border: 1px solid #ede9e0; border-radius: 14px; overflow: hidden; }
.wns-fact { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px 16px; text-align: center; }
.wns-fact strong { font-family: var(--ff-display); font-size: 38px; font-weight: 400; color: var(--navy); line-height: 1; display: block; }
.wns-fact span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 6px; display: block; }
.wns-fact-div { width: 1px; background: #ede9e0; align-self: stretch; }

/* Wine Collection */
.wn-wines { padding: 110px 0; background: var(--light); }
.wine-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.wine-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2ddd5;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.wine-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0, 0, 0, .1); }

.wc-label-band { height: 5px; font-size: 0; }
.wine-card[data-color="white"]  .wc-label-band { background: #e8d89c; }
.wine-card[data-color="red"]    .wc-label-band { background: #8b2035; }
.wine-card[data-color="rose"]   .wc-label-band { background: #e8957a; }
.wine-card[data-color="amber"]  .wc-label-band { background: #c9873c; }

.wc-body { padding: 28px 24px 32px; display: flex; flex-direction: column; gap: 0; }

.wc-bottle { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.wine-card[data-color="white"]  .wc-bottle { background: #faf5e0; color: #9a8540; }
.wine-card[data-color="red"]    .wc-bottle { background: #fdf0f2; color: #8b2035; }
.wine-card[data-color="rose"]   .wc-bottle { background: #fdf0ed; color: #c0674f; }
.wine-card[data-color="amber"]  .wc-bottle { background: #fdf4e8; color: #a86530; }
.wc-bottle i { font-size: 20px; }

.wc-varietal { display: block; font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.wc-name { font-family: var(--ff-display); font-size: 28px; font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 12px; }
.wc-name em { font-style: italic; font-weight: 300; color: var(--gold); }
.wc-notes { font-size: 13.5px; line-height: 1.75; color: var(--gray); margin-bottom: 16px; }

.wc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.wc-tags span { font-size: 9px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); background: var(--light); border: 1px solid #ddd; padding: 4px 10px; border-radius: 30px; }

.wc-pairings { font-size: 12px; color: var(--gray); border-top: 1px solid #ede9e0; padding-top: 14px; line-height: 1.6; }
.wc-pair-label { display: block; font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }

/* Process Steps */
.wn-process { padding: 110px 0; background: var(--navy); }
.wn-process .section-title { color: #fff; }

.wnp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 70px; }
.wnp-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.wnp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .4);
  background: rgba(201, 168, 76, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wnp-line { position: absolute; top: 36px; left: 50%; width: 100%; height: 1px; background: rgba(201, 168, 76, .2); z-index: 1; }
.wnp-line.last { display: none; }
.wnp-text { margin-top: 28px; padding: 0 16px; }
.wnp-num { display: block; font-family: var(--ff-display); font-size: 13px; font-style: italic; color: var(--gold); margin-bottom: 8px; letter-spacing: 2px; }
.wnp-text strong { display: block; font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.wnp-text p { font-size: 13.5px; line-height: 1.75; color: rgba(255, 255, 255, .45); margin: 0; }

/* Tastings */
.wn-tastings { padding: 110px 0 130px; background: var(--light); }
.wnt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.wnt-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2ddd5;
  padding: 38px 32px 36px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wnt-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, .09); }
.wnt-card--featured { background: var(--navy); border-color: var(--navy); transform: translateY(-12px); }
.wnt-card--featured:hover { transform: translateY(-18px); }

.wnt-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); color: var(--gold); font-size: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.wnt-card--featured .wnt-icon { background: rgba(201, 168, 76, .15); }
.wnt-tag { display: block; font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.wnt-card h3 { font-family: var(--ff-display); font-size: 32px; font-weight: 400; color: var(--navy); margin-bottom: 12px; line-height: 1.1; }
.wnt-card--featured h3 { color: #fff; }
.wnt-card > p { font-size: 14px; line-height: 1.8; color: var(--gray); margin-bottom: 22px; }
.wnt-card--featured > p { color: rgba(255, 255, 255, .5); }
.wnt-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }
.wnt-card ul li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--gray); }
.wnt-card ul li i { color: var(--gold); font-size: 14px; }
.wnt-card--featured ul li { color: rgba(255, 255, 255, .55); }

.wnt-book {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: background .3s, transform .2s;
}
.wnt-book:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.wnt-card--featured .wnt-book { background: var(--gold); }
.wnt-card--featured .wnt-book:hover { background: #fff; color: var(--navy); }

.wnt-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
}


/* ════════════════════════════════════════
   22. PAGE: CONTACT (contact.html)
════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url('image/gjipe.jpg') center / cover no-repeat;
}

.ct-section { padding: 110px 0 130px; background: var(--light); }

.ct-intro { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.ct-intro-text { font-size: 15.5px; line-height: 1.95; color: var(--gray); margin-top: 8px; }

.ct-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }

.ct-info-col { display: flex; flex-direction: column; gap: 16px; }

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e2ddd5;
  border-radius: 16px;
  padding: 24px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ct-info-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0, 0, 0, .08); }

.ct-info-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--gold); font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-info-body { display: flex; flex-direction: column; gap: 4px; }
.ct-info-label { font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.ct-info-value { font-size: 15px; color: var(--navy); text-decoration: none; line-height: 1.6; transition: color .25s; }
a.ct-info-value:hover { color: var(--gold); }

.ct-socials { display: flex; align-items: center; gap: 16px; padding: 20px 26px; background: var(--navy); border-radius: 16px; margin-top: 4px; }
.ct-socials-label { font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(185, 181, 181, 0.596); flex-shrink: 0; }
.ct-socials-row { display: flex; gap: 10px; }
.ct-socials-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: 16px;
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.ct-socials-row a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, .1); }

.ct-map-col { position: sticky; top: 90px; }
.ct-map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid #e2ddd5; box-shadow: 0 24px 60px rgba(0, 0, 0, .08); height: 520px; }
.ct-map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }


/* ════════════════════════════════════════
   24. MEDIA QUERIES
   Breakpoints:
   — 1199px  (xl → lg)
   — 991px   (lg → md)  ← Bootstrap lg
   — 768px   (md → sm)  ← Bootstrap md
   — 576px   (sm → xs)  ← Bootstrap sm
   — 480px   (extra small)
════════════════════════════════════════ */

/* ── 1199px ──────────────────────────── */
@media (max-width: 1199px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

}


/* ── 991px ───────────────────────────── */
@media (max-width: 991px) {

  /* Navbar */
  .navbar-collapse   { margin-top: 12px; }
  .navbar-nav .nav-link { padding: 9px 0 !important; }
  .navbar-nav .nav-link::after { left: 0; right: 0; }
  .btn-book          { margin-top: 12px; }

  /* Homepage sections */
  .intro             { padding: 80px 0 100px; }
  .intro-body        { padding-left: 0; margin-top: 56px; }
  .intro-main-img    { height: 400px; box-shadow: 20px 20px 0 var(--cream); }
  .intro-badge       { right: 0; bottom: -20px; width: 240px; }

  .rental            { padding: 80px 0; }
  .rental-gallery    { padding-bottom: 60px; }
  .rental-img-main   { width: 100%; height: 400px; }
  .rental-img-small  { width: 50%; height: 180px; }

  .hotel             { padding: 80px 0; }
  .hotel-imgs        { height: 420px; }

  .water-bg          { padding: 80px 0; }
  .water-card--large img,
  .water-card--tall  img { height: 380px; }

  .restaurant        { padding: 80px 0 0; }
  .rest-layout       { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .rest-img-col img  { height: 380px; }
  .rest-strip img    { height: 180px; }

  .winery-container  { padding-top: 80px; padding-bottom: 80px; }
  .winery-card img   { height: 320px; }

  .cta               { background-attachment: scroll; padding: 100px 0; }

  /* Tours page */
  .tp-grid           { grid-template-columns: 1fr; }
  .tp-hero-content h1 { font-size: clamp(56px, 14vw, 90px); }
  .tour-cta          { background-attachment: scroll; }

  /* Rental page */
  .rental-cta        { padding: 110px 0; background-attachment: scroll; }
  .rental-cta .cta-btns { flex-direction: column; }
  .rental-cta .btn-primary-dark,
  .rental-cta .cta-ghost { width: 100%; justify-content: center; }

  /* Accommodation page */
  .acc-layout        { grid-template-columns: 1fr; }
  .acc-prop--large   { height: 480px; }
  .acc-prop--small   { height: 280px; }
  .acc-row2          { grid-template-columns: 1fr; }
  .acc-prop--wide    { height: 280px; }

  /* Boat & Kayak page */
  .ba-content        { grid-template-columns: 1fr; gap: 24px; }
  .ba-info           { padding: 0; }
  .ba-img            { height: 240px; }
  .ba-meta           { display: none; }

  /* Restaurant page */
  .rp-grid           { grid-template-columns: 1fr; gap: 60px; }
  .rp-img-float      { left: 0; width: 160px; height: 160px; }
  .rp-badge          { right: 0; }
  .rp-img-main       { height: 380px; }
  .rp-img-stack      { padding-bottom: 40px; }

  .ris-inner         { justify-content: center; }
  .ris-divider       { display: none; }
  .ris-item          { padding: 12px 20px; }
  .ris-cta           { margin: 0 auto; padding: 16px 24px; width: 100%; text-align: center; }
  .ris-cta .btn-book { width: 100%; justify-content: center; }

  /* Winery page */
  .wns-grid          { grid-template-columns: 1fr; gap: 60px; }
  .wns-img-main      { height: 380px; }
  .wns-img-sm        { right: 0; width: 160px; height: 160px; }
  .wns-stat-card     { left: 0; }
  .wnt-grid          { grid-template-columns: 1fr; }
  .wnt-card--featured { transform: none; }
  .wnt-card--featured:hover { transform: translateY(-6px); }

  /* Contact page */
  .ct-grid           { grid-template-columns: 1fr; }
  .ct-map-col        { position: static; }
  .ct-map-wrap       { height: 380px; }

}


/* ── 768px ───────────────────────────── */
@media (max-width: 768px) {

  /* Footer */
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Tours page hero */
  .tp-hero-content h1 { font-size: clamp(48px, 12vw, 78px); }

  /* Boat & Kayak page */
  .ba-trigger        { padding: 24px; gap: 16px; }
  .ba-num            { font-size: 36px; min-width: 44px; }
  .ba-title          { font-size: 26px; }
  .ba-content        { padding: 0 24px 32px; }

  /* Restaurant menu tabs */
  .menu-tabs         { border-radius: 16px; }
  .menu-tab          { flex: 0 0 calc(50% - 4px); }
  .menu-split        { grid-template-columns: 1fr; gap: 0; }

  /* Winery process */
  .wnp-steps         { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .wnp-line          { display: none; }

}


/* ── 640px ───────────────────────────── */
@media (max-width: 640px) {

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

}


/* ── 576px ───────────────────────────── */
@media (max-width: 576px) {

  /* Homepage */
  .rental-img-main   { height: 300px; }
  .rental-img-small  { position: relative; width: 100%; margin-top: 16px; height: 200px; border: 4px solid #fff; }
  .rental-gallery    { padding-bottom: 0; }

  .hotel-imgs        { grid-template-columns: 1fr; height: auto; }
  .hotel-img-main    { grid-row: auto; height: 280px; }
  .hotel-img-sm      { height: 160px; }
  .hotel-img-badge   { padding: 16px; }

  .rest-strip img    { height: 160px; }

  /* Accommodation page */
  .acc-prop--large   { height: 400px; }
  .acc-prop--small   { height: 260px; }
  .acc-prop-body h3  { font-size: 24px; }
  .acc-prop--large .acc-prop-body h3 { font-size: 28px; }

  /* Contact page */
  .ct-section        { padding: 80px 0 100px; }
  .ct-intro          { margin-bottom: 56px; }
  .ct-map-wrap       { height: 300px; }

  /* Winery page */
  .wine-cards        { grid-template-columns: 1fr; }
  .wnt-grid          { grid-template-columns: 1fr; }

}


/* ── 480px ───────────────────────────── */
@media (max-width: 480px) {

  /* Restaurant menu tabs */
  .menu-tab { flex: 0 0 100%; }

  /* Winery process */
  .wnp-steps { grid-template-columns: 1fr; gap: 40px; }

}