/* Original Gemini tile material, retained and refined. */
/* Gerçekçi Krem/Beyaz Okey Taşı Görünümü */
.okey-tile {
  position: absolute;
  width: 60px;
  height: 84px;
  /* Krem tonlu lüks melamin/plastik yüzey gradienti */
  background: linear-gradient(140deg, #ffffff 0%, #f7f1e3 65%, #ebdcb9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 38px;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
  /* 3D Pah Kalıbı, Derinlik ve İnce Kenar Gölgeleri */
  border-right: 3px solid #d4cbb3;
  border-bottom: 4px solid #c8bea3;
  box-shadow:          inset 0 2px 2px rgba(255, 255, 255, 0.95),         inset 0 -3px 5px rgba(0, 0, 0, 0.12),         0 14px 30px rgba(0, 0, 0, 0.25),         0 3px 6px rgba(0, 0, 0, 0.15);
  letter-spacing: -1px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  will-change: transform;
}

/* İç Kenarlık (Pah Hissi Veren İnce Detay) */
.okey-tile::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 7px;
  pointer-events: none;
}

/* Okey Taşlarının İzin Verilen Rakam Renkleri */
.tile-red {
  color: #d92b2b;
}

.tile-green {
  color: #108a43;
}

.tile-blue {
  color: #1d62d4;
}

.tile-black {
  color: #202124;
}

:root {
  --coral:#f7474d;
  --ink:#111111;
  --cream:#f4f1e9;
  --line:rgba(17,17,17,.22)
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:24px
}

body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}

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

button {
  font:inherit
}

a,button {
  -webkit-tap-highlight-color:transparent
}

a:focus-visible,button:focus-visible {
  outline:3px solid currentColor;
  outline-offset:6px
}

::selection {
  background:var(--ink);
  color:var(--cream)
}

h1,h2,h3,p {
  margin:0
}

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

.wrap {
  width:min(1380px,calc(100% - 112px));
  margin-inline:auto
}

.eyebrow,.row-index,.small-note {
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  line-height:1.6
}

.skip-link {
  position:fixed;
  left:20px;
  top:16px;
  z-index:20;
  padding:15px;
  background:var(--cream);
  transform:translateY(-180%)
}

.skip-link:focus {
  transform:none
}

.hero-shell {
  background:var(--cream)
}

.site-header {
  height:144px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px
}

.brand {
  width:420px;
  flex-shrink:0
}

.brand img {
  width:100%;
  height:auto
}

.site-header nav {
  display:flex;
  gap:40px;
  align-items:center;
  font-size:13px;
  font-weight:700
}

.site-header nav a {
  padding-block:12px
}

.site-header nav a:hover {
  text-decoration:underline;
  text-underline-offset:5px
}

.nav-contact {
  display:flex;
  gap:12px;
  align-items:center
}

.hero {
  background:var(--coral);
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:690px;
  padding:70px max(56px,calc((100% - 1380px)/2)) 100px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  gap:20px
}

.hero-content {
  position:relative;
  z-index:2
}

h1 {
  font-size:clamp(62px,6.85vw,106px);
  letter-spacing:-.067em;
  font-weight:800;
  line-height:1;
  margin-top:0
}

h1 em {
  font-style:normal;
  color:var(--cream)
}

.hero-subtitle {
  font-size:16px;
  line-height:1.7;
  margin-top:28px
}

.cta-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  align-items:center;
  margin-top:30px
}

.button {
  display:inline-flex;
  justify-content:space-between;
  align-items:center;
  gap:36px;
  padding:18px 23px;
  font-size:13px;
  font-weight:700;
  min-height:54px;
  border:1px solid var(--ink);
  transition:transform .2s,background-color .2s,color .2s
}

.button-dark {
  color:var(--cream);
  background:var(--ink)
}

.button:hover {
  background:var(--cream);
  color:var(--ink);
  transform:translateY(-3px)
}

.button span {
  font-size:22px;
  font-weight:400
}

