/* ═══════════════════════════════════════════════════
   KONAK BUTIK OTEL — Styles
   Colors: Brown #5C3D2E, Teal #2AABB3, Cream #FAF6F1
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown-900: #3A2218;
  --brown-800: #4A2F1F;
  --brown-700: #5C3D2E;
  --brown-600: #6E4D3B;
  --brown-500: #8B6B54;
  --brown-400: #A89080;
  --brown-300: #C4B5A9;
  --brown-200: #DDD3CA;
  --brown-100: #EDE7E1;

  --teal-700: #1E8A91;
  --teal-600: #239DA4;
  --teal-500: #2AABB3;
  --teal-400: #4DC3CA;
  --teal-300: #7DD6DB;
  --teal-200: #B0E6E9;
  --teal-100: #DFF5F6;

  --cream: #FAF6F1;
  --cream-dark: #F0EAE1;
  --white: #FFFFFF;
  --black: #1A1410;
  --text: #3A2C22;
  --text-light: #7A6B60;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 80px;
  --container-max: 1280px;
  --section-pad: 120px;
  --section-pad-mobile: 72px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

[x-cloak] {
  display: none !important;
}

/* ─── Utility ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-pad) 0;
  }
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  margin-bottom: 16px;
}

.section__label--light {
  color: var(--teal-300);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  color: var(--brown-700);
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: balance;
}

.section__title em {
  font-style: italic;
  color: var(--teal-600);
}

.section__title--light {
  color: var(--cream);
}

.section__title--light em {
  color: var(--teal-300);
}

.section__title--center {
  text-align: center;
}

.section__intro {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.group {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.centre {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Navigation ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.nav--scrolled {
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(92, 61, 46, 0.08);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 48px;
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  transition: filter 0.3s;
}

.nav--scrolled .nav__logo-img {
  filter: none;
}

.nav:not(.nav--scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav:not(.nav--scrolled) .nav__link {
  color: var(--white);
}

.nav--scrolled .nav__link {
  color: var(--brown-700);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-500);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 24px;
  border: 1.5px solid currentColor;
  border-radius: 0;
  transition: all 0.3s;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--white) !important;
}

/* Language Switcher */
.language-switcher {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (min-width: 1024px) {
  .language-switcher {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .language-switcher {
    color: var(--white);
    display: flex;
    align-self: center;
    margin: 1em;
    position: absolute;
    bottom: 1em;
  }

  .language-switcher a {
    color: var(--white) !important;
  }
}

.language-switcher a {
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav:not(.nav--scrolled) .language-switcher a {
  color: var(--white);
}

.nav--scrolled .language-switcher a {
  color: var(--brown-700);
}

.language-switcher a:hover {
  background: rgba(42, 171, 179, 0.1);
}

.language-switcher a.active {
  background: var(--teal-500);
  color: var(--white) !important;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

@media (min-width: 1024px) {
  .nav__burger {
    display: none;
  }
}

.nav__burger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav--scrolled .nav__burger-line {
  background: var(--brown-700);
}

.nav__burger-line--open:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger-line--open:nth-child(2) {
  opacity: 0;
}

.nav__burger-line--open:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 34, 24, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  height: 100dvw;
  width: 100dvw;
  max-height: 100dvh;
  max-width: 100dvw;
  min-height: 100dvh;
  min-width: 100dvw;

  opacity: 100 !important;
}

.nav__mobile--enter {
  transition: opacity 0.3s ease;
}
.nav__mobile--enter-start {
  opacity: 0;
}
.nav__mobile--enter-end {
  opacity: 1;
}
.nav__mobile--leave {
  transition: opacity 0.2s ease;
}
.nav__mobile--leave-start {
  opacity: 1;
}
.nav__mobile--leave-end {
  opacity: 0;
}

.nav__mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.3s;
}

.nav__mobile-link:hover {
  color: var(--teal-400);
}

.nav__mobile-link--cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  border: 1.5px solid var(--teal-400);
  color: var(--teal-400);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.4) 0%,
    rgba(26, 20, 16, 0.2) 40%,
    rgba(26, 20, 16, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero__ornament {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}

.hero__ornament-svg {
  width: 120px;
  height: 20px;
  color: var(--teal-400);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal-300);
  margin-bottom: 8px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero__scroll {
  display: inline-block;
  margin-top: 48px;
  width: 1px;
  height: 64px;
  position: relative;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal-400), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── About ────────────────────────────────────── */
.about__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about__lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--brown-700);
  margin-bottom: 20px;
}

.about__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.about__instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 2px solid var(--teal-500);
  border-radius: 6px;
  color: var(--teal-600);
  font-size: 0.9375rem;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.about__instagram-btn svg {
  flex-shrink: 0;
}

.about__instagram-btn:hover {
  background: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 171, 179, 0.2);
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__image-accent {
  position: absolute;
  top: 20px;
  right: -16px;
  bottom: -20px;
  left: 16px;
  border: 2px solid var(--teal-500);
  z-index: 0;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .about__image-accent {
    display: none;
  }
}

/* ─── Features ─────────────────────────────────── */
.features {
  background: var(--brown-700);
  position: relative;
  overflow: hidden;
}

.features__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px);
  background-size: 40px 40px;
}

.features__grid {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.feature {
  position: relative;
  z-index: 1;
}

.feature__icon {
  width: 48px;
  height: 48px;
  color: var(--teal-400);
  margin-bottom: 20px;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--brown-300);
  line-height: 1.65;
}

