/* Sofuoğlu Event — Brand System */
:root {
  --navy-900: #0B1A2B;
  --navy-800: #102539;
  --navy-700: #1A3148;
  --navy-600: #25425E;
  --ivory: #F7F2EA;
  --beige-100: #EFE6D6;
  --beige-200: #E2D3B8;
  --beige-300: #C9B891;
  --gold: #C9A24B;
  --gold-soft: #D8B968;
  --gold-deep: #A47F30;
  --gray-100: #F1EEE8;
  --gray-300: #C9C4BB;
  --gray-500: #8A857C;
  --gray-700: #4A463F;
  --ink: #0E1620;

  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', 'Allura', cursive;
  --font-sans: 'Inter Tight', 'Helvetica Neue', system-ui, sans-serif;

  --container: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
.script { font-family: var(--font-script); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.left::before { display: none; }
.eyebrow.left { padding-left: 0; }
.eyebrow.left::after { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; }
h2 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.25; }
p  { color: var(--gray-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid currentColor;
  color: var(--ivory);
}
.btn-outline:hover { background: var(--ivory); color: var(--navy-900); }
.btn-outline-dark {
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--ivory); }
.btn-ghost {
  color: var(--navy-900);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold-deep); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
}
.site-header.transparent { background: transparent; }
.site-header.solid {
  background: rgba(11, 26, 43, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}
.site-header.light {
  background: var(--ivory);
  border-bottom: 1px solid rgba(11, 26, 43, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  height: 52px;
  width: auto;
  filter: brightness(1) contrast(1);
}
.brand-wordmark { height: 38px; width: auto; }
.brand-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 500;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.header-right { display: flex; align-items: center; gap: 22px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border: 1px solid currentColor;
  padding: 8px 12px;
  border-radius: 2px;
  opacity: 0.85;
}
.lang-switch button {
  padding: 0 4px;
  opacity: 0.5;
  transition: opacity .2s;
}
.lang-switch button.active { opacity: 1; color: var(--gold); }
.lang-switch button:hover { opacity: 1; }
.lang-switch .divider { opacity: 0.4; }
.phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid currentColor;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  opacity: 0.92;
}
.phone-pill svg { width: 14px; height: 14px; }

.header-light .nav-link, .header-light .lang-switch, .header-light .phone-pill, .header-light .brand-link {
  color: var(--navy-900);
}
.header-dark .nav-link, .header-dark .lang-switch, .header-dark .phone-pill, .header-dark .brand-link {
  color: var(--ivory);
}

.menu-btn { display: none; }
@media (max-width: 1024px) {
  .nav-list, .phone-pill { display: none; }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid currentColor;
    border-radius: 2px;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  color: var(--ivory);
  z-index: 200;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { margin-top: 60px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 32px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,75,0.18);
}
.mobile-menu nav a.active { color: var(--gold); }
.mobile-menu .footer-block { margin-top: auto; padding-top: 32px; }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 80px 0 32px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) {
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.site-footer a { color: rgba(247, 242, 234, 0.7); transition: color .2s; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,162,75,0.18);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247, 242, 234, 0.5);
  letter-spacing: 0.1em;
}
@media (max-width: 720px) { .footer-bottom { flex-direction: column; gap: 12px; } }

.footer-brand-block { display: flex; flex-direction: column; gap: 18px; }
.footer-brand-block .wordmark { height: 64px; width: auto; }
.footer-brand-block p { color: rgba(247, 242, 234, 0.6); font-size: 14px; max-width: 320px; }

/* Reusable */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } .section-tight { padding: 56px 0; } }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--gray-500); }

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto;
}
.divider-ornament .line { width: 56px; height: 1px; background: var(--gold); opacity: 0.6; }
.divider-ornament .dot { width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold); }

