@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;1,300;1,400&family=Outfit:wght@300;400;500&display=swap");

:root {
  --forest: #1c2b2e;
  --forest2: #162228;
  --forest3: #243640;
  --moss: #1e3530;
  --teal: #5dcaa5;
  --teal-dim: #3a8a72;
  --teal-glow: rgba(93, 202, 165, 0.1);
  --teal-line: rgba(93, 202, 165, 0.2);
  --sand: #d4c4a0;
  --sand-dim: #a89878;
  --text: #e8f2ee;
  --text2: #8aada4;
  --text3: #4a6a64;
  --border: rgba(93, 202, 165, 0.1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--forest2);
  color: var(--text);
  overflow-x: hidden;
  font-weight: 300;
  cursor: default;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── ORGANIC BLOB ────────────────────────────────── */
.blob-deco {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  pointer-events: none;
  z-index: 0;
}

/* ── LABEL ─────────────────────────────────────── */
.lbl {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}

/* ─────────────────── NAV ───────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    padding 0.5s var(--ease),
    background 0.5s var(--ease);
}
.nav.stuck {
  padding: 1rem 3rem;
  background: rgba(22, 34, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo b {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo small {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-book {
  border: 1px solid var(--teal-line) !important;
  color: var(--teal) !important;
  padding: 0.55rem 1.4rem;
  transition:
    background 0.25s,
    color 0.25s !important;
}
.nav-book:hover {
  background: var(--teal) !important;
  color: var(--forest2) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text2);
  transition: 0.3s;
}

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--forest2);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.drawer.open {
  transform: none;
}
.dx {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--text2);
}
.drawer ul {
  list-style: none;
  text-align: center;
}
.drawer li + li {
  margin-top: 2rem;
}
.drawer a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  transition: color 0.2s;
}
.drawer a:hover {
  color: var(--teal);
}

/* ─────────────────── HERO ───────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* organic bg shape — no photo needed conceptually */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--forest2);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}
/* warm amber overlay on photo — doğa hissi */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(180, 140, 70, 0.18) 0%,
    transparent 55%
  );
}
/* koyu overlay sol + alt */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(22, 34, 40, 0.82) 0%,
      rgba(22, 34, 40, 0.35) 55%,
      rgba(28, 43, 46, 0.15) 100%
    ),
    linear-gradient(to top, rgba(14, 26, 28, 0.92) 0%, transparent 55%);
}
/* big organic blob BG */
.hero-blob {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 55vw;
  height: 70vh;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  border: 1px solid rgba(93, 202, 165, 0.06);
  z-index: 1;
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  right: 5%;
  top: 5%;
  width: 40vw;
  height: 55vh;
  border-radius: 38% 62% 54% 46% / 44% 56% 44% 56%;
  border: 1px solid rgba(93, 202, 165, 0.04);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--teal);
  display: block;
  position: relative;
}
/* teal underline squiggle on em */
.hero-h1 em::after {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, var(--teal), transparent);
  opacity: 0.4;
}

.hero-p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text2);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: var(--teal);
  color: var(--forest2);
  transition:
    background 0.25s,
    transform 0.2s;
  border-radius: 100px;
}
.btn-teal:hover {
  background: #6edab5;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid var(--teal-line);
  color: var(--teal);
  border-radius: 100px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
}