.text-link {
  font-size:13px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:24px;
  padding-block:10px;
  border-bottom:1px solid currentColor
}

.text-link:hover span {
  transform:translate(2px,2px)
}

.text-link span {
  font-size:20px;
  transition:transform .2s
}

.hero-art {
  position:relative;
  height:490px;
  min-width:0;
  z-index:1
}

.tiles-viewport {
  position:absolute;
  inset:0;
  perspective:1100px;
  pointer-events:none
}

.tiles-container {
  width:100%;
  height:100%;
  transform-style:preserve-3d
}

.tile-flight {
  position:absolute;
  left:var(--x);
  top:var(--y);
  transform:translate3d(0,0,var(--z)) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--r)) scale(var(--s));
  animation:tile-drift var(--time) ease-in-out var(--delay) infinite alternate;
  transform-style:preserve-3d
}

.hero-art .okey-tile {
  position:relative;
  width:91px;
  height:126px;
  font-size:65px;
  letter-spacing:-4px;
  border-radius:11px
}

.okey-tile {
  font-family:Arial,Helvetica,sans-serif;
  will-change:auto
}



.hero-bottom {
  position:absolute;
  bottom:27px;
  left:max(56px,calc((100% - 1380px)/2));
  right:max(56px,calc((100% - 1380px)/2));
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:9px;
  letter-spacing:1.1px
}

.hero-bottom b {
  margin-left:12px
}

.hero-bottom a span {
  margin-left:18px
}

.is-paused .tile-flight {
  animation-play-state:paused
}

.statement-strip {
  display:flex;
  align-items:center;
  justify-content:space-around;
  gap:24px;
  overflow:hidden;
  white-space:nowrap;
  padding:25px 30px;
  background:var(--ink);
  color:var(--cream);
  font-size:clamp(18px,2.7vw,38px);
  letter-spacing:-1px;
  font-weight:800
}

.strip-spark {
  color:var(--coral);
  font-size:38px
}

.section-space {
  padding-block:108px
}

.concept {
  display:grid;
  grid-template-columns:1fr 4fr;
  gap:25px
}

.section-label {
  padding-top:12px
}

.concept-body {
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:70px;
  align-items:end
}

h2 {
  font-size:clamp(44px,5vw,76px);
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:800
}

.coral {
  color:#d7353c
}

.crossed {
  position:relative
}

.crossed:after {
  content:"";
  position:absolute;
  height:5px;
  left:-4%;
  right:-6%;
  top:52%;
  background:var(--coral);
  transform:rotate(-8deg)
}

.concept-copy {
  max-width:340px
}

.asterisk {
  display:block;
  font-size:70px;
  color:#d7353c;
  line-height:1;
  margin-bottom:26px
}

.concept-copy p {
  font-size:15px;
  line-height:1.8;
  margin-bottom:20px
}

.concept-copy p:first-of-type {
  font-size:20px;
  line-height:1.5;
  letter-spacing:-.4px
}

.concept-copy .text-link {
  margin-top:6px
}

.experience {
  background:var(--ink);
  color:var(--cream)
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:40px;
  padding-bottom:60px
}

.section-heading h2 {
  width:66%
}

.section-heading h2 span {
  color:#aaa79f
}

.experience-row {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px;
  align-items:center;
  border-top:1px solid #41403c;
  padding-block:50px
}

.experience-copy {
  padding-block:24px;
  max-width:350px
}

.row-index {
  color:var(--coral)
}

h3 {
  font-size:clamp(34px,3.6vw,54px);
  letter-spacing:-.05em;
  line-height:1.1;
  margin-block:28px 22px
}

.experience-copy p,.social-row p {
  font-size:15px;
  line-height:1.85;
  color:#bdbbb5
}

.small-note {
  display:block;
  margin-top:40px;
  font-size:9px
}

.game-visual,.coffee-visual {
  margin:0;
  height:420px;
  position:relative;
  overflow:hidden;
  background:var(--coral);
  color:var(--ink)
}

