
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #2a2a2a; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
  --ink: #0c1420;
  --ink-soft: #1a2a40;
  --gold: #b8963e;
  --gold-lt: #d4af6a;
  --gold-dk: #8a6d28;
  --cream: #f9f6f0;
  --cream-2: #f2ede4;
  --mid: #e8e2d8;
  --muted: #8a8078;
  --white: #ffffff;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: .65rem;
  font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.headline {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1;
  color: var(--ink); letter-spacing: -.5px;
}
.headline em { font-style: italic; color: var(--gold); }

[data-reveal] { opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 38px; border-radius: 0; position: relative;
  transition: all .4s var(--ease); overflow: hidden; cursor: pointer;
}
.cta::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-105%) skewX(-12deg);
  transition: transform .55s var(--ease);
}
.cta:hover::after { transform: translateX(105%) skewX(-12deg); }
.cta-gold { background: var(--gold); color: var(--ink); }
.cta-gold:hover { background: var(--gold-lt); }
.cta-ghost-dark { border: 1px solid var(--ink); color: var(--ink); }
.cta-ghost-dark:hover { background: var(--ink); color: #fff; }

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mid);
  transition: all .35s ease;
}
#nav.solid {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-box {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.logo-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.logo:hover .logo-box { transform: scale(1.06) rotate(-3deg); }
.logo-txt { line-height: 1.2; }
.logo-name {
  font-family: 'Montserrat', sans-serif; font-size: .88rem;
  font-weight: 800; color: var(--ink); letter-spacing: 3px;
}
.logo-name span { color: var(--gold); }
.logo-sub { font-size: .58rem; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links .nl {
  position: relative; display: block; padding: 10px 16px;
  font-family: 'Montserrat', sans-serif; font-size: .72rem;
  font-weight: 600; color: var(--ink); letter-spacing: .5px;
  transition: color .25s; white-space: nowrap;
}
.nav-links .nl:hover, .nav-links .nl.on { color: var(--gold); }
.nav-links .nl::after {
  content: ''; position: absolute; bottom: 5px; left: 16px; right: 16px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links .nl:hover::after, .nav-links .nl.on::after { transform: scaleX(1); }

.nav-r { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all .3s ease;
}
.nav-phone:hover { background: var(--ink); color: var(--gold); }
.nav-phone i { font-size: .8rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: all .35s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob {
  display: none; max-height: 0; overflow: hidden;
  background: #fff; transition: max-height .4s ease;
  border-top: 1px solid var(--mid);
}
.mob.open { max-height: 600px; }
.mob a {
  display: block; padding: 14px 32px;
  font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--mid);
}

#hero {
  min-height: 100vh;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, #faf7f0 0%, #f4ece0 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(184,150,62,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(184,150,62,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute; top: -10%; right: -10%; width: 60%; height: 70%;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(184,150,62,.04) 40px, rgba(184,150,62,.04) 41px);
  pointer-events: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-portrait-col {
  position: relative;
  text-align: center;
}
.hero-portrait-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-shadow:
    0 30px 80px rgba(12,20,32,.25),
    0 0 0 8px rgba(255,255,255,.5),
    0 0 0 14px rgba(184,150,62,.2);
  animation: portraitFloat 5s ease-in-out infinite;
}
@keyframes portraitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .6s ease;
}
.hero-portrait-frame:hover img { transform: scale(1.04); }
.hero-portrait-ring {
  position: absolute;
  inset: -28px;
  border: 1px dashed rgba(184,150,62,.4);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
  pointer-events: none;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-portrait-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold-dk);
}
.hero-portrait-tag .line {
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-portrait-tag .line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-content-col {
  padding-right: 20px;
}
.hero-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dk);
  margin-bottom: 14px;
  animation: fadeUp .9s var(--ease) .3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  animation: fadeUp .9s var(--ease) .5s both;
}
.hero-title strong { font-weight: 700; }
.hero-rule {
  width: 70px; height: 2px;
  background: var(--gold);
  margin: 22px 0 30px;
  animation: widen .8s var(--ease) .7s both;
}
@keyframes widen { from { width: 0; opacity: 0; } to { width: 70px; opacity: 1; } }

.hero-bio {
  margin-bottom: 36px;
  animation: fadeUp .9s var(--ease) .9s both;
}
.hero-bio p {
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 16px;
}
.hero-bio .bio-lead {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-bio strong { color: var(--ink); font-weight: 700; }
.hero-bio em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dk);
  font-weight: 600;
  font-size: 1.05em;
}
.hero-bio .bio-quote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 20px;
  margin-top: 22px;
  background: rgba(184,150,62,.04);
  font-style: italic;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp .9s var(--ease) 1.1s both;
}
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-action.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}
.btn-action.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184,150,62,.3);
}
.btn-action.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-action.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(12,20,32,.2);
}
.btn-action i { font-size: .75rem; transition: transform .3s ease; }
.btn-action:hover i { transform: translateX(4px); }