/* floating stats pill */
.hero-pill {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(22, 34, 40, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.hp-item {
  padding: 1rem 1.6rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hp-item:last-child {
  border-right: none;
}
.hp-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 0.2rem;
}
.hp-l {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  display: block;
}

/* ─────────────────── INTRO ─────────────────────── */
.intro {
  position: relative;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.intro-blob {
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 55% 45% 62% 38% / 46% 60% 40% 54%;
  background: radial-gradient(
    ellipse,
    rgba(93, 202, 165, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.intro-left {
  position: relative;
  z-index: 1;
}
.intro-left .lbl {
  margin-bottom: 1.5rem;
}
.intro-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}
.intro-h2 em {
  font-style: italic;
  color: var(--teal);
}
.intro-p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.intro-line {
  width: 48px;
  height: 1px;
  background: var(--teal);
  opacity: 0.3;
  margin: 2rem 0;
}

/* right side: visual card */
.intro-right {
  position: relative;
  z-index: 1;
}
.intro-card {
  aspect-ratio: 4/5;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  position: relative;
}
.intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.intro-card:hover img {
  transform: scale(1.05);
}
.intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(180, 140, 70, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.intro-card-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
  border: 1px solid var(--teal-line);
  background: rgba(93, 202, 165, 0.04);
}

/* ─────────────────── GALLERY ────────────────────── */
.gallery {
  padding: 8rem 0;
  background: var(--forest2);
  overflow: hidden;
}

.gallery-hd {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.gallery-hd .lbl {
  margin-bottom: 0.8rem;
}
.gallery-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
}
.gallery-h2 em {
  font-style: italic;
  color: var(--teal);
}

/* asymmetric masonry-ish */
.g-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 220px 260px;
  gap: 4px;
  padding: 0 4px;
}
.g-cell {
  position: relative;
  overflow: hidden;
}
.g-cell:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
}
.g-cell:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.g-cell:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.g-cell:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}
.g-cell:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}
.g-cell:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}
.g-cell:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
}

/* photo placeholders with warm overlay feel */
.g-cell:nth-child(1) {
  background: #1a3028;
}
.g-cell:nth-child(2) {
  background: #222818;
}
.g-cell:nth-child(3) {
  background: #121e28;
}
.g-cell:nth-child(4) {
  background: #1a2820;
}
.g-cell:nth-child(5) {
  background: #20180e;
}
.g-cell:nth-child(6) {
  background: #12201c;
}
.g-cell:nth-child(7) {
  background: #1a2418;
}

.g-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.g-cell:hover img {
  transform: scale(1.05);
}

/* warm overlay on each cell */
.g-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(190, 150, 80, 0.08),
    transparent 50%
  );
}
.g-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(22, 34, 40, 0.7) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.g-cell:hover::after {
  opacity: 1;
}

.g-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(232, 242, 238, 0.85);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s;
}
.g-cell:hover .g-label {
  opacity: 1;
  transform: none;
}