.coffee-row {
  grid-template-columns:1.2fr 1fr
}

.coffee-row .experience-copy {
  margin-left:30px
}

.coffee-visual {
  background:#d8d3c5;
  height:460px
}

.social-row {
  padding-top:50px;
  border-top:1px solid #41403c;
  display:grid;
  grid-template-columns:1fr 2.25fr 1.4fr;
  gap:30px;
  align-items:start
}

.social-row h3 {
  margin:0;
  font-size:clamp(30px,3vw,46px)
}

.social-row h3 span {
  color:var(--coral)
}

.social-row .text-link {
  margin-top:22px
}

.contact {
  background:var(--coral);
  position:relative
}

.contact-top {
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center
}

.contact-top>span {
  font-size:10px;
  letter-spacing:1.2px
}

.contact h2 {
  font-size:clamp(48px,7.6vw,116px);
  margin-block:52px 60px
}

.contact h2>span {
  color:var(--cream)
}

.contact-bottom {
  border-top:1px solid var(--line);
  padding-top:35px;
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center
}

.phone {
  display:block;
  font-size:clamp(24px,3vw,43px);
  letter-spacing:-1.5px;
  margin-top:12px;
  font-weight:700
}

.phone span {
  margin-left:16px;
  font-weight:400
}

.contact-hours>p:last-child {
  font-size:15px;
  line-height:1.7;
  margin-top:10px
}

.contact-hours strong {
  font-weight:700
}

@keyframes tile-drift {
  from {
    transform:translate3d(0,0,var(--z)) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--r)) scale(var(--s))
  }
  to {
    transform:translate3d(var(--dx),var(--dy),calc(var(--z) + 55px)) rotateX(calc(var(--rx) + 10deg)) rotateY(calc(var(--ry) - 12deg)) rotateZ(calc(var(--r) + var(--dr))) scale(var(--s))
  }
}

@media(min-width:1600px) {
  .hero {
    min-height:780px
  }
  .hero-art {
    height:550px
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px)
  }
  .hero {
    padding:55px 32px 105px;
    min-height:650px;
    grid-template-columns:1.3fr 1fr
  }
  .hero-bottom {
    left:32px;
    right:32px
  }
  h1 {
    font-size:clamp(60px,7.5vw,83px)
  }
  .hero-art .okey-tile {
    width:73px;
    height:104px;
    font-size:51px
  }
  .hero-art {
    height:410px
  }
  .brand {
    width:340px
  }
  .concept {
    grid-template-columns:1fr
  }
  .concept-body {
    gap:50px
  }
  .section-label {
    margin-bottom:25px
  }
  .experience-row {
    gap:45px
  }
  .social-row {
    grid-template-columns:1fr 2fr
  }
  .social-row>div {
    grid-column:2
  }
  .contact-bottom {
    flex-wrap:wrap
  }
  .section-space {
    padding-block:80px
  }
}