.hero-social-row {
  animation: fadeUp .9s var(--ease) 1.3s both;
}
.social-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--mid);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.1rem;
  transition: all .35s var(--ease);
}
.social-icon:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(184,150,62,.35);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.marquee-bar { background: var(--gold); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeX 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.mi {
  display: inline-flex; align-items: center;
  font-family: 'Montserrat', sans-serif; font-size: .65rem;
  font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--ink); padding: 0 40px; flex-shrink: 0;
}
.mi::after { content: '✦'; margin-left: 40px; opacity: .4; font-size: .5rem; }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

#about { padding: 120px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}
.about-imgs { position: relative; }
.img-main { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .9s ease; }
.img-main:hover img { transform: scale(1.04); }
.img-float {
  position: absolute; bottom: -32px; right: -32px;
  width: 48%; aspect-ratio: 1; overflow: hidden;
  border: 6px solid #fff; box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 32px; left: -28px;
  background: var(--gold); padding: 22px 26px; text-align: center;
  box-shadow: 0 16px 48px rgba(184,150,62,.35);
  z-index: 2;
}
.about-badge .bn { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.about-badge .bl { font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(12,20,32,.65); margin-top: 4px; }
.about-txt { padding-bottom: 16px; }
.about-body { color: var(--muted); font-size: .93rem; line-height: 1.9; margin: 22px 0 36px; }
.about-kpi {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--mid); margin-bottom: 40px;
}
.kpi {
  padding: 28px 20px 20px; border-right: 1px solid var(--mid);
  position: relative; cursor: default; transition: background .3s;
}
.kpi:last-child { border-right: none; }
.kpi:hover { background: var(--cream); }
.kpi::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease);
}
.kpi:hover::before { transform: scaleX(1); }
.kpi-n {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.kpi-n sup { font-size: 1rem; color: var(--gold); font-weight: 700; }
.kpi-l {
  font-family: 'Montserrat', sans-serif; font-size: .6rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.about-sig {
  display: flex; align-items: center; gap: 18px; padding-top: 20px;
  border-top: 1px solid var(--mid);
}
.sig-line { width: 40px; height: 1px; background: var(--gold); }
.sig-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--ink); }
.sig-role { font-family: 'Montserrat', sans-serif; font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

#projects { padding: 120px 0; background: var(--white); }
.proj-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.proj-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--mid);
}
.proj-card {
  background: #fff; overflow: hidden; position: relative;
  cursor: pointer; transition: none;
}
.proj-thumb { height: 280px; overflow: hidden; position: relative; }
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj-card:hover .proj-thumb img { transform: scale(1.08); }
.proj-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,20,32,.9) 0%, rgba(12,20,32,.1) 60%);
  transition: opacity .4s;
}
.proj-card:hover .proj-ov { opacity: .85; }
.proj-badge {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 5px 12px; background: rgba(12,20,32,.8);
}
.proj-body { padding: 28px 28px 32px; border-bottom: 2px solid transparent; transition: border-color .3s; }
.proj-card:hover .proj-body { border-bottom-color: var(--gold); }
.proj-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  font-weight: 600; color: var(--ink); margin-bottom: 6px;
  transition: color .3s;
}
.proj-card:hover .proj-name { color: var(--gold-dk); }
.proj-style { font-family: 'Montserrat', sans-serif; font-size: .66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.proj-desc { font-size: .84rem; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.proj-meta {
  display: flex; gap: 0;
  border-top: 1px solid var(--mid); padding-top: 18px;
}
.pm { flex: 1; text-align: center; border-right: 1px solid var(--mid); }
.pm:last-child { border-right: none; }
.pm strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.pm span { font-family: 'Montserrat', sans-serif; font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

#numbers {
  padding: 100px 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
#numbers::before {
  content: '';
  position: absolute; top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,150,62,.08) 0%, transparent 60%);
}
.num-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.num-item {
  padding: 32px 40px; border-right: 1px solid rgba(255,255,255,.06);
  text-align: center; position: relative;
}
.num-item:last-child { border-right: none; }
.ni-icon { color: var(--gold); opacity: .5; margin: 0 auto 16px; font-size: 1.6rem; }
.ni-n {
  font-family: 'Cormorant Garamond', serif; font-size: 3.8rem;
  font-weight: 700; color: #fff; line-height: 1; margin-bottom: 8px;
}
.ni-n .g { color: var(--gold-lt); }
.ni-l { font-family: 'Montserrat', sans-serif; font-size: .64rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }

