:root{
  --kety-bg: #111111;
  --kety-bg-soft: #171717;
  --kety-surface: #1b1b1b;
  --kety-surface-2: #222222;
  --kety-card: #e9dfd2;
  --kety-card-soft: #e7ddd0;

  --kety-text: #f5f1e8;
  --kety-text-soft: #d9cfbf;
  --kety-text-muted: #bbaea0;
  --kety-body: #2f2924;
  --kety-body-soft: #6a5e53;

  --kety-accent: #c9a96a;
  --kety-accent-2: #a67c52;
  --kety-accent-3: #e5c78c;

  --kety-border: rgba(201, 169, 106, 0.18);
  --kety-border-soft: rgba(255,255,255,0.08);

  --kety-radius-xs: 12px;
  --kety-radius-sm: 18px;
  --kety-radius: 24px;
  --kety-radius-lg: 32px;
  --kety-radius-xl: 40px;

  --kety-container: 1240px;

  --kety-shadow-sm: 0 12px 30px rgba(0,0,0,.08);
  --kety-shadow: 0 24px 60px rgba(0,0,0,.14);
  --kety-shadow-lg: 0 40px 90px rgba(0,0,0,.20);

  --kety-transition: .32s ease;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--kety-body);
  background: #ece2d6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  position: relative;
  isolation: isolate;
}

body.admin-bar .kety-header{
  top: 32px;
}

a{
  color: inherit;
  text-decoration: none;
  transition: color var(--kety-transition), opacity var(--kety-transition), transform var(--kety-transition), border-color var(--kety-transition), background-color var(--kety-transition);
}