/* ─── Rooms ────────────────────────────────────── */
.rooms {
  background: var(--white);
}

.rooms__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.room-card {
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out);
}

.room-card:hover {
  box-shadow: 0 20px 60px rgba(92, 61, 46, 0.12);
}

.room-card__image-wrap {
  overflow: hidden;
  height: 320px;
}

.room-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.room-card__image--hover {
  transform: scale(1.05);
}

.room-card__body {
  padding: 32px;
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown-700);
  margin-bottom: 12px;
}

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-card__amenities li {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brown-600);
  background: var(--white);
  border: 1px solid var(--brown-200);
}

/* Amenities strip */
.amenities-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--brown-200);
}

.amenities-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-500);
}

.amenities-strip__dot {
  width: 6px;
  height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Image Break ──────────────────────────────── */
.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.55);
}

.image-break__quote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 32px;
  text-align: center;
}

.image-break__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
}

/* ─── Dining ───────────────────────────────────── */
.dining {
  background: var(--cream);
}

.dining__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .dining__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.dining__images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
}

.dining__img-main-wrap {
  height: 480px;
  overflow: hidden;
}

.dining__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining__img-secondary-wrap {
  height: 480px;
  overflow: hidden;
}

.dining__img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining__lead {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--brown-700);
  line-height: 1.6;
  margin-bottom: 32px;
}

.dining__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dining__feature {
  padding-left: 20px;
  border-left: 2px solid var(--teal-500);
}

.dining__feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown-700);
  margin-bottom: 6px;
}

.dining__feature p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Gallery ──────────────────────────────────── */
.gallery {
  background: var(--white);
  overflow: hidden;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr); /* was 3 */
    gap: 6px;
  }
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 280px;
}

@media (min-width: 768px) {
  .gallery__item {
    height: 360px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 2;
    height: 100%;
  }
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(92, 61, 46, 0);
  transition: background 0.4s;
}

.gallery__item:hover::after {
  background: rgba(92, 61, 46, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.lightbox__close:hover {
  color: var(--teal-400);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
}

/* ─── Explore ──────────────────────────────────── */
.explore {
  background: var(--cream);
}

.explore__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .explore__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.explore__card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.explore__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(92, 61, 46, 0.1);
}

.explore__card-image-wrap {
  overflow: hidden;
  height: 200px;
}

.explore__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.explore__card:hover .explore__card-image {
  transform: scale(1.06);
}

.explore__card {
    display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.explore__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.explore__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown-700);
  margin-bottom: 8px;
}

.explore__card-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.explore__card-distance {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* ─── Business Strip ───────────────────────────── */
.business-strip {
  background: var(--brown-800);
  position: relative;
  overflow: hidden;
}

.business-strip__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.business-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .business-strip__grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (min-width: 1024px) {
  .business-strip__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}

.business-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
}

.business-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--teal-400);
}

.business-strip__icon svg {
  width: 100%;
  height: 100%;
}

.business-strip .contact-btn {
  display: flex; justify-content: center;
  padding: 2rem 0;
  z-index: 1;
  position: relative;
}

/* ─── Contact ──────────────────────────────────── */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.contact__desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact__detail-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-600);
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.contact__detail a {
  transition: color 0.3s;
}

.contact__detail a:hover {
  color: var(--teal-600);
}

.contact__map-wrap {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.contact__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.8), transparent);
}

.contact__map-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 500;
}

.contact__map-sub {
  font-size: 0.875rem;
  color: var(--brown-300);
  margin-top: 4px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--teal-500);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 171, 179, 0.25);
}

.btn--secondary {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn--secondary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 171, 179, 0.25);
}

/* ─── Footer ───────────────────────────────────── */
.footer {
  background: var(--brown-900);
  color: var(--brown-300);
  padding: 0 0 40px;
}

.footer__top-ornament {
  padding: 0 48px;
  color: var(--brown-600);
  overflow: hidden;
  height: 30px;
  margin-bottom: 60px;
}

.footer__ornament-svg {
  width: 100%;
  height: 30px;
}

.footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--brown-400);
}

.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--brown-400);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 0.875rem;
}

.footer__links a {
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--teal-400);
}

.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: var(--brown-500);
  text-align: center;
}

/* TBH Footer */


	#footer_tbg_section {
		display: flex;
		flex-direction: column;
		gap: 0.5em;
		justify-content: center;

		font-size: 13px;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		font-weight: 400;
	}

	#footer_tbg_section div {
		margin: 0;
		padding: 0;
		line-height: 1rem;
	}

	#footer_tbg_section .footer_tbh,
	#footer_tbg_section .footer_tbg {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	#footer_tbg_section h3 {
		margin: .5em;
		padding: 0;
		color: inherit;
		font: inherit;
	}

	#footer_tbg_section svg {
		height: 40px;
		margin: 0;
		padding: 0;
    filter: brightness(0) invert(1);
	}

	#footer_tbg_section a {
		padding: 0;
		margin: 0;
		text-decoration: none;
		color: inherit;
		font: inherit;
		font-size: 18px;
	}



/* ─── Scroll animations (applied via JS) ───────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-left--visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-right--visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Stagger for grid children ────────────────── */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger--visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger--visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger--visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger--visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Turkish geometric border pattern ─────────── */
.turkish-border {
  height: 8px;
  background: 
    repeating-linear-gradient(
      90deg,
      var(--teal-500) 0px,
      var(--teal-500) 8px,
      transparent 8px,
      transparent 16px
    );
  opacity: 0.3;
}