#partners { padding: 100px 0; background: var(--cream); }
.partner-scroll { overflow: hidden; margin-top: 56px; position: relative; }
.partner-scroll::before, .partner-scroll::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.partner-scroll::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.partner-scroll::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.partner-track { display: flex; gap: 20px; animation: marqueeX 20s linear infinite; width: max-content; }
.partner-track:hover { animation-play-state: paused; }
.pbox {
  width: 190px; height: 90px; flex-shrink: 0;
  border: 1px solid var(--mid); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: .82rem;
  font-weight: 800; letter-spacing: 2.5px; color: rgba(12,20,32,.3);
  transition: all .35s ease; cursor: default;
}
.pbox:hover { border-color: var(--gold); color: var(--ink); box-shadow: 0 8px 32px rgba(184,150,62,.12); }

#news { padding: 120px 0; background: var(--white); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.news-all-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--mid); }
.ncard { background: #fff; overflow: hidden; cursor: pointer; }
.ncard.feat-big { grid-column: 1/-1; display: grid; grid-template-columns: 1.4fr 1fr; }
.ncard.feat-big .nthumb { height: auto; min-height: 320px; }
.nthumb { overflow: hidden; position: relative; height: 220px; }
.nthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ncard:hover .nthumb img { transform: scale(1.07); }
.nbadge {
  position: absolute; top: 0; left: 0;
  background: var(--gold); padding: 7px 14px;
  font-family: 'Montserrat', sans-serif; font-size: .6rem;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ink);
}
.nbody { padding: 28px 28px 32px; border-top: 2px solid transparent; transition: border-color .3s; }
.ncard:hover .nbody { border-top-color: var(--gold); }
.nmeta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ndate { font-family: 'Montserrat', sans-serif; font-size: .66rem; font-weight: 500; letter-spacing: 1px; color: var(--muted); }
.ntitle {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-weight: 600; color: var(--ink); line-height: 1.4;
  margin-bottom: 12px; transition: color .3s;
}
.ncard.feat-big .ntitle { font-size: 1.65rem; }
.ncard:hover .ntitle { color: var(--gold-dk); }
.nexcerpt { font-size: .84rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.nmore {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .66rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); transition: gap .3s;
}
.nmore:hover { gap: 12px; }