@media(max-width:700px) {
  .wrap {
    width:calc(100% - 40px)
  }
  .site-header {
    height:auto;
    min-height:108px;
    gap:0;
    flex-wrap:wrap;
    padding-block:10px
  }
  .brand {
    width:min(290px, 100%)
  }
  .site-header nav {
    width:100%;
    justify-content:space-between;
    gap:16px;
    font-size:11px
  }
  .site-header nav>a:not(.nav-contact) {
    display:inline-flex
  }
  .nav-contact {
    gap:12px
  }

  .hero {
    padding:40px 20px 88px;
    grid-template-columns:1fr;
    gap:0;
    min-height:0
  }

  h1 {
    font-size:clamp(51px,11.8vw,82px);
    margin-top:0
  }
  .hero-subtitle {
    font-size:14px;
    margin-top:23px
  }
  .cta-buttons {
    gap:24px;
    margin-top:24px
  }
  .button {
    font-size:12px;
    padding:15px 18px;
    gap:25px
  }
  .text-link {
    font-size:12px;
    gap:18px
  }
  .hero-art {
    height:265px;
    width:min(100%,430px);
    margin:30px auto 0
  }
  .hero-art .okey-tile {
    width:58px;
    height:80px;
    font-size:39px;
    letter-spacing:-2px;
    border-radius:7px
  }
  .tile-flight:nth-child(n+5) {
    display:none
  }
  .tile-flight:nth-child(1) {
    left:72%;
    top:9%
  }
  .tile-flight:nth-child(2) {
    left:12%;
    top:20%
  }
  .tile-flight:nth-child(3) {
    left:54%;
    top:44%
  }
  .tile-flight:nth-child(4) {
    left:23%;
    top:67%
  }


  .hero-bottom {
    left:20px;
    right:20px;
    bottom:22px;
    font-size:8px;
    letter-spacing:.5px;
    padding-top:15px
  }
  .hero-bottom>a {
    display:none
  }
  .hero-bottom b {
    margin-left:5px
  }

  .statement-strip {
    padding:18px 20px;
    gap:17px;
    flex-wrap:wrap;
    font-size:16px;
    letter-spacing:-.5px
  }
  .strip-spark {
    font-size:22px
  }
  .strip-spark:last-child {
    display:none
  }
  .section-space {
    padding-block:62px
  }
  .concept-body {
    grid-template-columns:1fr;
    gap:32px
  }
  .section-label {
    margin-bottom:5px
  }
  h2 {
    font-size:clamp(43px,10vw,62px)
  }
  .concept-copy {
    max-width:none
  }
  .asterisk {
    font-size:52px;
    margin-bottom:20px
  }
  .concept-copy p:first-of-type {
    font-size:19px
  }
  .concept-copy p {
    font-size:14px
  }
  .section-heading {
    display:block;
    padding-bottom:35px
  }
  .section-heading h2 {
    width:100%;
    margin-top:25px
  }
  .experience-row,.coffee-row {
    grid-template-columns:1fr;
    gap:28px;
    padding-block:30px
  }
  .experience-copy {
    max-width:none;
    padding-block:10px
  }
  .experience-copy h3 {
    font-size:39px;
    margin-block:19px
  }
  .experience-copy p {
    font-size:14px
  }
  .small-note {
    margin-top:24px
  }
  .game-visual,.coffee-visual {
    height:320px
  }
  .coffee-row .experience-copy {
    margin:0;
    grid-row:1
  }
  .social-row {
    grid-template-columns:1fr;
    gap:23px;
    padding-top:35px
  }
  .social-row h3 {
    font-size:37px
  }
  .social-row>div {
    grid-column:auto
  }
  .social-row p {
    font-size:14px
  }
  .social-row .text-link {
    margin-top:15px
  }
  .contact-top {
    align-items:start
  }
  .contact-top .eyebrow {
    max-width:160px;
    font-size:9px
  }
  .contact-top>span {
    font-size:8px
  }
  .contact h2 {
    font-size:clamp(40px,8.5vw,59px);
    margin-block:37px
  }
  .contact-bottom {
    display:grid;
    grid-template-columns:1fr;
    gap:28px
  }
  .phone {
    font-size:32px;
    letter-spacing:-1px
  }
  .contact-bottom .button {
    justify-self:start
  }
  .contact-hours>p:last-child br {
    display:none
  }
  .contact-hours strong {
    margin-left:10px
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important
  }

  .tiles-container {
    transform:none!important
  }
}

