/* Minimal, image-forward portfolio theme */
:root{
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;

  /* Warm-luxury palette */
  --bg:#f6f3ee;
  --card:#fffdf8;
  --muted:#6f675d;
  --text:#1a1a1a;
  --border:rgba(26,26,26,.12);
  --accent:#b89b72; /* soft warm gold */
  --shadow: 0 18px 50px rgba(26,26,26,.12);
  --radius:20px;
  --max:1100px;
}

h1,h2,h3,.brand__name{
  font-family: var(--font-serif);
  letter-spacing: .5px;
}
h1{
  font-weight: 350;
  letter-spacing: 1px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  background:
    radial-gradient(1100px 700px at 20% 0%, rgba(184,155,114,.14), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(0,0,0,.05), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(246,243,238,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand__name{font-weight:650; letter-spacing:.2px}
.brand__tag{font-size:13px; color:var(--muted); margin-top:2px}
.nav{display:flex; gap:16px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}
.nav__cta{
  padding:8px 12px;
  border:1px solid rgba(184,155,114,.55);
  border-radius:999px;
  color:var(--text) !important;
  background: rgba(184,155,114,.12);
}
.hero{padding:42px 0 18px}
.hero__inner{
  display:grid; gap:22px;
  grid-template-columns: 1.05fr .95fr;
}
@media (max-width: 920px){
  .hero__inner{grid-template-columns:1fr}
}
.hero__copy h1{
  font-size:56px; line-height:1.05; margin:0 0 12px;
  letter-spacing:-.4px;
}
@media (max-width: 520px){
  .hero__copy h1{font-size:38px}
}
.hero__copy p{margin:0 0 18px; color:var(--muted); max-width: 62ch}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:999px;
  border:1px solid var(--border);
  font-weight:600; font-size:14px;
}
.btn--primary{background:var(--accent); border-color:var(--accent); color:#fff}
.btn--ghost{background:transparent; border-color:rgba(26,26,26,.18)}
.hero__meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  font-size:13px; color:var(--muted);
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--border);
}
.feature-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(184,155,114,.10), rgba(255,255,255,.75));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.feature-card__label{
  padding:10px 14px; font-size:13px; color:var(--muted);
  border-bottom:1px solid var(--border);
}
.feature-card img{width:100%; height: 360px; object-fit:cover; display:block}
.section{padding:34px 0}
.section--muted{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head h2{margin:0 0 6px; font-size:26px}
.section__head p{margin:0; color:var(--muted)}
.tabs{display:flex; gap:10px; margin:18px 0 16px; flex-wrap:wrap}
.tab{
  cursor:pointer;
  background:transparent;
  color:var(--muted);
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  font-size:14px;
}
.tab.is-active{color:var(--text); background:rgba(255,255,255,.10)}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 920px){
  .gallery{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr}
}
.tile{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--card);
  cursor:pointer;
}
.tile img{
  width:100%; height: 240px; object-fit:cover; display:block;
  transform: scale(1.01);
  transition: transform .25s ease;
}
.tile:hover img{transform: scale(1.04)}
.tile__badge{
  position:absolute; left:10px; top:10px;
  font-size:12px; color:rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  padding:6px 9px; border-radius:999px;
  backdrop-filter: blur(8px);
}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:16px;
}
.about{display:grid; gap:16px; grid-template-columns: 1.1fr .9fr}
@media (max-width: 920px){
  .about{grid-template-columns:1fr}
}
.about__grid{display:grid; gap:12px; grid-template-columns: 1fr 1fr; margin-top:14px}
@media (max-width: 720px){
  .about__grid{grid-template-columns:1fr}
}
.card h3{margin:0 0 8px; font-size:16px}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card p{color:var(--muted); margin:0}
.kv{display:grid; grid-template-columns: 110px 1fr; gap:10px; margin-top:10px}
.kv__k{color:var(--muted); font-size:13px}
.kv__v{font-size:14px}
.contact__grid{display:grid; gap:12px; grid-template-columns: 1fr 1.2fr}
@media (max-width: 920px){
  .contact__grid{grid-template-columns:1fr}
}
.form label{display:block; margin-top:10px}
.form span{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input,textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
.form__hint{margin-top:10px; font-size:13px; color:var(--muted)}
.footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
}
.footer__inner{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.lightbox{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.78);
  padding:16px;
  z-index:100;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height:84vh;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.lightbox__caption{
  position:fixed;
  bottom:16px;
  left:50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  max-width: 92vw;
  text-align:center;
}
.lightbox__close{
  position:fixed;
  top:14px;
  right:14px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}


/* Cinematic walkthrough section */
.cinematic-video{
  padding: 96px 0;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(184,155,114,.22), rgba(246,243,238,0)),
    linear-gradient(180deg, rgba(246,243,238,0), rgba(184,155,114,.10));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cinematic-video__header{
  text-align: center;
  margin: 0 auto 28px;
  max-width: 720px;
}

.cinematic-video__header h2{
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 28px;
}

.cinematic-video__header p{
  margin: 0;
  color: var(--muted);
}

.cinematic-video__frame{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 26px 60px rgba(26,26,26,.18);
  border: 1px solid rgba(184,155,114,.30);
5,255,.10);
  background: #000;
}

.cinematic-video__frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px){
  .cinematic-video{ padding: 72px 0; }
  .cinematic-video__header h2{ font-size: 22px; }
}


/* Subtle reveal-on-scroll animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; filter:none; transition:none;}
}
.hidden{display:none;}

::selection{background: rgba(184,155,114,.35)}
