/* =====================================================================
   HBO PARTNERS — SHARED DESIGN SYSTEM
   ---------------------------------------------------------------------
   ► SINGLE SOURCE OF TRUTH FOR THE WHOLE SITE.
   ► To re-theme the entire website, edit the CSS variables in :root below.
   ► "HBO Partners" (Hospitality Business Partners).
   ===================================================================== */

/* ============ RESET ============ */
* { margin:0; padding:0; box-sizing:border-box; }

/* ============ 🎨 CENTRAL COLOR PALETTE (edit here to re-theme) ============ */
:root{
  /* ---- HBO Partners palette ----
     60–70% warm ivory · 20–30% midnight navy · 5–10% charcoal/slate · 3–5% brass
     The old --steel / --steel-light variable names are kept but now hold BRASS,
     so every accent across the site becomes brass without touching each rule. */
  --navy:#13283C;        /* midnight navy — primary dark */
  --navy-2:#1b3550;      /* slightly lifted navy */
  --navy-deep:#0e1e2e;   /* deepest navy for footer / gradients */
  --steel:#A98B5B;       /* BRASS — primary accent (thin lines, active states) */
  --steel-light:#c7ab7d; /* lighter brass — accents on dark backgrounds */
  --steel-pale:#F5F2EB;  /* warm ivory — alternating section background */
  --cream:#FCFBF8;       /* soft white — default page background */
  --paper:#FFFFFF;       /* pure white cards/surfaces */
  --ink:#25282A;         /* charcoal — body/headings on light */
  --ink-soft:#667785;    /* slate — secondary text */
  --line:#e7e1d5;        /* warm hairline */
  --gold:#A98B5B;        /* brass (alias) */
  --ease:cubic-bezier(.22,1,.36,1);

  /* --- BRAND WORD COLORS (used in portfolio buttons) --- */
  --brand-radisson:#000000;   /* "Radisson" word */
  --brand-red:#E22630;        /* "RED" — NOTE: you provided "#22630" (5 digits / invalid). Assumed #E22630. Change here. */
  --brand-blu:#164194;        /* "BLU" word */
  /* "TRYP by Wyndham" keeps the default ink color (unchanged) */

  /* --- LAYOUT --- */
  --maxw:1240px;
}

html{ scroll-behavior:smooth; }
body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.serif{ font-family:'Playfair Display',serif; font-weight:600; letter-spacing:-.01em; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 40px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--steel); font-weight:600; margin-bottom:18px;
}
.eyebrow::before{ content:""; width:28px; height:1px; background:var(--steel); }
.section{ padding:130px 0; position:relative; }
.section-head{ max-width:640px; margin-bottom:70px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(30px,4vw,46px); line-height:1.15; color:var(--navy); }
.section-head p{ margin-top:18px; color:var(--ink-soft); font-size:17px; line-height:1.7; }