/* Service card */
.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  cursor: pointer;
  display: block;
  isolation: isolate;
}
.svc-card .img-wrap { aspect-ratio: 4/5; overflow: hidden; }
.svc-card.wide .img-wrap { aspect-ratio: 16/10; }
.svc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.6,.2,1), opacity .4s;
  opacity: 0.85;
}
.svc-card:hover img { transform: scale(1.06); opacity: 1; }
.svc-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,43,0) 30%, rgba(11,26,43,0.85) 100%);
  pointer-events: none;
}
.svc-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card .meta .cat {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.svc-card .meta h3 { color: var(--ivory); font-size: 24px; }
.svc-card .meta .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.svc-card:hover .arrow { opacity: 1; transform: translateY(0); }

/* Category badge */
.cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Page intro / sub-hero */
.page-intro {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,162,75,0.08), transparent 60%);
}
.page-intro h1 { color: var(--ivory); margin-bottom: 18px; position: relative; }
.page-intro .breadcrumb { font-size: 12px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; position: relative; }
.page-intro .breadcrumb a { opacity: 0.7; transition: opacity .2s; }
.page-intro .breadcrumb a:hover { opacity: 1; }
.page-intro .breadcrumb .sep { margin: 0 10px; opacity: 0.4; }
.page-intro p { color: rgba(247, 242, 234, 0.7); max-width: 680px; margin: 18px auto 0; position: relative; }

/* Grids */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }

.grid-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .grid-cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards-4 { grid-template-columns: 1fr; } }

/* CTA panel */
.cta-panel {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/sg-monogram.png');
  background-size: 540px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.cta-panel h2 { color: var(--ivory); position: relative; margin-bottom: 18px; }
.cta-panel p { color: rgba(247,242,234,0.7); position: relative; max-width: 580px; margin: 0 auto 32px; }
.cta-panel .actions { position: relative; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Inputs */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Whatsapp float */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 90;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; color: white; }

/* Hero specifics live in page styles, not here */

/* Utility */
.row { display: flex; gap: 24px; }
.center { text-align: center; }
.muted { color: var(--gray-500); }
.fade-in { opacity: 0; transform: translateY(16px); animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) forwards; }
.fade-in.d1 { animation-delay: .15s; }
.fade-in.d2 { animation-delay: .3s; }
.fade-in.d3 { animation-delay: .45s; }
.fade-in.d4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Alcohol / hospitality policy banner */
.se-alcohol-policy {
  position: relative;
  display: flex;
  gap: 0;
  padding: 40px 44px 44px;
  background: linear-gradient(145deg, rgba(11, 26, 43, 0.035) 0%, rgba(201, 162, 75, 0.09) 55%, rgba(239, 230, 214, 0.6) 100%);
  border: 1px solid rgba(201, 162, 75, 0.38);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(11, 26, 43, 0.06);
}
.se-alcohol-policy .se-policy-accent {
  flex-shrink: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  border-radius: 2px;
  margin: -40px 0 -44px -44px;
  align-self: stretch;
  min-height: 120px;
}
.se-alcohol-policy .se-policy-inner {
  flex: 1;
  padding-left: 28px;
  min-width: 0;
}
@media (max-width: 600px) {
  .se-alcohol-policy {
    flex-direction: column;
    padding: 28px 24px 32px;
  }
  .se-alcohol-policy .se-policy-accent {
    width: 100%;
    height: 4px;
    min-height: 0;
    margin: -28px -24px 20px -24px;
  }
  .se-alcohol-policy .se-policy-inner {
    padding-left: 0;
  }
}
.se-alcohol-policy .se-policy-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 14px;
}
.se-alcohol-policy .se-policy-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.72;
  color: var(--gray-700);
  margin: 0;
  max-width: 52rem;
}
.se-alcohol-policy.compact {
  padding: 26px 28px 30px;
  margin-bottom: 36px;
}
.se-alcohol-policy.compact .se-policy-accent {
  margin: -26px 0 -30px -28px;
}
@media (max-width: 600px) {
  .se-alcohol-policy.compact .se-policy-accent {
    margin: -26px -28px 16px -28px;
  }
}
.se-alcohol-policy.compact .se-policy-inner {
  padding-left: 22px;
}
@media (max-width: 600px) {
  .se-alcohol-policy.compact .se-policy-inner {
    padding-left: 0;
  }
}
.se-alcohol-policy.compact .se-policy-title {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 10px;
}
.se-alcohol-policy.compact .se-policy-body {
  font-size: 14px;
  line-height: 1.68;
}