img{
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input,
select,
textarea{
  font: inherit;
}

button{
  cursor: pointer;
}

ul,
ol{
  margin: 0;
  padding: 0;
}

p{
  margin: 0 0 1rem;
}

h1,h2,h3,h4,h5,h6{
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.kety-container{
  width: min(var(--kety-container), calc(100% - 32px));
  margin: 0 auto;
}

.kety-section{
  position: relative;
  padding: 96px 0;
}

.kety-section--light{
  background: linear-gradient(180deg, #efe7dc 0%, #e7ddd0 100%);
}

.kety-section--dark{
  background: linear-gradient(180deg, var(--kety-bg-soft) 0%, #101010 100%);
  color: var(--kety-text);
}

.kety-page-shell{
  padding: 52px 0 88px;
}

.kety-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: var(--kety-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kety-eyebrow--dark{
  background: rgba(201,169,106,.10);
  border-color: rgba(201,169,106,.18);
  color: var(--kety-accent-2);
}

.kety-section-head{
  max-width: 760px;
  margin: 0 0 40px;
}

.kety-section-head--center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kety-section-title{
  margin: 16px 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  color: #171411;
}

.kety-section--dark .kety-section-title,
.kety-cta-box .kety-section-title{
  color: var(--kety-text);
}

.kety-section-desc{
  margin: 0;
  max-width: 720px;
  font-size: 17px;
  color: var(--kety-body-soft);
}

.kety-section--dark .kety-section-desc,
.kety-cta-box .kety-section-desc{
  color: var(--kety-text-soft);
}

.kety-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--kety-transition), box-shadow var(--kety-transition), background-color var(--kety-transition), color var(--kety-transition), border-color var(--kety-transition), opacity var(--kety-transition);
}

.kety-btn:hover{
  transform: translateY(-2px);
}

.kety-btn--gold{
  color: #171411;
  background: linear-gradient(135deg, var(--kety-accent-3) 0%, var(--kety-accent) 100%);
  box-shadow: 0 18px 40px rgba(201,169,106,.25);
}

.kety-btn--gold:hover{
  box-shadow: 0 22px 44px rgba(201,169,106,.32);
}

.kety-btn--ghost{
  color: var(--kety-text);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kety-btn--ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.34);
}

.kety-btn--dark{
  color: #171411;
  background: #fff;
  border-color: rgba(0,0,0,.04);
}

.kety-btn--header{
  min-height: 48px;
  padding: 12px 20px;
  font-size: 13px;
}

.kety-btn--block{
  width: 100%;
}

.kety-header{
  position: sticky;
  top: 0;
  z-index: 999;
}

.kety-header__bar{
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--kety-text-soft);
}

.kety-header__bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.kety-header__meta{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.kety-header__meta--right{
  justify-content: flex-end;
}

.kety-header__meta-link,
.kety-header__meta-text{
  font-size: 12px;
  color: var(--kety-text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kety-header__meta-link:hover{
  color: var(--kety-accent-3);
}

.kety-header__meta-label{
  color: var(--kety-text-muted);
  margin-right: 6px;
}

.kety-header__main{
  background: rgba(17,17,17,.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kety-header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
}

.kety-brand{
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 86px;
}

.kety-brand__logo-link{
  display: inline-flex;
  align-items: center;
  height: 86px;
  max-height: 86px;
  line-height: 0;
}

.kety-brand img,
.kety-brand .custom-logo,
.kety-brand__logo-link img,
.kety-brand__logo-link .custom-logo{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.kety-brand__text{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.kety-brand__name{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.kety-brand__tag{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kety-text-muted);
}

.kety-nav{
  display: flex;
  justify-content: center;
  min-width: 0;
}

.kety-menu{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  color: #fff;
}

.kety-menu li{
  position: relative;
}

.kety-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
}

.kety-menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--kety-accent), var(--kety-accent-3));
  transition: width var(--kety-transition);
}

.kety-menu a:hover{
  color: #fff;
}

.kety-menu a:hover::after,
.kety-menu .current-menu-item > a::after,
.kety-menu .current_page_item > a::after{
  width: 100%;
}

.kety-header__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.kety-mobile-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.kety-mobile-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #fff;
}

.kety-mobile-panel{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: min(380px, 100%);
  height: 100vh;
  background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
  transform: translateX(100%);
  transition: transform var(--kety-transition);
  box-shadow: -20px 0 60px rgba(0,0,0,.34);
}

body.kety-mobile-open .kety-mobile-panel{
  transform: translateX(0);
}

.kety-mobile-panel__inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 22px 24px;
}

.kety-mobile-panel__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kety-mobile-panel__brand img,
.kety-mobile-panel__brand .custom-logo{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.kety-mobile-panel__brand-text{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: #fff;
}

.kety-mobile-close{
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: transparent;
}

.kety-mobile-close span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
}

.kety-mobile-close span:first-child{
  transform: translate(-50%, -50%) rotate(45deg);
}

.kety-mobile-close span:last-child{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.kety-mobile-nav{
  flex: 1;
  overflow-y: auto;
  padding: 22px 0;
}

.kety-mobile-menu{
  list-style: none;
  display: grid;
  gap: 10px;
}

.kety-mobile-menu li a{
  display: block;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kety-mobile-panel__footer{
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.kety-mobile-panel__contact{
  color: var(--kety-text-soft);
  font-size: 15px;
  font-weight: 500;
}

.kety-mobile-overlay{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* HERO */
.kety-hero{
  position: relative;
  min-height: 580px;
  height: 62vh;
  max-height: 660px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,169,106,.14), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(166,124,82,.10), transparent 24%),
    linear-gradient(120deg, rgba(8,8,8,.72) 10%, rgba(8,8,8,.38) 54%, rgba(8,8,8,.62) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kety-hero__fallback,
.kety-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kety-hero__fallback{
  z-index: 0;
}

.kety-hero__fallback img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center center;
  object-position: 62% center;
  transition: transform 1.2s ease;
}

.kety-hero__video{
  z-index: 1;
  opacity: 1;
}

.kety-hero__video-el{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  transform: scale(1.08);
  transform-origin: center center;
  transition: transform 1.2s ease;
}

.kety-hero--has-video .kety-hero__fallback{
  z-index: 0;
}

.kety-hero--has-video .kety-hero__video{
  z-index: 1;
}

.kety-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7,7,7,.34) 0%, rgba(7,7,7,.12) 45%, rgba(7,7,7,.26) 100%),
    linear-gradient(180deg, rgba(7,7,7,.08) 0%, rgba(7,7,7,.18) 100%);
}

.kety-hero__inner{
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 56px 0 28px;
}

.kety-hero__content{
  max-width: 640px;
}

.kety-hero__title{
  margin: 14px 0 14px;
  max-width: 11.5ch;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}

.kety-hero__desc{
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--kety-text-soft);
}

