:root {
  --cream: #f3efe6;
  --paper: #faf7f0;
  --ink: #191512;
  --wine: #611f28;
  --gold: #b69353;
  --line: rgba(25, 21, 18, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.18em;
}
.brand span {
  font-family: "Cormorant Garamond";
  font-size: 31px;
  line-height: 0.8;
}
.brand small {
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: 0.48em;
  padding-left: 0.48em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 19px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
}
.hero {
  position: relative;
  min-height: 850px;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/ramani-mekan.jpg")
    center 58% / cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 9, 8, 0.76), rgba(20, 9, 8, 0.13) 70%),
    linear-gradient(0deg, rgba(15, 9, 7, 0.42), transparent 40%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: 10vw;
  padding-top: 60px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(78px, 10vw, 150px);
  line-height: 0.72;
  letter-spacing: -0.04em;
  margin-bottom: 42px;
}
.hero h1 em,
.section h2 em {
  color: #d4b270;
  font-weight: 500;
}
.lead {
  font-family: "Cormorant Garamond";
  font-size: 23px;
  line-height: 1.45;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.hero-hours {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.button {
  padding: 17px 25px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  border: 1px solid rgba(255, 255, 255, 0.58);
}
.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #191512;
}
.scroll {
  position: absolute;
  right: 5vw;
  bottom: 45px;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.scroll span {
  font-size: 18px;
  margin-left: 10px;
}
.section {
  padding: 130px 10vw;
  position: relative;
}
.section-index {
  position: absolute;
  right: 6vw;
  top: 105px;
  font-family: "Cormorant Garamond";
  font-size: 14px;
  color: var(--gold);
}
.burgundy {
  color: var(--wine);
}
.manifesto h2,
.menu-teaser h2,
.visit h2 {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin-bottom: 70px;
}
.manifesto h2 em,
.menu-teaser h2 em,
.visit h2 em {
  color: var(--wine);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12vw;
  margin-left: 17vw;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  line-height: 1.8;
}
.manifesto-grid .intro {
  font-family: "Cormorant Garamond";
  font-size: 26px;
  line-height: 1.4;
}
.experience {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 760px;
}
.feature {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.feature-image {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}
.feature:hover .feature-image {
  transform: scale(1.025);
}
.food {
  background: url("assets/ramani-sote.jpg")
    center/cover;
}
.lounge {
  background: url("assets/ramani-salata.jpg")
    center/cover;
}
.feature-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(440px, 75%);
  padding: 43px;
  background: var(--paper);
}
.feature-card.dark {
  background: var(--wine);
  color: #fff;
}
.feature-card span,
.menu-grid span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature-card h3 {
  font-size: 42px;
  margin: 12px 0 10px;
}
.feature-card p {
  line-height: 1.7;
  margin: 0;
}
.menu-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.menu-heading a {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--wine);
  padding-bottom: 8px;
  margin-bottom: 82px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.menu-grid article {
  padding: 36px 38px 20px 0;
  border-right: 1px solid var(--line);
  min-height: 230px;
}
.menu-grid article + article {
  padding-left: 38px;
}
.menu-grid article:last-child {
  border: 0;
}
.menu-grid h3 {
  font-size: 34px;
  margin: 18px 0 13px;
}
.menu-grid p {
  line-height: 1.7;
  color: #574e48;
}
.quote-band {
  background: var(--wine);
  color: #fff;
  text-align: center;
  padding: 105px 20px;
}
.quote-band p {
  font-family: "Cormorant Garamond";
  font-size: clamp(36px, 5vw, 70px);
  font-style: italic;
  margin-bottom: 24px;
}
.quote-band span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.35em;
}
.quote-band a {
  display: inline-block;
  color: var(--gold);
  border-bottom: 1px solid rgba(182, 147, 83, 0.7);
  padding-bottom: 7px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}
.visit h2 {
  margin-bottom: 42px;
}
.visit-image {
  height: 690px;
  background: url("assets/ramani-tavuk.jpg")
    center/cover;
}
.address {
  font-family: "Cormorant Garamond";
  font-size: 24px;
}
.hours-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hours-line strong {
  color: var(--wine);
}
.visit-links {
  display: flex;
  flex-direction: column;
  margin: 32px 0;
}
.visit-links a {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.note {
  font-size: 10px;
  color: #766c64;
  line-height: 1.6;
}
.footer-brand {
  align-items: flex-start;
}
footer {
  background: #171311;
  color: #fff;
  padding: 55px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p,
footer > a:last-child {
  font-size: 10px;
  color: #aaa19b;
}
.mobile-menu {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 86px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    padding: 28px 6vw;
    background: #221817;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    margin: 0 7vw;
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 72px;
    line-height: 0.8;
  }
  .section {
    padding: 90px 7vw;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 18px;
  }
  .experience {
    grid-template-columns: 1fr;
  }
  .feature {
    min-height: 580px;
  }
  .menu-heading {
    display: block;
  }
  .menu-heading a {
    display: inline-block;
    margin: -35px 0 50px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid article,
  .menu-grid article + article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }
  .visit {
    grid-template-columns: 1fr;
  }
  .visit-image {
    height: 470px;
    grid-row: 1;
  }
  .section-index {
    top: 70px;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    z-index: 30;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--gold);
    color: #171311;
    text-align: center;
    padding: 17px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.15em;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  }
  footer {
    padding-bottom: 95px;
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Ramani'ye ait gerçek fotoğraflar */
.hero-image {
  background-image: url("assets/ramani-mekan.jpg");
  background-position: center 48%;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 9, 8, 0.82), rgba(20, 9, 8, 0.18) 72%),
    linear-gradient(0deg, rgba(15, 9, 7, 0.44), transparent 45%);
}
.food {
  background-image: url("assets/ramani-sote.jpg");
}
.lounge {
  background-image: url("assets/ramani-salata.jpg");
}
.visit-image {
  background-image: url("assets/ramani-tavuk.jpg");
}
.visit-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.visit-links a span {
  color: #766c64;
  font-size: 9px;
}
.visit-links a strong {
  font-weight: 600;
  text-align: right;
}
.food-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--paper);
}
.food-gallery figure {
  height: 420px;
  margin: 0;
  overflow: hidden;
}
.food-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.food-gallery figure:hover img {
  transform: scale(1.025);
}
.food-gallery .portrait img {
  object-position: center;
}
.family-events {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: end;
  background: var(--wine);
  color: #fff;
}
.family-events .section-index,
.family-events .eyebrow {
  color: var(--gold);
}
.family-events h2 {
  margin: 0 0 38px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.86;
  letter-spacing: -0.035em;
}
.family-events h2 em {
  color: #d4b270;
}
.family-copy > p:not(.eyebrow) {
  max-width: 600px;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.family-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.family-facts article {
  min-height: 150px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.family-facts strong {
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-weight: 500;
  color: var(--gold);
}
.family-facts span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .visit-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .visit-links a strong {
    text-align: left;
  }
}
@media (max-width: 760px) {
  .family-events {
    grid-template-columns: 1fr;
  }
  .family-facts article {
    min-height: 120px;
    padding: 23px;
  }
  .food-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .food-gallery figure {
    height: 270px;
  }
  .food-gallery figure:last-child {
    grid-column: 1/-1;
  }
}

/* Telefon, tablet ve tarayıcı uyumluluğu */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.button,
.nav-toggle,
.mobile-menu,
.visit-links a {
  touch-action: manipulation;
}
.hero {
  min-height: 850px;
  height: 100vh;
  height: 100svh;
}

@media (hover: none) {
  .feature:hover .feature-image,
  .food-gallery figure:hover img {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-header nav {
    gap: 20px;
  }
  .section {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .manifesto-grid {
    margin-left: 10vw;
    gap: 8vw;
  }
  .family-events {
    gap: 6vw;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: calc(82px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-left: max(6vw, env(safe-area-inset-left));
    padding-right: max(6vw, env(safe-area-inset-right));
  }
  .site-header nav {
    top: calc(82px + env(safe-area-inset-top));
    max-height: calc(100svh - 82px - env(safe-area-inset-top));
    overflow-y: auto;
    gap: 0;
    padding: 14px max(6vw, env(safe-area-inset-right)) 24px max(6vw, env(safe-area-inset-left));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }
  .site-header nav a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .site-header nav .nav-cta {
    margin-top: 14px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav-toggle {
    min-width: 48px;
    min-height: 48px;
    padding: 0;
  }
  body.nav-open {
    overflow: hidden;
  }
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    width: min(86vw, 670px);
    margin-left: max(7vw, env(safe-area-inset-left));
    margin-right: max(7vw, env(safe-area-inset-right));
  }
  .hero-image {
    background-position: 56% center;
  }
  .experience {
    min-height: 0;
  }
  .feature-card {
    width: min(470px, 86%);
  }
  .family-events {
    grid-template-columns: 1fr;
  }
  .family-facts {
    margin-top: 24px;
  }
  .mobile-menu {
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer {
    padding-left: max(7vw, env(safe-area-inset-left));
    padding-right: max(7vw, env(safe-area-inset-right));
    padding-bottom: calc(95px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .brand span {
    font-size: 27px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-copy {
    padding-top: 82px;
  }
  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 0.82;
    margin-bottom: 28px;
  }
  .lead {
    font-size: 20px;
    line-height: 1.35;
  }
  .hero-actions,
  .event-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }
  .button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
  }
  .scroll {
    display: none;
  }
  .section {
    padding: 76px 6vw;
  }
  .section-index {
    top: 52px;
    right: 6vw;
  }
  .eyebrow {
    margin-bottom: 20px;
  }
  .manifesto h2,
  .menu-teaser h2,
  .visit h2,
  .family-events h2 {
    font-size: clamp(45px, 14vw, 64px);
    line-height: 0.9;
    margin-bottom: 40px;
  }
  .manifesto h2 br,
  .visit h2 br {
    display: none;
  }
  .manifesto-grid {
    margin-left: 0;
    padding-top: 24px;
  }
  .manifesto-grid .intro,
  .family-copy > p:not(.eyebrow) {
    font-size: 22px;
  }
  .feature {
    min-height: 500px;
  }
  .feature-card {
    width: 92%;
    padding: 28px 24px;
  }
  .feature-card h3 {
    font-size: 35px;
  }
  .food {
    background-position: 58% center;
  }
  .lounge {
    background-position: center;
  }
  .menu-heading a {
    margin: -14px 0 36px;
  }
  .menu-grid h3 {
    font-size: 31px;
  }
  .family-facts article {
    min-height: 110px;
    padding: 20px;
  }
  .family-facts strong {
    font-size: 30px;
  }
  .food-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .food-gallery figure,
  .food-gallery figure:last-child {
    grid-column: auto;
    height: min(78vw, 340px);
  }
  .quote-band {
    padding: 76px 6vw;
  }
  .quote-band p {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 1.02;
  }
  .visit-image {
    height: min(115vw, 520px);
    background-position: 58% center;
  }
  .hours-line {
    align-items: center;
  }
  .visit-links a {
    min-height: 58px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 51px;
  }
  .hero-copy {
    margin-left: 20px;
    margin-right: 20px;
  }
  .family-facts {
    grid-template-columns: 1fr;
  }
  .family-facts article {
    min-height: 94px;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 950px) {
  .hero {
    min-height: 620px;
    height: auto;
  }
  .hero-copy {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