/* ============ PLACEHOLDER MARKER (visible cue in edit, subtle live) ============ */
.ph{ /* wrap any placeholder copy/element in class="ph" to find it fast */ }
[data-placeholder]{ position:relative; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 32px; border-radius:2px; font-size:13.5px; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; cursor:pointer;
  border:1px solid transparent; transition:all .45s var(--ease); position:relative; overflow:hidden;
}
.btn-primary{ background:var(--steel); color:#fff; }
.btn-primary:hover{ background:var(--navy); transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(19,40,60,.5); }
.btn-ghost{ border-color:rgba(255,255,255,.4); color:#fff; }
.btn-ghost:hover{ background:#fff; color:var(--navy); }
.btn-dark{ background:var(--navy); color:#fff; }
.btn-dark:hover{ background:var(--steel); transform:translateY(-2px); }
.btn-outline{ border-color:var(--steel); color:var(--steel); }
.btn-outline:hover{ background:var(--steel); color:#fff; }
.btn svg{ width:15px; height:15px; transition:transform .4s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-d1{ transition-delay:.08s; } .reveal-d2{ transition-delay:.16s; } .reveal-d3{ transition-delay:.24s; } .reveal-d4{ transition-delay:.32s; } .reveal-d5{ transition-delay:.4s; }

/* ============ PRELOADER ============ */
#preloader{
  position:fixed; inset:0; background:var(--navy); z-index:9999;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:18px;
  transition:opacity .8s var(--ease), visibility .8s var(--ease);
}
#preloader.done{ opacity:0; visibility:hidden; }
#preloader .mark{ font-family:'Playfair Display',serif; font-size:34px; letter-spacing:.05em; color:#fff; opacity:0; animation:markFade 1s var(--ease) forwards .2s; }
#preloader .bar{ width:180px; height:1px; background:rgba(255,255,255,.15); overflow:hidden; }
#preloader .bar span{ display:block; height:100%; width:0%; background:var(--steel-light); animation:loadBar 1.4s var(--ease) forwards .3s; }
@keyframes markFade{ to{ opacity:1; } }
@keyframes loadBar{ to{ width:100%; } }

/* scroll progress */
#progress{ position:fixed; top:0; left:0; height:3px; background:linear-gradient(90deg,var(--steel),var(--steel-light)); width:0%; z-index:1001; transition:width .1s linear; }

/* custom cursor */
#cursor{ position:fixed; top:0; left:0; width:10px; height:10px; border-radius:50%; background:var(--steel-light); pointer-events:none; z-index:1000; transform:translate(-50%,-50%); transition:width .3s var(--ease),height .3s var(--ease),opacity .3s; mix-blend-mode:difference; }
#cursor.grow{ width:44px; height:44px; background:rgba(255,255,255,.9); }
@media (max-width:900px){ #cursor{ display:none; } }

/* ============ NAV / HEADER ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:26px 0; transition:all .5s var(--ease);
}
header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
header.scrolled{ padding:14px 0; background:rgba(19,40,60,.94); backdrop-filter:blur(14px); box-shadow:0 10px 30px -20px rgba(0,0,0,.4); }
/* Solid header variant for interior pages (no dark hero behind it) */
header.solid{ background:rgba(19,40,60,.97); backdrop-filter:blur(14px); }
.logo{ display:flex; align-items:center; gap:10px; font-family:'Playfair Display',serif; font-size:22px; color:#fff; letter-spacing:.03em; }
.logo span{ color:var(--steel-light); }

nav ul{ display:flex; gap:34px; align-items:center; }
nav a{ color:#fff; font-size:13.5px; letter-spacing:.04em; text-transform:uppercase; font-weight:500; position:relative; padding:6px 0; }
/* the sliding blue underline (kept as requested, applied to all nav links) */
nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--steel-light); transition:width .4s var(--ease); }
nav a:hover::after, nav a.active::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:20px; }

/* language switcher (top-right) */
.lang-switch{ display:flex; align-items:center; gap:2px; border:1px solid rgba(255,255,255,.28); border-radius:2px; overflow:hidden; }
.lang-switch button{
  background:transparent; border:none; color:rgba(255,255,255,.7); cursor:pointer;
  font-family:'Inter',sans-serif; font-size:12px; font-weight:600; letter-spacing:.06em;
  padding:8px 11px; transition:all .35s var(--ease);
}
.lang-switch button:hover{ color:#fff; }
.lang-switch button.active{ background:var(--steel); color:#fff; }

.burger{ display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.burger span{ width:24px; height:1.5px; background:#fff; transition:all .4s var(--ease); }

/* Desktop / iMac / landscape iPad keep full nav. Collapse below 980px (portrait iPad + phones). */
@media (max-width:980px){
  nav{ display:none; }
  .nav-cta .btn{ display:none; }
  .burger{ display:flex; }
}

/* mobile menu (hamburger target) */
#mobileMenu{ position:fixed; inset:0; background:var(--navy); z-index:1200; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px; transform:translateY(-100%); transition:transform .6s var(--ease); }
#mobileMenu.open{ transform:translateY(0); }
#mobileMenu a{ color:#fff; font-family:'Playfair Display',serif; font-size:26px; }
#mobileMenu a:hover{ color:var(--steel-light); }
#mobileMenu .m-lang{ display:flex; gap:8px; margin-top:20px; }
#mobileMenu .m-lang button{ background:transparent; border:1px solid rgba(255,255,255,.3); color:#fff; padding:8px 16px; border-radius:2px; cursor:pointer; font-family:'Inter',sans-serif; letter-spacing:.06em; }
#mobileMenu .m-lang button.active{ background:var(--steel); border-color:var(--steel); }
#mobileMenu .close{ position:absolute; top:30px; right:36px; color:#fff; font-size:34px; cursor:pointer; line-height:1; }

/* ============ HERO ============ */
.hero{
  position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center;
  padding:150px 0 120px;   /* top clears the fixed header · bottom keeps the dark section going after the text */
  background:radial-gradient(circle at 30% 20%, #1c3a55 0%, var(--navy) 55%, var(--navy-deep) 100%);
  overflow:hidden; color:#fff;
}
/* 🖼️ HERO BACKGROUND IMAGE — replace the URL below with your own 4K hotel photo later */
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1590381105924-c72589b9ef3f?q=80&w=2400&auto=format&fit=crop');
  background-size:cover; background-position:center;
  opacity:1;                      /* image now fully visible (blue wash removed) */
  animation:kenburns 26s ease-in-out infinite alternate;
}
/* Light scrim only — just enough contrast for the white text, image stays clear */
.hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,20,31,.40) 0%, rgba(10,20,31,.22) 42%, rgba(10,20,31,.55) 78%, rgba(10,20,31,.82) 100%); }
.hero h1, .hero p.lead, .hero .eyebrow, .hero-side{ text-shadow:0 2px 18px rgba(6,12,20,.5); }
@keyframes kenburns{ 0%{ transform:scale(1) translate(0,0);} 100%{ transform:scale(1.12) translate(-1%,-2%);} }
.hero .container{ position:relative; z-index:2; padding-top:0; }
.hero-grid{ display:grid; grid-template-columns:1.62fr .58fr; gap:56px; align-items:end; }
.hero h1{ font-size:clamp(40px,5.4vw,74px); line-height:1.08; }
.hero h1 em{ font-style:italic; color:var(--steel-light); }
.hero p.lead{ margin-top:26px; font-size:18px; line-height:1.75; color:rgba(255,255,255,.72); max-width:520px; }
.hero .cta-row{ display:flex; gap:18px; margin-top:42px; flex-wrap:wrap; }
.hero-side{ border-left:1px solid rgba(255,255,255,.18); padding-left:34px; }
.hero-side p{ font-size:14.5px; line-height:1.8; color:rgba(255,255,255,.6); }
.hero-side .tag{ font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--steel-light); margin-bottom:12px; display:block; }
.scroll-cue{ position:absolute; bottom:36px; left:40px; display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.55); font-size:12px; letter-spacing:.18em; text-transform:uppercase; z-index:2; }
.scroll-cue .line{ width:1px; height:46px; background:rgba(255,255,255,.3); position:relative; overflow:hidden; }
.scroll-cue .line::after{ content:""; position:absolute; top:-46px; left:0; width:100%; height:46px; background:#fff; animation:cueDrop 2.2s infinite; }
@keyframes cueDrop{ to{ top:46px; } }

/* stat strip — generously spaced so the four figures breathe */
.stat-strip{ position:relative; z-index:2; margin-top:110px; border-top:1px solid rgba(255,255,255,.16); background:rgba(10,20,31,.28); backdrop-filter:blur(2px); }
.stat-strip .container{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat-strip .stat{ padding:40px 38px; border-right:1px solid rgba(255,255,255,.16); text-align:left; }
.stat-strip .stat:first-child{ padding-left:0; }
.stat-strip .stat:last-child{ border-right:none; padding-right:0; }
.stat-strip .num{ font-family:'Playfair Display',serif; font-size:40px; color:#fff; line-height:1; }
.stat-strip .num span{ color:var(--steel-light); }
.stat-strip .lbl{ font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.66); margin-top:14px; line-height:1.6; max-width:190px; }

/* ============ INTERIOR PAGE HEADER (sub-pages) ============ */
.page-hero{
  position:relative; padding:190px 0 90px; color:#fff; overflow:hidden;
  background:radial-gradient(circle at 25% 15%, #1c3a55 0%, var(--navy) 60%, var(--navy-deep) 100%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .eyebrow{ color:var(--steel-light); }
.page-hero .eyebrow::before{ background:var(--steel-light); }
.page-hero h1{ font-size:clamp(34px,5vw,60px); line-height:1.1; color:#fff; max-width:900px; }
.page-hero p{ margin-top:20px; color:rgba(255,255,255,.72); font-size:17px; line-height:1.7; max-width:640px; }
.breadcrumb{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:22px; }
.breadcrumb a:hover{ color:var(--steel-light); }

/* ============ TRUST BAR ============ */
/* extra breathing room after the hero before the brand bar */
.trust{ background:var(--paper); padding:92px 0 64px; border-bottom:1px solid var(--line); }
.trust .container{ display:flex; align-items:center; gap:48px; row-gap:28px; flex-wrap:wrap; justify-content:space-between; }
.trust .label{ font-size:12px; letter-spacing:.15em; text-transform:uppercase; color:var(--ink-soft); white-space:nowrap; }
.trust .marks{ display:flex; gap:40px; flex-wrap:wrap; align-items:center; }
/* brand buttons with sliding underline */
.brand-btn{
  font-family:'Playfair Display',serif; font-size:19px; letter-spacing:.02em;
  position:relative; padding:6px 2px; transition:transform .4s var(--ease); cursor:pointer;
}
.brand-btn::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--steel-light); transition:width .4s var(--ease); }
.brand-btn:hover::after{ width:100%; }
.brand-btn:hover{ transform:translateY(-2px); }
.brand-btn.muted{ opacity:.5; font-size:16px; }

/* ============ ABOUT ============ */
.about{ background:var(--paper); }
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.about-visual{ position:relative; }
/* 👤 AVATAR PLACEHOLDER (replace with real photo of Hakan Oral later) */
.avatar-frame{
  position:relative; aspect-ratio:4/5; border-radius:2px; overflow:hidden;
  background:linear-gradient(160deg,var(--steel-pale),#e3dccd);
  display:flex; align-items:flex-end; justify-content:center;
}
.avatar-frame svg{ width:78%; height:auto; margin-bottom:-2%; }
.avatar-frame .avatar-note{ position:absolute; top:16px; left:16px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--steel); background:rgba(255,255,255,.75); padding:5px 10px; border-radius:2px; }
.about-visual .badge{
  position:absolute; bottom:-30px; right:-30px; background:var(--navy); color:#fff;
  padding:26px 30px; width:200px; box-shadow:0 30px 50px -20px rgba(19,40,60,.4);
}
.about-visual .badge .n{ font-family:'Playfair Display',serif; font-size:32px; color:var(--steel-light); }
.about-visual .badge .t{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; margin-top:6px; color:rgba(255,255,255,.7); line-height:1.5; }
.about-text h2{ font-size:clamp(28px,3.6vw,42px); color:var(--navy); line-height:1.2; }
.about-text p{ margin-top:22px; color:var(--ink-soft); line-height:1.8; font-size:16px; }
.about-text .quote{ margin-top:32px; padding-left:22px; border-left:2px solid var(--steel); font-family:'Playfair Display',serif; font-style:italic; font-size:19px; color:var(--navy); line-height:1.6; }
.about-text .sig{ margin-top:16px; font-size:13px; color:var(--ink-soft); letter-spacing:.04em; }

/* ============ SERVICES (home tabs) ============ */
.services{ background:var(--steel-pale); }
.svc-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:56px; }
.svc-tab{
  padding:13px 24px; border:1px solid var(--line); background:var(--paper); cursor:pointer;
  font-size:13.5px; letter-spacing:.03em; color:var(--ink-soft); transition:all .4s var(--ease); border-radius:2px;
}
.svc-tab.active, .svc-tab:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }
.svc-panels{ position:relative; }
.svc-panel{ display:none; grid-template-columns:.9fr 1.1fr; gap:60px; }
.svc-panel.active{ display:grid; animation:panelIn .6s var(--ease); }
@keyframes panelIn{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.svc-panel .num{ font-family:'Playfair Display',serif; font-size:60px; color:var(--steel-light); line-height:1; margin-bottom:18px; }
.svc-panel h3{ font-size:28px; color:var(--navy); margin-bottom:16px; }
.svc-panel p{ color:var(--ink-soft); line-height:1.8; font-size:15.5px; }
.svc-list{ background:var(--paper); padding:36px 40px; border:1px solid var(--line); }
.svc-list li{ padding:13px 0; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:14px; font-size:14.5px; color:var(--ink); transition:padding-left .35s var(--ease); cursor:pointer; }
.svc-list li:last-child{ border-bottom:none; }
.svc-list li:hover{ padding-left:8px; color:var(--steel); }
.svc-list li::before{ content:""; width:6px; height:6px; background:var(--steel); flex-shrink:0; transform:rotate(45deg); }

/* ============ BRAND SLIDER (marquee of brands Hakan Oral has worked with) ============ */
.brand-strip{ background:var(--navy); padding:38px 0; overflow:hidden; position:relative; }
.brand-strip .cap{ text-align:center; color:var(--steel-light); font-size:12px; letter-spacing:.22em; text-transform:uppercase; margin-bottom:26px; }
.brand-track-wrap{ position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.brand-track{ display:flex; width:max-content; gap:70px; align-items:center; animation:brandScroll 32s linear infinite; }
.brand-strip:hover .brand-track{ animation-play-state:paused; }
.brand-track span{
  font-family:'Playfair Display',serif; font-size:26px; color:rgba(255,255,255,.62);
  letter-spacing:.02em; white-space:nowrap; transition:color .4s var(--ease);
  flex:0 0 auto;
}
.brand-track span:hover{ color:var(--steel-light); }
@keyframes brandScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .brand-track{ animation:none; justify-content:center; flex-wrap:wrap; } }

/* ============ SERVICES CLOSING (One Partner …) ============ */
.svc-closing{ background:var(--navy); color:#fff; text-align:center; }
.svc-closing h2{ color:#fff; font-size:clamp(26px,3.4vw,40px); max-width:820px; margin:0 auto; line-height:1.25; }
.svc-closing .flow{
  margin:34px auto 0; max-width:900px; display:flex; flex-wrap:wrap; gap:12px 10px; justify-content:center;
}
.svc-closing .flow span{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--steel-light); }
.svc-closing .flow span:not(:last-child)::after{ content:"→"; margin-left:12px; color:rgba(255,255,255,.4); }
.svc-closing p{ margin-top:30px; color:rgba(255,255,255,.7); max-width:760px; margin-left:auto; margin-right:auto; line-height:1.8; font-size:16px; }

/* ============ SERVICES PAGE (full list) ============ */
.svc-full{ background:var(--paper); }
.svc-block{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; padding:70px 0; border-bottom:1px solid var(--line); }
.svc-block:last-child{ border-bottom:none; }
.svc-block .num{ font-family:'Playfair Display',serif; font-size:72px; color:var(--steel-light); line-height:1; }
.svc-block h3{ font-size:26px; color:var(--navy); margin:14px 0 16px; }
.svc-block .lead{ color:var(--ink-soft); line-height:1.8; font-size:15.5px; }
/* 🖼️ image slot for each service (add photos later) */
.svc-block .img-slot{ margin-top:26px; aspect-ratio:16/9; background:linear-gradient(135deg,var(--steel-pale),#e8e1d3); display:flex; align-items:center; justify-content:center; color:var(--steel); font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; border:1px dashed rgba(169,139,91,.4); }
/* real service photo */
.svc-block .svc-img{ margin-top:26px; width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:2px; box-shadow:0 24px 50px -34px rgba(19,40,60,.5); }
@media (max-width:900px){ .svc-block{ grid-template-columns:1fr; gap:26px; } }

/* ============ WHY US ============ */
.why{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.why::before{ content:""; position:absolute; top:-200px; right:-200px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(169,139,91,.13),transparent 70%); }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.12); margin-top:10px; }
.why-card{ background:var(--navy); padding:44px 34px; transition:background .5s var(--ease); position:relative; }
.why-card:hover{ background:#1b3550; }
.why-card .ic{ width:46px; height:46px; border:1px solid var(--steel-light); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:26px; color:var(--steel-light); font-family:'Playfair Display',serif; font-style:italic; }
.why-card h4{ font-size:18px; margin-bottom:12px; line-height:1.4; }
.why-card p{ font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; }

/* ============ PORTFOLIO (cards + carousels) ============ */
.portfolio{ background:var(--paper); }
.folio-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:34px; }
.folio-card{ position:relative; overflow:hidden; aspect-ratio:5/4; cursor:pointer; background:var(--navy); }
/* --- image carousel inside each card --- */
.carousel{ position:absolute; inset:0; }
.carousel .slide{ position:absolute; inset:0; opacity:0; transition:opacity 1s var(--ease); }
.carousel .slide.active{ opacity:1; }
.carousel .slide img{ width:100%; height:100%; object-fit:cover; transition:transform 6s var(--ease); }
.folio-card:hover .carousel .slide.active img{ transform:scale(1.08); }
/* dots + arrows appear only on hover — no auto-rotation */
.carousel-dots{ position:absolute; bottom:18px; right:20px; display:flex; gap:7px; z-index:4; opacity:0; transition:opacity .35s var(--ease); }
.folio-card:hover .carousel-dots{ opacity:1; }
.carousel-dots button{ width:7px; height:7px; border-radius:50%; border:none; background:rgba(255,255,255,.45); cursor:pointer; padding:0; transition:all .35s var(--ease); }
.carousel-dots button.active{ background:#fff; width:20px; border-radius:4px; }
.carousel-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.94); color:var(--navy); border:none; cursor:pointer; z-index:5;
  display:flex; align-items:center; justify-content:center; font-size:22px; line-height:1;
  opacity:0; transition:opacity .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.folio-card:hover .carousel-nav{ opacity:1; }
.carousel-nav:hover{ background:var(--steel); color:#fff; }
.carousel-nav.prev{ left:16px; } .carousel-nav.next{ right:16px; }
/* touch devices have no hover — always show controls */
@media (hover:none){
  .carousel-nav, .carousel-dots{ opacity:1; }
}
.folio-card .overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,20,31,.92) 0%, rgba(10,20,31,.15) 55%, rgba(10,20,31,.05) 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:32px; color:#fff; z-index:2; pointer-events:none; }
.folio-card .status{ align-self:flex-start; font-size:11px; letter-spacing:.12em; text-transform:uppercase; padding:6px 12px; margin-bottom:14px; border:1px solid rgba(255,255,255,.5); }
.status.open{ background:var(--steel); border-color:var(--steel); }
.status.constr{ background:rgba(255,255,255,.08); }
.status.discuss{ background:rgba(255,255,255,.08); }
.folio-card h4{ font-size:23px; }
.folio-card .loc{ font-size:13px; color:rgba(255,255,255,.65); margin-top:6px; letter-spacing:.03em; }
.folio-card .plus{ position:absolute; top:24px; right:24px; width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.5); display:flex; align-items:center; justify-content:center; color:#fff; transition:all .4s var(--ease); z-index:3; }
.folio-card:hover .plus{ background:#fff; color:var(--navy); transform:rotate(90deg); }

/* ============ PROPERTY DETAIL GALLERY (big slider) ============ */
.gallery{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--navy); border-radius:2px; }
.gallery .slide{ position:absolute; inset:0; opacity:0; transition:opacity .8s var(--ease); }
.gallery .slide.active{ opacity:1; }
.gallery .slide img{ width:100%; height:100%; object-fit:cover; }
.gallery-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.9); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:4; color:var(--navy); transition:all .35s var(--ease); }
.gallery-arrow:hover{ background:var(--steel); color:#fff; }
.gallery-arrow.prev{ left:20px; } .gallery-arrow.next{ right:20px; }
.gallery-dots{ position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:4; }
.gallery-dots button{ width:8px; height:8px; border-radius:50%; border:none; background:rgba(255,255,255,.5); cursor:pointer; padding:0; transition:all .35s var(--ease); }
.gallery-dots button.active{ background:#fff; width:24px; border-radius:4px; }
.gallery-counter{ position:absolute; top:18px; left:20px; z-index:4; background:rgba(10,20,31,.6); color:#fff; font-size:12.5px; letter-spacing:.08em; padding:6px 12px; border-radius:2px; }
.property-layout{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:start; }
.property-meta .status{ display:inline-block; font-size:11px; letter-spacing:.12em; text-transform:uppercase; padding:6px 12px; margin-bottom:18px; border:1px solid var(--steel); color:var(--steel); }
.property-meta h2{ font-size:clamp(26px,3.4vw,38px); color:var(--navy); line-height:1.2; }
.property-meta .facts{ margin-top:28px; border-top:1px solid var(--line); }
.property-meta .facts .row{ display:flex; justify-content:space-between; gap:20px; padding:14px 0; border-bottom:1px solid var(--line); font-size:14.5px; }
.property-meta .facts .row b{ color:var(--navy); }
.property-meta .facts .row span{ color:var(--ink-soft); }
.property-meta p{ margin-top:24px; color:var(--ink-soft); line-height:1.8; font-size:15.5px; }
@media (max-width:900px){ .property-layout{ grid-template-columns:1fr; gap:34px; } }

/* ============ PROCESS ============ */
.process{ background:var(--steel-pale); }
.proc-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.proc-row::before{ content:""; position:absolute; top:26px; left:6%; right:6%; height:1px; background:var(--line); }
.proc-step{ position:relative; padding-top:70px; }
.proc-step .dot{ position:absolute; top:0; left:0; width:52px; height:52px; border-radius:50%; background:var(--paper); border:1px solid var(--steel); display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; color:var(--steel); font-size:18px; transition:all .5s var(--ease); }
.proc-step:hover .dot{ background:var(--steel); color:#fff; transform:scale(1.1); }
.proc-step h4{ font-size:17px; color:var(--navy); margin-bottom:10px; margin-top:20px; }
.proc-step p{ font-size:14px; color:var(--ink-soft); line-height:1.7; padding-right:20px; }

/* ============ TEAM ============ */
.team{ background:var(--paper); }
.team-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:22px; }
.team-card{ position:relative; overflow:hidden; }
.team-photo{ aspect-ratio:3/4; background:linear-gradient(160deg,var(--steel-pale),#e3dccd); display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.team-photo .initials{ font-family:'Playfair Display',serif; font-size:44px; color:var(--steel); opacity:.55; transition:opacity .4s var(--ease); }
/* fade overlay WITH experience text on hover */
.team-photo .hover-text{
  position:absolute; inset:0; background:linear-gradient(0deg,rgba(19,40,60,.97),rgba(13,26,43,.82));
  color:#fff; opacity:0; transition:opacity .45s var(--ease);
  display:flex; align-items:center; padding:24px; font-size:13.5px; line-height:1.65;
}
.team-card:hover .team-photo .hover-text{ opacity:1; }
.team-card:hover .team-photo .initials{ opacity:0; }
.team-info{ padding-top:18px; }
.team-info h4{ font-size:16.5px; color:var(--navy); }
.team-info span{ font-size:12.5px; color:var(--steel); letter-spacing:.04em; }

/* ============ TEAM BIO PAGE ============ */
.bio-layout{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:start; }
.bio-photo{ aspect-ratio:4/5; background:linear-gradient(160deg,var(--steel-pale),#e3dccd); border-radius:2px; overflow:hidden; display:flex; align-items:flex-end; justify-content:center; position:relative; }
.bio-photo svg{ width:80%; }
.bio-photo .avatar-note{ position:absolute; top:16px; left:16px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--steel); background:rgba(255,255,255,.75); padding:5px 10px; border-radius:2px; }
.bio-body h1, .bio-body h2{ font-size:clamp(30px,4vw,46px); color:var(--navy); line-height:1.15; }
/* anchor targets clear the fixed header */
[id]{ scroll-margin-top:120px; }
.bio-body .role{ margin-top:10px; font-size:14px; letter-spacing:.06em; text-transform:uppercase; color:var(--steel); font-weight:600; }
.bio-body p{ margin-top:24px; color:var(--ink-soft); line-height:1.85; font-size:16px; }
@media (max-width:900px){ .bio-layout{ grid-template-columns:1fr; gap:30px; } }

/* ============ TESTIMONIALS ============ */
.testi{ background:var(--navy); color:#fff; position:relative; }
.testi-wrap{ max-width:820px; margin:0 auto; text-align:center; position:relative; min-height:260px; }
.testi-slide{ position:absolute; inset:0; opacity:0; transform:translateY(20px); transition:opacity .7s var(--ease), transform .7s var(--ease); pointer-events:none; }
.testi-slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.testi-slide p{ font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(20px,2.6vw,28px); line-height:1.6; color:#fff; }
.testi-slide .who{ margin-top:28px; font-size:13.5px; color:var(--steel-light); letter-spacing:.05em; text-transform:uppercase; }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:50px; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; border:none; background:rgba(255,255,255,.25); cursor:pointer; transition:all .4s var(--ease); }
.testi-dots button.active{ background:var(--steel-light); width:24px; border-radius:5px; }

/* ============ CAREERS ============ */
.careers{ background:var(--paper); }
.job-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.job-card{ border:1px solid var(--line); padding:34px; transition:all .45s var(--ease); background:var(--paper); }
.job-card:hover{ border-color:var(--steel); transform:translateY(-3px); box-shadow:0 24px 50px -30px rgba(19,40,60,.4); }
.job-card .tag{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--steel); }
.job-card h3{ font-size:21px; color:var(--navy); margin:12px 0 10px; }
.job-card p{ font-size:14.5px; color:var(--ink-soft); line-height:1.7; }
.job-card .meta{ margin-top:18px; display:flex; gap:18px; font-size:12.5px; color:var(--ink-soft); }
@media (max-width:760px){ .job-grid{ grid-template-columns:1fr; } }

/* ============ CONTACT / FORM ============ */
.contact{ background:var(--paper); }
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; }
.contact-info h2{ font-size:clamp(28px,3.6vw,40px); color:var(--navy); line-height:1.2; }
.contact-info p{ margin-top:20px; color:var(--ink-soft); line-height:1.8; }
.contact-details{ margin-top:40px; display:flex; flex-direction:column; gap:22px; }
.contact-details .row{ display:flex; gap:16px; align-items:flex-start; }
.contact-details .ic{ width:40px; height:40px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--steel); flex-shrink:0; }
.contact-details .row div b{ display:block; font-size:14.5px; color:var(--navy); margin-bottom:3px; }
.contact-details .row div span{ font-size:14px; color:var(--ink-soft); }
form.inquiry{ background:var(--steel-pale); padding:48px; border-radius:2px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:22px; position:relative; }
.field label{ display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:9px; }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border:1px solid var(--line); background:var(--paper);
  font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); transition:border-color .35s, box-shadow .35s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--steel); box-shadow:0 0 0 3px rgba(169,139,91,.18); }
.field textarea{ resize:vertical; min-height:110px; }
.field-note{ font-size:12px; color:var(--ink-soft); margin-top:20px; }

/* --- CV upload + consent (careers form) --- */
.field input[type="file"]{ padding:12px 14px; cursor:pointer; font-size:13.5px; }
.field input[type="file"]::file-selector-button{
  font-family:'Inter',sans-serif; font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  padding:9px 16px; margin-right:14px; border:none; border-radius:2px;
  background:var(--navy); color:#fff; cursor:pointer; transition:background .35s var(--ease);
}
.field input[type="file"]::file-selector-button:hover{ background:var(--steel); }
.consent{ display:flex; gap:13px; align-items:flex-start; margin:6px 0 24px; }
.consent input[type="checkbox"]{ width:18px; height:18px; margin-top:2px; flex-shrink:0; accent-color:var(--steel); cursor:pointer; }
.consent label{
  font-size:13.5px; color:var(--ink-soft); line-height:1.6;
  text-transform:none; letter-spacing:0; margin:0; cursor:pointer;
}
.consent label a{ color:var(--steel); text-decoration:underline; }
.careers-wrap{ max-width:860px; margin:0 auto; }
.form-status{ margin-top:16px; font-size:14px; display:none; padding:12px 16px; border-radius:2px; }
.form-status.show{ display:block; }
.form-status.ok{ background:rgba(46,125,90,.12); color:#1f6b47; border:1px solid rgba(46,125,90,.3); }
.form-status.err{ background:rgba(200,60,60,.1); color:#a83232; border:1px solid rgba(200,60,60,.3); }

/* ============ FOOTER ============ */
footer{ background:var(--navy-deep); color:rgba(255,255,255,.65); padding:80px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1); }
.foot-brand .logo{ margin-bottom:18px; }
.foot-brand p{ font-size:14px; line-height:1.8; max-width:280px; }
.foot-col h5{ color:#fff; font-size:13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:22px; }
.foot-col ul li{ margin-bottom:13px; }
.foot-col ul a{ font-size:14px; transition:color .35s, padding-left .35s; }
.foot-col ul a:hover{ color:var(--steel-light); padding-left:4px; }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:30px; font-size:12.5px; flex-wrap:wrap; gap:14px; }
.foot-social{ display:flex; gap:12px; }
.foot-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; font-size:13px; transition:all .35s; }
.foot-social a:hover{ background:var(--steel); border-color:var(--steel); color:#fff; }

/* back to top */
#toTop{ position:fixed; bottom:30px; right:30px; width:50px; height:50px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:500; opacity:0; visibility:hidden; transform:translateY(10px); transition:all .4s var(--ease); }
#toTop.show{ opacity:1; visibility:visible; transform:translateY(0); }
#toTop:hover{ background:var(--steel); }

::selection{ background:var(--steel); color:#fff; }

/* =====================================================================
   PORTFOLIO PAGE — hotels stacked top-to-bottom, images 60% / text 40%
   ===================================================================== */
.folio-page{ background:var(--paper); }
.folio-row{
  display:grid; grid-template-columns:1.5fr 1fr;  /* ≈60% images / 40% text */
  gap:64px; align-items:center;
  padding:96px 0; border-bottom:1px solid var(--line);
}
.folio-row:first-of-type{ padding-top:20px; }
.folio-row:last-of-type{ border-bottom:none; }
.folio-row .rowtext .status{ display:inline-block; font-size:11px; letter-spacing:.12em; text-transform:uppercase; padding:6px 12px; margin-bottom:18px; border:1px solid var(--steel); color:var(--steel); }
.folio-row .rowtext h2{ font-size:clamp(26px,3.2vw,38px); color:var(--navy); line-height:1.2; }
.folio-row .rowtext .facts{ margin-top:26px; border-top:1px solid var(--line); }
.folio-row .rowtext .facts .row{ display:flex; justify-content:space-between; gap:20px; padding:13px 0; border-bottom:1px solid var(--line); font-size:14.5px; }
.folio-row .rowtext .facts .row b{ color:var(--navy); font-weight:600; }
.folio-row .rowtext .facts .row span{ color:var(--ink-soft); text-align:right; }
.folio-row .rowtext p{ margin-top:24px; color:var(--ink-soft); line-height:1.85; font-size:15.5px; }

/* zoom affordance on manual galleries */
.gallery.zoomable .slide img{ cursor:zoom-in; }
.gallery .zoom-hint{
  position:absolute; top:18px; right:20px; z-index:4;
  background:rgba(10,20,31,.6); color:#fff; font-size:11.5px; letter-spacing:.1em;
  text-transform:uppercase; padding:7px 12px; border-radius:2px;
  opacity:0; transition:opacity .35s var(--ease); pointer-events:none;
}
.gallery:hover .zoom-hint{ opacity:1; }

/* =====================================================================
   LIGHTBOX — click an image to enlarge (~80% of screen)
   ===================================================================== */
.lightbox{
  position:fixed; inset:0; background:rgba(6,12,20,.95); z-index:3000;
  display:none; align-items:center; justify-content:center;
  opacity:0; transition:opacity .35s var(--ease);
}
.lightbox.open{ display:flex; opacity:1; }
.lightbox img{
  max-width:80vw; max-height:80vh; object-fit:contain;
  box-shadow:0 40px 100px -30px rgba(0,0,0,.9); border-radius:2px;
}
.lightbox .lb-close{
  position:absolute; top:24px; right:32px; width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28);
  color:#fff; font-size:26px; line-height:1; cursor:pointer; z-index:2;
  display:flex; align-items:center; justify-content:center; transition:background .3s var(--ease);
}
.lightbox .lb-close:hover{ background:rgba(255,255,255,.26); }
.lightbox .lb-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:58px; height:58px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28);
  color:#fff; font-size:26px; line-height:1; cursor:pointer; z-index:2;
  display:flex; align-items:center; justify-content:center; transition:background .3s var(--ease);
}
.lightbox .lb-arrow:hover{ background:rgba(255,255,255,.26); }
.lightbox .lb-arrow.prev{ left:34px; } .lightbox .lb-arrow.next{ right:34px; }
.lightbox .lb-counter{
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.8); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
}
body.lb-open{ overflow:hidden; }

/* =====================================================================
   TEAM PAGE — all members in one list, seniority order
   ===================================================================== */
.team-page{ background:var(--paper); }
.team-row{
  display:grid; grid-template-columns:.8fr 1.2fr;   /* same proportions as the old bio pages */
  gap:60px; align-items:start;
  padding:80px 0; border-bottom:1px solid var(--line);
}
.team-row:first-of-type{ padding-top:20px; }
.team-row:last-of-type{ border-bottom:none; }

/* =====================================================================
   RESPONSIVE — tuned for iMac / 13–15" laptop / 11" iPad / iPhone
   ===================================================================== */
/* large desktop / iMac */
@media (min-width:1600px){ :root{ --maxw:1360px; } }

/* laptops keep default */

/* iPad landscape & small laptops */
@media (max-width:1100px){
  .container{ padding:0 32px; }
  .section{ padding:100px 0; }
}

/* iPad portrait (834px) */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-side{ border-left:none; border-top:1px solid rgba(255,255,255,.18); padding-left:0; padding-top:24px; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid{ grid-template-columns:repeat(3,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; }
}

/* between tablet and phone */
@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-visual .badge{ position:static; width:auto; margin-top:20px; display:flex; gap:16px; align-items:center; }
  .svc-panel{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  form.inquiry{ padding:30px; }
  .stat-strip .container{ grid-template-columns:repeat(2,1fr); }
  .proc-row{ grid-template-columns:1fr; gap:40px; }
  .proc-row::before{ display:none; }
  .folio-grid{ grid-template-columns:1fr; }
  .page-hero{ padding:150px 0 70px; }
  /* portfolio + team pages stack: images on top, text below */
  .folio-row{ grid-template-columns:1fr; gap:34px; padding:64px 0; }
  .team-row{ grid-template-columns:1fr; gap:30px; padding:56px 0; }
  .team-row .bio-photo{ max-width:320px; }
  .lightbox img{ max-width:92vw; max-height:76vh; }
  .lightbox .lb-arrow{ width:46px; height:46px; }
  .lightbox .lb-arrow.prev{ left:12px; } .lightbox .lb-arrow.next{ right:12px; }
}

/* iPhone */
@media (max-width:600px){
  .container{ padding:0 22px; }
  .section{ padding:80px 0; }
  .why-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr; }
  .trust .container{ gap:20px; }
  .trust .marks{ gap:24px; }
  .gallery-arrow{ width:42px; height:42px; }
  .section-head{ margin-bottom:44px; }
  /* stat strip: 2x2 with clear separation on phones */
  .stat-strip{ margin-top:70px; }
  .stat-strip .stat{ padding:26px 18px; }
  .stat-strip .stat:first-child, .stat-strip .stat:last-child{ padding-left:18px; padding-right:18px; }
  .stat-strip .stat:nth-child(2){ border-right:none; }
  .stat-strip .stat:nth-child(1), .stat-strip .stat:nth-child(2){ border-bottom:1px solid rgba(255,255,255,.16); }
  .stat-strip .num{ font-size:32px; }
  .trust{ padding:64px 0 48px; }
}
@media (max-width:400px){
  .team-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:34px; }
}