.kety-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.kety-hero__mini{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.kety-hero__mini span{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kety-hero__scroll{
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kety-hero__scroll-line{
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), transparent);
}

/* DEMO HERO VARIATIONS */
.kety-hero--cafe-bistro{
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 34px 0 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(185,128,79,.16), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(201,169,106,.12), transparent 26%),
    linear-gradient(180deg, #f3ebdf 0%, #eadfce 100%);
  color: #2f2924;
}

.kety-hero--cafe-bistro .kety-hero__cafe-wrap{
  width: 100%;
  padding: 28px 0 52px;
}

.kety-hero__cafe-grid{
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}

.kety-hero__cafe-content{
  max-width: 620px;
}

.kety-hero__cafe-title{
  margin: 16px 0 16px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  color: #2a211c;
}

.kety-hero__cafe-desc{
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: #6a5e53;
}

.kety-hero__mini--cafe span{
  background: rgba(185,128,79,.10);
  color: #7e5735;
  border-color: rgba(185,128,79,.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.kety-hero__cafe-visual{
  min-width: 0;
}

.kety-hero__cafe-card{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff7f0;
  border: 1px solid rgba(185,128,79,.14);
  box-shadow: 0 24px 60px rgba(79,49,23,.12);
  aspect-ratio: 4 / 4.6;
}

.kety-hero__cafe-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.kety-hero__cafe-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.kety-hero--cafe-bistro .kety-btn--ghost{
  color: #5a4738;
  background: rgba(255,255,255,.72);
  border-color: rgba(185,128,79,.18);
}

.kety-hero--cafe-bistro .kety-btn--ghost:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(185,128,79,.28);
}

.kety-hero--beach-restaurant{
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 28px 0 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(62,166,179,.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(211,235,235,.85), transparent 26%),
    linear-gradient(180deg, #edf8f8 0%, #dff0f0 100%);
  color: #153b4a;
}

.kety-hero--beach-restaurant .kety-hero__beach-wrap{
  width: 100%;
  padding: 34px 0 58px;
}

.kety-hero__beach-grid{
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 30px;
  align-items: center;
}

.kety-hero__beach-content{
  max-width: 600px;
}

.kety-hero__beach-title{
  margin: 16px 0 16px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.01;
  color: #163947;
}

.kety-hero__beach-desc{
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.82;
  color: #48717c;
}

.kety-hero__mini--beach span{
  background: rgba(62,166,179,.10);
  color: #236776;
  border-color: rgba(62,166,179,.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.kety-hero__beach-visual{
  min-width: 0;
}

.kety-hero__beach-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(62,166,179,.16);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(21,59,74,.12);
  aspect-ratio: 4 / 4.35;
}

.kety-hero__beach-image-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(0,0,0,.06) 100%);
  pointer-events: none;
}

.kety-hero__beach-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kety-hero--beach-restaurant .kety-btn--gold{
  color: #fff;
  background: linear-gradient(135deg, #3ea6b3 0%, #2f8d99 100%);
  box-shadow: 0 18px 40px rgba(62,166,179,.24);
}

.kety-hero--beach-restaurant .kety-btn--ghost{
  color: #1e5662;
  background: rgba(255,255,255,.72);
  border-color: rgba(62,166,179,.22);
}

.kety-hero--beach-restaurant .kety-btn--ghost:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(62,166,179,.32);
}

.kety-feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kety-feature-box{
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(201,169,106,.12);
  border-radius: var(--kety-radius-sm);
  background: linear-gradient(180deg, #e9dfd2 0%, #e3d7c9 100%);
  box-shadow: var(--kety-shadow-sm);
  text-align: center;
}

.kety-feature-box__title{
  margin: 0 0 10px;
  font-size: 24px;
  color: #171411;
}

.kety-feature-box__text{
  margin: 0;
  color: var(--kety-body-soft);
  font-size: 15px;
}

.kety-menu-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kety-menu-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--kety-radius);
  background: #e9dfd2;
  box-shadow: var(--kety-shadow);
  transition: transform var(--kety-transition), box-shadow var(--kety-transition);
}

.kety-menu-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--kety-shadow-lg);
}