#contact { padding: 0; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.contact-info {
  background: var(--ink); padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; top: -30%; right: -30%; width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,.06) 0%, transparent 70%);
}
.ci-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.ci-title em { font-style: italic; color: var(--gold-lt); }
.ci-sub { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 52px; }
.cinfo-row {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cinfo-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cinfo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(184,150,62,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem;
}
.cinfo-label {
  font-family: 'Montserrat', sans-serif; font-size: .62rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.cinfo-val { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.ci-social-icons { display: flex; gap: 10px; margin-top: 4px; }
.ci-social-icons a {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,62,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); transition: all .3s;
}
.ci-social-icons a:hover { background: var(--gold); color: var(--ink); }

.contact-form-wrap {
  background: var(--cream); padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.cf-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.cf-sub { font-size: .85rem; color: var(--muted); margin-bottom: 44px; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg2 { margin-bottom: 16px; }
.fg2 label {
  display: block; font-family: 'Montserrat', sans-serif; font-size: .62rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.fg2 input, .fg2 textarea, .fg2 select {
  width: 100%; padding: 14px 16px;
  border: none; border-bottom: 1.5px solid var(--mid);
  background: transparent; outline: none;
  font-family: 'Open Sans', sans-serif; font-size: .9rem; color: var(--ink);
  transition: border-color .3s ease;
  border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.fg2 input:focus, .fg2 textarea:focus, .fg2 select:focus { border-bottom-color: var(--gold); }
.fg2 input::placeholder, .fg2 textarea::placeholder { color: rgba(12,20,32,.25); }
.fg2 textarea { resize: none; height: 110px; }
.form-ok2 {
  display: none; margin-top: 16px; padding: 14px 20px;
  background: rgba(184,150,62,.08); border-left: 3px solid var(--gold);
  font-family: 'Montserrat', sans-serif; font-size: .8rem;
  font-weight: 600; color: var(--ink);
}

#footer { background: #07101c; padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.f-brand .logo-name { font-size: 1rem; color: #fff; }
.f-brand .logo-sub { color: rgba(255,255,255,.35); }
.f-desc { font-size: .84rem; line-height: 1.85; color: rgba(255,255,255,.35); margin: 20px 0 28px; }
.f-soc { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .3s ease;
  font-size: .95rem;
}
.fsoc:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.f-col-h {
  font-family: 'Montserrat', sans-serif; font-size: .64rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(184,150,62,.2);
}
.f-links li { margin-bottom: 11px; }
.f-links a {
  font-size: .83rem; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.f-links a::before { content: '—'; color: var(--gold); font-size: .65rem; opacity: .6; }
.f-links a:hover { color: var(--gold); padding-left: 4px; }
.f-cr { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .82rem; color: rgba(255,255,255,.4); }
.f-cr i { color: var(--gold); opacity: .8; width: 14px; }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.fcopy { font-family: 'Montserrat', sans-serif; font-size: .68rem; letter-spacing: .5px; color: rgba(255,255,255,.2); }
.fleg a { font-size: .68rem; color: rgba(255,255,255,.2); transition: color .25s; letter-spacing: .3px; }
.fleg a:hover { color: var(--gold); }

.float-btns {
  position: fixed; right: 20px; bottom: 80px; z-index: 800;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .3s;
  position: relative;
}
.float-btn::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.zalo { background: #0068ff; color: #fff; }
.float-btn.phone { background: var(--gold); color: var(--ink); }

#btt {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  width: 44px; height: 44px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); opacity: 0; pointer-events: none;
  transition: opacity .35s, transform .35s; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
#btt.show { opacity: 1; pointer-events: all; }
#btt:hover { transform: translateY(-4px); }

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 20px;
  }
  .hero-portrait-col { order: -1; }
  .hero-portrait-frame { max-width: 320px; }
  .hero-content-col { padding-right: 0; max-width: 100%; }
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-socials { justify-content: center; }
  .hero-bio { text-align: left; }
  .hero-bio .bio-quote { text-align: left; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .img-float { display: none; }
  .about-badge { left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 10px 14px; }
  .hamburger { display: flex; }
  .mob { display: block; }
  .proj-grid { grid-template-columns: 1fr; }
  .news-all-grid { grid-template-columns: 1fr 1fr; }
  .ncard.feat-big { grid-column: 1/-1; grid-template-columns: 1fr; }
  .ncard.feat-big .nthumb { min-height: 220px; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .num-item:nth-child(2) { border-right: none; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 72px 40px; }
  .wrap { padding: 0 20px; }
}
@media (max-width: 640px) {

  html, body { overflow-x: hidden; }
  #hero {
    padding: 90px 0 50px;
    width: 100%;
    overflow-x: hidden;
  }
  .hero-wrap {
    padding: 0 16px;
    gap: 30px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .hero-portrait-col {
    width: 100%;
    padding: 0;
  }
  .hero-portrait-frame {
    max-width: 220px;
    margin: 0 auto;
  }
  .hero-portrait-ring { inset: -16px; }
  .hero-portrait-tag {
    font-size: .55rem;
    letter-spacing: 3px;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-portrait-tag .line { width: 30px; }
  .hero-content-col {
    width: 100%;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-greeting { font-size: 1.1rem; }
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
    word-wrap: break-word;
  }
  .hero-rule { margin: 16px auto 22px; }
  .hero-bio {
    width: 100%;
    margin-bottom: 28px;
  }
  .hero-bio p {
    font-size: .9rem;
    line-height: 1.7;
    text-align: left;
    word-wrap: break-word;
  }
  .hero-bio .bio-lead { font-size: .98rem; }
  .hero-bio .bio-quote {
    padding: 10px 0 10px 16px;
    font-size: .92rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn-action {
    justify-content: center;
    width: 100%;
    font-size: .68rem;
    padding: 14px 20px;
  }
  .hero-social-row { width: 100%; }
  .social-icon { width: 42px; height: 42px; }

  .footer-grid { grid-template-columns: 1fr; }
  .frow2 { grid-template-columns: 1fr; }
  .about-kpi { grid-template-columns: 1fr 1fr; }
  .kpi:nth-child(even) { border-right: none; }
  .kpi:nth-child(n+3) { border-top: 1px solid var(--mid); }
  .news-all-grid { grid-template-columns: 1fr; }
  .proj-header, .news-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-info, .contact-form-wrap { padding: 50px 24px; }
  .float-btns { right: 12px; bottom: 70px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .wrap { padding: 0 16px; }
  .headline { font-size: 1.9rem; }
}