/* Supplied photography and shared outline icons. */
.icon {
  width:20px;
  height:20px;
  flex-shrink:0;
}
.game-visual img,.coffee-visual img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.coffee-visual img {
  object-position:50% 43%;
}
.game-visual figcaption,.coffee-visual figcaption {
  position:absolute;
  left:22px;
  bottom:22px;
  max-width:calc(100% - 44px);
  padding:12px 16px;
  background:var(--cream);
  color:var(--ink);
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
}
.site-footer {
  padding:76px 0 0;
  background:var(--cream);
}
.footer-main {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:100px;
  align-items:center;
  padding-bottom:70px;
}
.footer-brand {
  display:block;
  width:min(100%, 460px);
  margin:12px 0 15px;
}
.footer-brand img {
  width:100%;
  height:auto;
}
.footer-about>p:last-child {
  max-width:410px;
  font-size:15px;
  line-height:1.85;
  color:#514e48;
}
.footer-invite {
  position:relative;
  padding-top:30px;
}
.footer-invite h2 {
  font-size:clamp(42px,5.4vw,78px);
}
.footer-invite h2 span {
  color:#d7353c;
}
.footer-tag {
  display:inline-block;
  background:var(--coral);
  color:var(--ink);
  padding:12px 18px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  transform:rotate(7deg);
  margin-bottom:25px;
}
.footer-invite .text-link {
  margin-top:22px;
}
.footer-bottom {
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  min-height:88px;
  font-size:11px;
}
.footer-bottom p {
  font-weight:700;
}
.footer-bottom p span {
  margin-left:15px;
  font-weight:400;
}
.footer-bottom nav {
  display:flex;
  gap:26px;
}
.footer-bottom a {
  display:inline-flex;
  align-items:center;
  gap:15px;
  padding-block:15px;
}
.footer-bottom a:hover {
  text-decoration:underline;
  text-underline-offset:5px;
}
@media(max-width:1100px) {
  .footer-main {
    gap:50px;
  }
}
@media(max-width:700px) {
  .site-header {
    padding-block:4px 10px;
  }
  .site-header nav a {
    min-height:44px;
    align-items:center;
  }
  .cta-buttons {
    gap:16px;
  }
  .cta-buttons .button {
    gap:14px;
    padding-inline:15px;
  }
  .cta-buttons .text-link {
    gap:10px;
  }
  .site-footer {
    padding-top:48px;
  }
  .footer-main {
    grid-template-columns:1fr;
    gap:35px;
    padding-bottom:40px;
  }
  .footer-brand {
    max-width:350px;
    margin-block:8px;
  }
  .footer-about>p:last-child {
    font-size:14px;
  }
  .footer-invite {
    padding-top:0;
  }
  .footer-invite h2 {
    font-size:clamp(42px,11vw,64px);
  }
  .footer-bottom {
    flex-wrap:wrap;
    padding-block:20px;
    gap:10px 20px;
  }
  .footer-bottom p {
    width:100%;
  }
  .footer-bottom nav {
    gap:20px;
  }
}

/* Let the recording timeline control scrolling without CSS smooth-scroll lag. */
html.is-recording {
  scroll-behavior:auto;
}
html.is-recording body {
  cursor:none;
}

/* Desktop navigation: underline expands, then draws the other three edges. */
@media(min-width:701px) {
  .site-header .nav-contact .icon {order:-1}
  .site-header nav a {
    position:relative;
    padding:13px 17px;
    text-decoration:none;
  }
  .site-header nav a:hover {text-decoration:none}
  .site-header nav a::before,.site-header nav a::after {
    content:"";
    position:absolute;
    pointer-events:none;
  }
  .site-header nav a::after {
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:currentColor;
    transform:scaleX(.55);
    transition:transform .25s ease;
  }
  .site-header nav a::before {
    inset:0;
    border:1px solid currentColor;
    border-bottom:0;
    clip-path:inset(100% 0 0 0);
    transition:clip-path .35s ease;
  }
  .site-header nav a:hover::after {transform:scaleX(.8)}
  .site-header nav a.is-selected::after,
  .site-header nav a:active::after,
  .site-header nav a:focus-visible::after {transform:scaleX(1)}
  .site-header nav a.is-selected::before,
  .site-header nav a:active::before,
  .site-header nav a:focus-visible::before {
    clip-path:inset(0);
    transition-delay:.18s;
  }
}