.kety-menu-card__media{
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: linear-gradient(135deg, #e4d0b8 0%, #f7ede1 100%);
}

.kety-menu-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.kety-menu-card:hover .kety-menu-card__media img{
  transform: scale(1.06);
}

.kety-menu-card__placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dbc7af, #f6ecde);
}

.kety-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17,17,17,.84);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.kety-menu-card__body{
  padding: 22px 22px 24px;
  background: #e9dfd2;
}

.kety-menu-card__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.kety-menu-card__title{
  margin: 0;
  font-size: 24px;
  color: #171411;
}

.kety-menu-card__title a:hover{
  color: var(--kety-accent-2);
}

.kety-price-wrap{
  flex-shrink: 0;
  text-align: right;
}

.kety-old-price{
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  color: #a89887;
  text-decoration: line-through;
}

.kety-price{
  font-size: 18px;
  font-weight: 700;
  color: var(--kety-accent-2);
}

.kety-menu-card__desc{
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--kety-body-soft);
}

.kety-menu-card__meta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--kety-accent-2);
  font-size: 13px;
  font-weight: 600;
}

.kety-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kety-gallery-card{
  overflow: hidden;
  border-radius: 26px;
  background: #ddd;
  box-shadow: var(--kety-shadow);
  aspect-ratio: 1 / 1;
}

.kety-gallery-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.kety-gallery-card:hover img{
  transform: scale(1.06);
}

