/* ==========================================
   CASSATA GELATO — Coming Soon
   ========================================== */

:root {
  --navy:      #1B3A5C;
  --navy-deep: #112438;
  --orange:    #E8873A;
  --orange-lt: #F4A861;
  --cream:     #FAF8F3;
  --cream-2:   #F0EBE0;
  --white:     #FFFFFF;
  --text:      #1C1C1C;
  --text-muted:#6B6B6B;
  --border:    rgba(27,58,92,0.12);

  --sans: 'Inter', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   PAGE WRAPPER
   ========================================== */
.page {
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}

/* Background texture — body'de fixed, overflow:hidden olmadan */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232,135,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================
   TOP BAR
   ========================================== */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}

.topbar__logo {
  display: block;
  text-decoration: none;
}

.topbar__logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.topbar__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.topbar__location svg {
  color: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ==========================================
   MAIN
   ========================================== */
.main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  padding: 40px 0 48px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(232,135,58,0.45);
}

.hero__title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__title span {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

/* ==========================================
   CONCEPT GRID
   ========================================== */
.concept {
  padding: 0 0 48px;
}

.concept__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.concept__item {
  background: rgba(255,255,255,0.03);
  padding: 32px 28px;
  transition: background 0.25s ease;
}

.concept__item:hover {
  background: rgba(255,255,255,0.06);
}

.concept__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0.85;
}

.concept__item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.concept__item p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
  padding: 0 0 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

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

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery__item--tall {
    grid-row: span 2;
  }
  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }
}

/* ==========================================
   TAGLINE
   ========================================== */
.tagline {
  padding: 0 0 48px;
}

.tagline p {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.3);
  border-left: 2px solid rgba(232,135,58,0.4);
  padding-left: 20px;
  max-width: 680px;
}

/* ==========================================
   BIG LOGO
   ========================================== */
.big-logo {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 48px 48px 0;
  opacity: 1;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
}

.big-logo__img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  /* Safari SVG boyut fix */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 28px 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

a.footer__contact-item:hover {
  color: var(--orange);
}

.footer__contact-item svg {
  color: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}

.footer__sep {
  color: rgba(255,255,255,0.15);
  font-size: 16px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
.br-desktop { display: block; }

@media (max-width: 900px) {
  .concept__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .br-desktop { display: none; }
}

@media (max-width: 768px) {
  .topbar { padding: 20px 20px; }
  .topbar__logo-img { height: 30px; }
  .topbar__location { font-size: 12px; }

  .main { padding: 0 20px; }

  .hero { padding: 24px 0 32px; }
  .hero__title { font-size: 40px; letter-spacing: -0.03em; }
  .hero__sub { font-size: 14px; }
  .hero__tag { font-size: 11px; padding: 8px 16px; }

  .concept__grid { grid-template-columns: 1fr 1fr; }
  .concept__item { padding: 24px 20px; }

  .big-logo { padding: 32px 20px 0; }

  .footer { padding: 20px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__contact { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .concept__grid { grid-template-columns: 1fr; }
  .tagline p { font-size: 13px; }
}