/* ─────────────────── AMENITIES ─────────────────── */
.amenities {
  padding: 9rem 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.amenities-blob {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 600px;
  height: 600px;
  border-radius: 44% 56% 38% 62% / 58% 42% 58% 42%;
  background: radial-gradient(
    ellipse,
    rgba(93, 202, 165, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.am-hd {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.am-hd .lbl {
  margin-bottom: 0.8rem;
}
.am-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--text);
}
.am-h2 em {
  font-style: italic;
  color: var(--teal);
}

.am-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  position: relative;
  z-index: 1;
}
.am-card {
  padding: 2.5rem 2rem;
  background: rgba(28, 43, 46, 0.6);
  border: 1px solid var(--border);
  transition:
    background 0.35s,
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.am-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(93, 202, 165, 0.06);
  transition:
    transform 0.6s var(--ease),
    opacity 0.4s;
}
.am-card:hover {
  background: rgba(36, 54, 64, 0.8);
  border-color: var(--teal-line);
}
.am-card:hover::before {
  transform: scale(3);
  opacity: 0;
}

.am-ico {
  width: 34px;
  height: 34px;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.am-ico svg {
  width: 100%;
  height: 100%;
}
.am-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.am-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text2);
  font-weight: 300;
}

/* ─────────────────── CALENDAR ──────────────────── */
.cal {
  padding: 9rem 0;
  background: var(--forest2);
  position: relative;
  overflow: hidden;
}
.cal-blob {
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
  background: radial-gradient(
    ellipse,
    rgba(93, 202, 165, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.cal-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cal-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}
.cal-hd .lbl {
  margin-bottom: 0.8rem;
}
.cal-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}
.cal-h2 em {
  font-style: italic;
  color: var(--teal);
}
.cal-sub {
  font-size: 0.88rem;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.cal-box {
  background: rgba(28, 43, 46, 0.5);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cal-box iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: none;
}

.cal-ph {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(93, 202, 165, 0.15);
  border-radius: 24px;
  margin: 0;
}
.cal-ph-in {
  text-align: center;
  padding: 3rem;
  color: var(--text3);
}
.cal-ph-in svg {
  width: 52px;
  height: 52px;
  color: var(--teal);
  opacity: 0.45;
  margin: 0 auto 1.5rem;
}
.cal-ph-in h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text2);
  margin-bottom: 0.7rem;
}
.cal-ph-in p {
  font-size: 0.83rem;
  line-height: 1.7;
}
.cal-ph-in a {
  color: var(--teal);
}
.cal-ph-in code {
  background: rgba(93, 202, 165, 0.08);
  padding: 0.1em 0.4em;
  font-size: 0.8em;
  color: var(--teal);
  border-radius: 4px;
}

.cal-legend {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.2rem 2rem;
  border-top: 1px solid var(--border);
}
.leg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-a {
  background: #5c8c6a;
}
.dot-b {
  background: rgba(93, 202, 165, 0.35);
  border: 1px solid var(--teal);
}
.dot-c {
  background: #7a4a38;
}

.cal-after {
  text-align: center;
  margin-top: 3rem;
}
.cal-after p {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 1.8rem;
}

/* ─────────────────── CONTACT ────────────────────── */
.contact {
  padding: 9rem 0;
  background: var(--forest);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-blob {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 500px;
  height: 500px;
  border-radius: 52% 48% 44% 56% / 48% 52% 58% 42%;
  background: radial-gradient(
    ellipse,
    rgba(93, 202, 165, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.c-left .lbl {
  margin-bottom: 1.2rem;
}
.c-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.c-h2 em {
  font-style: italic;
  color: var(--teal);
}
.c-p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.c-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ci-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.ci-val {
  font-size: 0.9rem;
  color: var(--text2);
}
.ci-val a {
  transition: color 0.2s;
}
.ci-val a:hover {
  color: var(--teal);
}

/* form */
.cf {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cfg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cfg label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
.cfg input,
.cfg textarea {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1.1rem;
  background: rgba(28, 43, 46, 0.6);
  border: 1px solid rgba(93, 202, 165, 0.12);
  color: var(--text);
  outline: none;
  border-radius: 12px;
  transition:
    border-color 0.25s,
    background 0.25s;
  resize: vertical;
}
.cfg input:focus,
.cfg textarea:focus {
  border-color: rgba(93, 202, 165, 0.45);
  background: rgba(36, 54, 64, 0.7);
}
.cfg input::placeholder,
.cfg textarea::placeholder {
  color: var(--text3);
}

.btn-submit {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem;
  width: 100%;
  background: var(--teal);
  color: var(--forest2);
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-submit:hover {
  background: #6edab5;
  transform: translateY(-1px);
}

/* ─────────────────── FOOTER ─────────────────────── */
footer {
  background: var(--forest2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.f-brand b {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
}
.f-brand small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}
.f-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.f-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--teal);
}
.f-copy {
  font-size: 0.65rem;
  color: var(--text3);
}

/* ─────────────────── REVEAL ─────────────────────── */
.r {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.r.on {
  opacity: 1;
  transform: none;
}
.r-left {
  opacity: 0;
  transform: translateX(-26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.r-left.on {
  opacity: 1;
  transform: none;
}
.r-right {
  opacity: 0;
  transform: translateX(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.r-right.on {
  opacity: 1;
  transform: none;
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .am-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }
  .intro-right {
    display: none;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 1.4rem 1.5rem;
  }
  .nav.stuck {
    padding: 0.9rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero-pill {
    display: none;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
  .g-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .g-cell:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .g-cell:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .g-cell:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .g-cell:nth-child(4) {
    grid-column: 1/3;
    grid-row: 3;
  }
  .g-cell:nth-child(5) {
    grid-column: 1;
    grid-row: 4;
  }
  .g-cell:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
  }
  .g-cell:nth-child(7) {
    display: none;
  }
  .am-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .contact-wrap {
    padding: 0 1.5rem;
  }
  .cf2 {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2.8rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .nav {
    padding: 1.2rem 1.2rem;
  }
}

/* ── RentalBell widget overrides ──────────────────── */
/* Reklam banner + "Learn more" + üst legend gizle */
.rentalbell_widget a[href*="rentalbell"],
.rentalbell_widget > div > div:first-child,
.rb_free_ad,
.rb-promo,
[id^="rb_promo"],
[id^="rentalbell_promo"] {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Takvim container temizle */
.rentalbell_widget {
  font-family: var(--sans) !important;
}

/* cal-box padding */
.cal-box > div:first-child {
  padding: 1.5rem 1.5rem 0;
}