/* DEMO GALLERY VARIATIONS */
.kety-gallery-grid--cafe{
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kety-gallery-section--cafe-bistro{
  background:
    radial-gradient(circle at 12% 12%, rgba(185,128,79,.08), transparent 24%),
    linear-gradient(180deg, #f4ede4 0%, #eadfce 100%);
}

.kety-gallery-section--cafe-bistro .kety-gallery-card{
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(79,49,23,.10);
}

.kety-gallery-section--cafe-bistro .kety-gallery-card:nth-child(2n){
  transform: translateY(18px);
}

.kety-gallery-section--beach-restaurant{
  background:
    radial-gradient(circle at 10% 20%, rgba(62,166,179,.10), transparent 22%),
    linear-gradient(180deg, #eef7f7 0%, #dff0f0 100%);
}

.kety-gallery-slider-wrap{
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.kety-gallery-slider-track{
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.kety-gallery-slide{
  flex: 0 0 360px;
  width: 360px;
}

.kety-gallery-slide__inner{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(62,166,179,.12);
  box-shadow: 0 20px 54px rgba(21,59,74,.12);
  aspect-ratio: 4 / 4.7;
}

.kety-gallery-slide__inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.kety-gallery-slide__inner:hover img{
  transform: scale(1.05);
}

.kety-gallery-slide__caption{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: #1f5663;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kety-cta-section{
  background:
    radial-gradient(circle at 80% 20%, rgba(201,169,106,.16), transparent 24%),
    linear-gradient(135deg, #111111 0%, #1b1712 100%);
  color: #fff;
}

.kety-cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--kety-radius-lg);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.kety-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.kety-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.kety-contact-card,
.kety-map-card{
  padding: 30px;
  border-radius: 26px;
  background: #e9dfd2;
  box-shadow: var(--kety-shadow);
}

.kety-map-card iframe{
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 18px;
}

.kety-map-placeholder{
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e8ddd1 0%, #e1d5c6 100%);
  color: var(--kety-body-soft);
  text-align: center;
}

.kety-contact-list{
  display: grid;
  gap: 18px;
}

.kety-contact-item{
  padding-bottom: 18px;
  border-bottom: 1px solid #d9cebf;
}

.kety-contact-item:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.kety-contact-item__label{
  display: block;
  margin-bottom: 4px;
  color: var(--kety-accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kety-contact-item__value{
  color: #171411;
  font-size: 16px;
}

.kety-footer{
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,169,106,.10), transparent 22%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  color: #fff;
}

.kety-footer__top{
  padding: 84px 0 42px;
}

.kety-footer__grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
}

.kety-footer__brand{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.kety-footer__logo .custom-logo{
  max-height: 58px;
  width: auto;
}

.kety-footer__logo img,
.kety-footer__logo .custom-logo{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.kety-footer__title{
  display: inline-flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.kety-footer__tagline{
  color: var(--kety-text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kety-footer__heading{
  margin: 0 0 18px;
  font-size: 24px;
  color: #fff;
}

.kety-footer__text,
.kety-footer__hours,
.kety-footer__mini-note,
.kety-footer__list li,
.kety-footer__links li a,
.kety-footer__socials a{
  color: var(--kety-text-soft);
}

.kety-footer__text{
  max-width: 420px;
}

.kety-footer__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.kety-footer__list{
  list-style: none;
  display: grid;
  gap: 14px;
}

.kety-footer__list li{
  display: grid;
  gap: 4px;
}

.kety-footer__label{
  color: var(--kety-accent-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kety-footer__links{
  list-style: none;
  display: grid;
  gap: 12px;
}

.kety-footer__links a:hover,
.kety-footer__list a:hover,
.kety-footer__socials a:hover{
  color: #fff;
}

.kety-footer__hours{
  white-space: normal;
}

.kety-footer__mini-note{
  margin-top: 16px;
  font-size: 14px;
}

.kety-footer__socials{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.kety-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
}

.kety-footer__bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.kety-footer__copyright,
.kety-footer__credit{
  margin: 0;
  color: var(--kety-text-muted);
  font-size: 14px;
}

.kety-default-content{
  padding-bottom: 80px;
}

.kety-page-title{
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
  color: #171411;
}

.kety-entry-content{
  font-size: 17px;
  color: #4d443c;
}

.kety-menu-single{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.kety-menu-single__media img{
  border-radius: 28px;
  box-shadow: var(--kety-shadow);
}

.kety-menu-single__meta{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.kety-menu-group + .kety-menu-group{
  margin-top: 52px;
}

.kety-menu-group__title{
  margin: 0 0 22px;
  font-size: 32px;
  color: #171411;
}

.kety-empty-note{
  padding: 22px;
  border-radius: 18px;
  background: #e8ddd1;
  color: var(--kety-body-soft);
}

.kety-menu-card__content{
  min-width: 0;
}

.kety-menu-card__category{
  display: inline-block;
  margin-bottom: 8px;
  color: var(--kety-accent-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kety-menu-card__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.kety-menu-card__link{
  font-size: 13px;
  font-weight: 600;
  color: var(--kety-accent-2);
}

.kety-menu-card__link:hover{
  color: #171411;
}

.kety-menu-card.is-featured{
  outline: 1px solid rgba(201,169,106,.24);
}

.kety-menu-single__content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kety-menu-single__lead{
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--kety-body-soft);
}

.kety-menu-single__meta-item{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8ddd1;
  color: var(--kety-accent-2);
  font-size: 13px;
  font-weight: 600;
}

.kety-menu-single__price-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0 0 24px;
}

.kety-menu-single__price{
  font-size: 32px;
  line-height: 1;
  color: var(--kety-accent-2);
}

.kety-menu-single__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.kety-feature-box::before{
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kety-accent), var(--kety-accent-3));
}

.kety-block-footer{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.kety-menu-grid.is-compact .kety-menu-card__media{
  aspect-ratio: 4 / 4.2;
}

.kety-cta-content{
  max-width: 760px;
}

.kety-cta-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.kety-cta-meta__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--kety-text-soft);
  font-size: 13px;
}

.kety-cta-meta__item strong{
  color: #fff;
  font-weight: 600;
}

.kety-contact-col{
  min-width: 0;
}

.kety-contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* STORY BLOCK */
.kety-story-section{
  background: linear-gradient(180deg, #f3ebdf 0%, #eadfce 100%);
  padding-top: 88px;
  padding-bottom: 88px;
}

.kety-story-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.kety-story-grid.no-image{
  grid-template-columns: 1fr;
}

.kety-story-content{
  max-width: 560px;
}

.kety-story-title{
  margin-top: 16px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.kety-story-title::after{
  content:"";
  display:block;
  width:64px;
  height:2px;
  margin-top:16px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--kety-accent), var(--kety-accent-3));
}

.kety-story-desc{
  display: grid;
  gap: 14px;
  max-width: 540px;
}

.kety-story-desc p{
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #5f5951;
  letter-spacing: .01em;
}

.kety-story-actions{
  margin-top: 28px;
}

.kety-story-media{
  min-width: 0;
}

.kety-story-image-wrap{
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
  box-shadow: var(--kety-shadow);
  aspect-ratio: 4 / 5;
}

.kety-story-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* STORY PAGE */
.kety-story-page{
  background: linear-gradient(180deg, #f2eadf 0%, #ece2d6 100%);
}

.kety-story-hero{
  padding: 70px 0 40px;
}

.kety-story-hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.kety-story-hero__content{
  max-width: 700px;
}

.kety-story-hero__title{
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  color: #171411;
}

.kety-story-hero__desc{
  margin: 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--kety-body-soft);
}

.kety-story-hero__actions{
  margin-top: 26px;
}

.kety-story-hero__media{
  min-width: 0;
}

.kety-story-hero__image-wrap{
  overflow: hidden;
  border-radius: 30px;
  background: #ddd;
  box-shadow: var(--kety-shadow-lg);
  aspect-ratio: 4 / 4.7;
}

.kety-story-hero__image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.kety-story-page__content{
  padding-top: 24px;
}

.kety-story-quote{
  max-width: 860px;
  margin: 0 auto 34px;
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(201,169,106,.16);
  box-shadow: var(--kety-shadow-sm);
  text-align: center;
}

.kety-story-quote p{
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  color: #171411;
}

.kety-story-page__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kety-story-page__card{
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(201,169,106,.16);
  box-shadow: var(--kety-shadow-sm);
}

.kety-story-page__card h2{
  margin: 0 0 14px;
  font-size: 28px;
  color: #171411;
}

.kety-story-page__card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--kety-body-soft);
}

/* REVIEWS BLOCK */
.kety-reviews-section{
  background: linear-gradient(180deg, #f3ebdf 0%, #eadfce 100%);
}

.kety-reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kety-review-card{
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(201,169,106,.16);
  box-shadow: var(--kety-shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.kety-review-stars{
  margin-bottom: 14px;
  color: var(--kety-accent-2);
  font-size: 18px;
  letter-spacing: .08em;
}

.kety-review-text{
  margin: 0 0 18px;
  color: var(--kety-body);
  font-size: 15px;
  line-height: 1.75;
}

.kety-review-author{
  display: grid;
  gap: 4px;
}

.kety-review-name{
  color: #171411;
  font-size: 16px;
}

.kety-review-role{
  color: var(--kety-body-soft);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .kety-hero{
    min-height: 720px;
    height: 76vh;
  }

  .kety-hero__title{
    font-size: 56px;
    max-width: 10ch;
  }

  .kety-hero__cafe-grid,
  .kety-hero__beach-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px){
  .kety-story-grid,
  .kety-story-hero__grid,
  .kety-story-page__grid,
  .kety-reviews-grid,
  .kety-hero__cafe-grid,
  .kety-hero__beach-grid{
    grid-template-columns: 1fr;
  }

  .kety-story-content,
  .kety-story-hero__content,
  .kety-hero__cafe-content,
  .kety-hero__beach-content{
    max-width: 100%;
  }

  .kety-story-image-wrap{
    aspect-ratio: 16 / 10;
  }

  .kety-story-hero__image-wrap{
    aspect-ratio: 16 / 11;
  }

  .kety-gallery-grid--cafe{
    grid-template-columns: repeat(2, 1fr);
  }

  .kety-gallery-slide{
    flex-basis: 300px;
    width: 300px;
  }
}

@media (max-width: 920px){
  .kety-hero{
    min-height: 660px;
    height: auto;
    max-height: none;
  }

  .kety-hero__inner{
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .kety-hero__title{
    font-size: 46px;
    max-width: 11ch;
  }
}

@media (max-width: 767px){
  .kety-hero{
    min-height: 640px;
    height: auto;
    max-height: none;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(8,8,8,.14) 0%, rgba(8,8,8,.18) 100%);
  }

  .kety-hero__fallback,
  .kety-hero__video,
  .kety-hero__video-el{
    display: block;
    visibility: visible;
  }

  .kety-hero__video{
    opacity: 1;
  }

  .kety-hero__video-el,
  .kety-hero__fallback img{
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: 60% center;
    transform: scale(1.05);
  }

  .kety-hero__overlay{
    background:
      linear-gradient(180deg, rgba(7,7,7,.24) 0%, rgba(7,7,7,.36) 100%),
      linear-gradient(90deg, rgba(7,7,7,.18) 0%, rgba(7,7,7,.12) 100%);
  }

  .kety-hero__inner{
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .kety-hero__content{
    max-width: 100%;
  }

  .kety-hero__title{
    max-width: 100%;
    font-size: 36px;
    line-height: 1.02;
  }

  .kety-hero__desc{
    max-width: 100%;
    font-size: 15px;
  }

  .kety-hero__actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kety-hero__actions .kety-btn{
    width: 100%;
  }

  .kety-hero__mini{
    gap: 10px;
  }

  .kety-hero__mini span{
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .kety-hero__scroll{
    display: none;
  }

  .kety-hero--cafe-bistro,
  .kety-hero--beach-restaurant{
    min-height: 0;
    background: none;
    padding-top: 18px;
  }

  .kety-hero--cafe-bistro .kety-hero__cafe-wrap,
  .kety-hero--beach-restaurant .kety-hero__beach-wrap{
    padding-top: 12px;
    padding-bottom: 34px;
  }

  .kety-hero__cafe-title,
  .kety-hero__beach-title{
    font-size: 36px;
    line-height: 1.04;
  }

  .kety-hero__cafe-desc,
  .kety-hero__beach-desc{
    font-size: 15px;
  }

  .kety-hero__cafe-card{
    aspect-ratio: 4 / 4.2;
    border-radius: 24px;
  }

  .kety-hero__beach-image-wrap{
    aspect-ratio: 4 / 3.8;
    border-radius: 24px;
  }

  .kety-gallery-grid--cafe{
    grid-template-columns: 1fr;
  }

  .kety-gallery-section--cafe-bistro .kety-gallery-card:nth-child(2n){
    transform: none;
  }

  .kety-gallery-slider-wrap{
    mask-image: none;
    -webkit-mask-image: none;
  }

  .kety-gallery-slide{
    flex-basis: 260px;
    width: 260px;
  }

  .kety-gallery-slide__inner{
    border-radius: 22px;
  }

  .kety-brand{
    min-height: 72px;
  }

  .kety-brand__logo-link{
    height: 72px;
    max-height: 72px;
  }

  .kety-brand img,
  .kety-brand .custom-logo,
  .kety-brand__logo-link img,
  .kety-brand__logo-link .custom-logo{
    max-height: 48px;
  }

  .kety-story-section{
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .kety-story-title{
    margin-bottom: 14px;
  }

  .kety-story-desc{
    max-width: 100%;
    gap: 12px;
  }

  .kety-story-desc p{
    font-size: 16px;
    line-height: 1.75;
  }

  .kety-story-image-wrap{
    aspect-ratio: 4 / 4.8;
  }

  .kety-story-image-wrap img{
    object-position: center 18%;
  }

  .kety-story-hero{
    padding: 54px 0 24px;
  }

  .kety-story-hero__desc{
    font-size: 16px;
  }

  .kety-story-hero__image-wrap{
    aspect-ratio: 4 / 3;
  }

  .kety-story-hero__image-wrap img{
    object-position: center 38%;
  }

  .kety-story-page__card,
  .kety-review-card{
    padding: 22px 18px;
    border-radius: 20px;
  }
}

@media (max-width: 520px){
  .kety-hero{
    min-height: 700px;
  }

  .kety-hero__video-el,
  .kety-hero__fallback img{
    min-height: 700px;
  }

  .kety-hero__title{
    font-size: 34px;
  }

  .kety-gallery-slide{
    flex-basis: 220px;
    width: 220px;
  }
}

/* =========================
   STORY TEASER PREMIUM
========================= */

.kety-story-section{
  background:
    radial-gradient(circle at 15% 20%, rgba(201,169,106,.10), transparent 24%),
    linear-gradient(180deg, #f3ebdf 0%, #eadfce 100%);
  padding-top: 92px;
  padding-bottom: 92px;
}

.kety-story-shell{
  padding: 34px;
  border: 1px solid rgba(201,169,106,.12);
  border-radius: 32px;
  background: rgba(255,255,255,.28);
  box-shadow: var(--kety-shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.kety-story-grid{
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: center;
}

.kety-story-grid.no-image{
  grid-template-columns: 1fr;
}

.kety-story-content{
  max-width: 560px;
}

.kety-story-title{
  margin-top: 16px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.kety-story-title::after{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kety-accent), var(--kety-accent-3));
}

.kety-story-desc{
  display: grid;
  gap: 14px;
  max-width: 540px;
}

.kety-story-desc p{
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #5f5951;
  letter-spacing: .01em;
}

.kety-story-actions{
  margin-top: 30px;
}

.kety-story-media{
  min-width: 0;
}

.kety-story-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #ddd;
  box-shadow: var(--kety-shadow);
  aspect-ratio: 4 / 5;
}

.kety-story-image-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
}

.kety-story-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.03);
  transition: transform .8s ease;
}

.kety-story-image-wrap:hover img{
  transform: scale(1.06);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){
  .kety-story-shell{
    padding: 24px;
  }

  .kety-story-grid{
    grid-template-columns: 1fr;
  }

  .kety-story-content{
    max-width: 100%;
  }

  .kety-story-image-wrap{
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px){
  .kety-story-section{
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .kety-story-shell{
    padding: 18px;
    border-radius: 24px;
  }

  .kety-story-title{
    margin-bottom: 14px;
  }

  .kety-story-desc{
    max-width: 100%;
    gap: 12px;
  }

  .kety-story-desc p{
    font-size: 16px;
    line-height: 1.75;
  }

  .kety-story-image-wrap{
    aspect-ratio: 4 / 4.8;
    border-radius: 24px;
  }

  .kety-story-image-wrap img{
    object-position: center 18%;
  }
}

/* =========================
   WORDPRESS MENU FIX
========================= */

.kety-menu,
.kety-mobile-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

.kety-menu > li,
.kety-mobile-menu > li{
  list-style: none;
}

.kety-mobile-menu{
  display: block;
  width: 100%;
}

.kety-mobile-menu li{
  width: 100%;
}

.kety-mobile-menu li a{
  display: block;
  width: 100%;
  padding: 16px 0;
  font-size: 17px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kety-mobile-menu li:last-child a{
  border-bottom: none;
}

/* =========================
   BLOKLAR ARASI BOŞLUK
========================= */

.kety-section{
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.kety-home-block{
  margin-bottom: 0 !important;
  padding-bottom: 32px !important;
}

.kety-home-block__head,
.kety-section-head{
  margin-bottom: 24px !important;
}

.kety-home-block .kety-menu-grid,
.kety-menu-grid{
  margin-bottom: 24px !important;
}

.kety-home-block__footer,
.kety-section__footer,
.kety-block-footer{
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.kety-home-block + .kety-home-block,
.kety-section + .kety-section{
  margin-top: 0 !important;
}

/* =========================
   HOME BACKGROUND
========================= */

body{
  background-color:#efe7dc;
  background-image:
  linear-gradient(rgba(239,231,220,.78), rgba(239,231,220,.78)),
  url("https://restaurant.ketyajans.com/wp-content/uploads/2026/03/ChatGPT-Image-14-Mar-2026-00_23_17.png");

  background-position:center top;
  background-size:cover;
  background-repeat:repeat-y;
  background-attachment:fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(239,231,220,.78), rgba(239,231,220,.78)),
  url("https://restaurant.ketyajans.com/wp-content/uploads/2026/03/ChatGPT-Image-14-Mar-2026-00_23_17.png");

  background-size:cover;
  background-position:center;
  background-repeat:repeat-y;

  z-index:0;
  transform:scale(1.05);
  pointer-events:none;
}

.kety-section{
  background:transparent !important;
}

main{
  position:relative;
  z-index:1;
}

.kety-footer{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  position:relative !important;
  z-index:2 !important;
}

body,
main,
.kety-home{
  overflow:visible !important;
}