:root {
  --bg:           #0a0a0a;
  --surface:      #111111;
  --surface-2:    #161616;
  --gold:         #c9a96e;
  --gold-dim:     rgba(201,169,110,0.35);
  --gold-border:  rgba(201,169,110,0.14);
  --text:         #f0ebe3;
  --text-dim:     #9a9a9a;
  --text-muted:   #5c5c5c;
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior:smooth; }

body {
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

/* subtle film-grain overlay */
body::after {
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity:0.025;
  pointer-events:none;
  z-index:9000;
}

a { text-decoration:none; color:inherit; }

.container { width:min(1160px,90%); margin:auto; }

/* ── REVEAL ── */

.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }

.cards .card:nth-child(2).reveal { transition-delay:0.12s; }
.cards .card:nth-child(3).reveal { transition-delay:0.24s; }

/* ── NAVBAR ── */

nav {
  position:fixed;
  top:0;
  width:100%;
  z-index:100;
  padding:28px 0;
  transition:padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom:1px solid transparent;
}

nav.scrolled {
  padding:18px 0;
  background:rgba(10,10,10,0.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-color:var(--gold-border);
}

.nav-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;
  font-weight:500;
  letter-spacing:5px;
  color:var(--text);
}

.nav-links { display:flex; gap:44px; }

.nav-links a {
  font-size:0.72rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--text-muted);
  position:relative;
  transition:color 0.35s var(--ease);
}

.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-5px;
  left:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width 0.35s var(--ease);
}

.nav-links a:hover { color:var(--gold); }
.nav-links a:hover::after { width:100%; }

/* ── HERO ── */

.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--bg);
}

/* Warm radial glow — no image needed */
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 65% 75% at 72% 48%, rgba(201,169,110,0.09) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 14% 88%, rgba(201,169,110,0.05) 0%, transparent 52%);
  pointer-events:none;
  z-index:0;
}

/* Decorative nested frames — right side */
.hero-deco {
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
}

.hero-rect {
  position:absolute;
  border:1px solid var(--gold-border);
}

.hero-rect-1 {
  top:13%;
  right:7%;
  width:min(330px,33vw);
  height:min(520px,66vh);
  border-color:rgba(201,169,110,0.2);
}

.hero-rect-2 {
  top:calc(13% + 26px);
  right:calc(7% - 26px);
  width:min(330px,33vw);
  height:min(520px,66vh);
  border-color:rgba(201,169,110,0.09);
}

.hero-rect-3 {
  top:calc(13% + 52px);
  right:calc(7% - 52px);
  width:min(330px,33vw);
  height:min(520px,66vh);
  border-color:rgba(201,169,110,0.04);
}

/* Large outlined monogram watermark */
.hero-mark {
  position:absolute;
  right:4.5%;
  bottom:-0.1em;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(9rem,19vw,17rem);
  font-weight:300;
  color:transparent;
  -webkit-text-stroke:1px rgba(201,169,110,0.07);
  line-height:1;
  letter-spacing:0.06em;
  user-select:none;
  pointer-events:none;
  z-index:1;
}

.hero-content {
  position:relative;
  z-index:2;
  padding-top:120px;
  padding-bottom:140px;
}

.hero-eyebrow {
  display:block;
  font-size:0.68rem;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:32px;
}

.hero h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.8rem,8.5vw,8rem);
  font-weight:300;
  line-height:1.0;
  letter-spacing:1px;
  margin-bottom:40px;
}

.hero h1 em {
  font-style:italic;
  color:var(--gold);
}

.hero-rule {
  width:56px;
  height:1px;
  background:var(--gold);
  margin-bottom:36px;
}

.hero p {
  font-size:0.97rem;
  color:var(--text-dim);
  font-weight:300;
  line-height:1.9;
  letter-spacing:0.2px;
  margin-bottom:52px;
  max-width:480px;
}

.hero-btn {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:15px 36px;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:0.72rem;
  letter-spacing:3px;
  text-transform:uppercase;
  transition:background 0.35s var(--ease), color 0.35s var(--ease);
}

.hero-btn:hover {
  background:var(--gold);
  color:var(--bg);
}

.hero-scroll {
  position:absolute;
  bottom:44px;
  right:6%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  z-index:2;
}

.hero-scroll span {
  font-size:0.6rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--text-muted);
  writing-mode:vertical-rl;
}

.scroll-bar {
  width:1px;
  height:64px;
  background:linear-gradient(to bottom, var(--gold), transparent);
  animation:pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity:0.35; transform:scaleY(1); transform-origin:top; }
  50%      { opacity:1;    transform:scaleY(0.65); transform-origin:top; }
}

/* ── SECTION COMMONS ── */

section { padding:130px 0; }

.badge {
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom:36px;
}

.badge-num {
  font-family:'Cormorant Garamond',serif;
  font-size:0.88rem;
  font-weight:400;
  color:var(--gold);
  letter-spacing:1px;
}

.badge-label {
  font-size:0.68rem;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color:var(--text-muted);
}

.badge-line {
  width:28px;
  height:1px;
  background:var(--gold-border);
}

.section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4.5vw,3.8rem);
  font-weight:300;
  line-height:1.08;
  letter-spacing:0.5px;
  margin-bottom:28px;
}

.section-title em {
  font-style:italic;
  color:var(--gold);
}

.section-text {
  font-size:0.93rem;
  color:var(--text-muted);
  font-weight:300;
  line-height:1.95;
  max-width:580px;
}

/* ── ABOUT ── */

#about {
  background:var(--surface);
  border-top:1px solid var(--gold-border);
  border-bottom:1px solid var(--gold-border);
}

.about-grid {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:100px;
  align-items:start;
}

.about-aside {
  padding-top:6px;
  display:flex;
  flex-direction:column;
  gap:10px;
  border-right:1px solid var(--gold-border);
  padding-right:40px;
}

.about-aside .badge-num { font-size:2rem; line-height:1; }
.about-aside .badge-label { display:block; }

.about-body .section-text { margin-bottom:0; }

.about-quote {
  margin-top:52px;
  padding:28px 32px;
  border-left:1px solid var(--gold);
  background:rgba(201,169,110,0.04);
}

.about-quote blockquote {
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.3rem;
  font-weight:300;
  color:var(--text-dim);
  line-height:1.6;
}

/* ── SERVICES ── */

.services-head { margin-bottom:72px; }

.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--gold-border);
  gap:0;
}

.card {
  padding:48px 40px;
  background:var(--bg);
  border-right:1px solid var(--gold-border);
  position:relative;
  transition:background 0.4s var(--ease);
  overflow:hidden;
}

.card:last-child { border-right:none; }

.card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background:transparent;
  transition:background 0.4s var(--ease);
}

.card:hover { background:var(--surface); }
.card:hover::before { background:var(--gold); }

.card-index {
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
  font-weight:300;
  line-height:1;
  color:rgba(201,169,110,0.1);
  margin-bottom:28px;
  transition:color 0.4s var(--ease);
}

.card:hover .card-index { color:var(--gold-dim); }

.card h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:1.55rem;
  font-weight:400;
  letter-spacing:0.5px;
  margin-bottom:16px;
}

.card-rule {
  width:30px;
  height:1px;
  background:var(--gold);
  margin-bottom:20px;
  transition:width 0.4s var(--ease);
}

.card:hover .card-rule { width:52px; }

.card p {
  font-size:0.88rem;
  color:var(--text-muted);
  font-weight:300;
  line-height:1.85;
}

/* ── CONTACT ── */

#contact {
  background:var(--surface);
  border-top:1px solid var(--gold-border);
}

.contact-wrap { max-width:760px; }

.contact-table {
  margin-top:60px;
  border:1px solid var(--gold-border);
}

.contact-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 40px;
  border-bottom:1px solid var(--gold-border);
  transition:background 0.3s var(--ease);
}

.contact-row:last-child { border-bottom:none; }
.contact-row:hover { background:rgba(201,169,110,0.03); }

.contact-key {
  font-size:0.68rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--text-muted);
}

.contact-val {
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;
  font-weight:400;
  color:var(--text);
  transition:color 0.3s var(--ease);
}

a.contact-val:hover { color:var(--gold); }

/* ── FOOTER ── */

footer {
  padding:44px 0;
  border-top:1px solid var(--gold-border);
}

.footer-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-inner .logo { font-size:1rem; letter-spacing:4px; }

.footer-copy {
  font-size:0.72rem;
  letter-spacing:1.5px;
  color:var(--text-muted);
}

/* ── RESPONSIVE ── */

@media (max-width:960px) {
  .cards {
    grid-template-columns:1fr;
    border:1px solid var(--gold-border);
  }
  .card {
    border-right:none;
    border-bottom:1px solid var(--gold-border);
  }
  .card:last-child { border-bottom:none; }
}

@media (max-width:860px) {
  .about-grid {
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-aside {
    flex-direction:row;
    align-items:center;
    border-right:none;
    border-bottom:1px solid var(--gold-border);
    padding-right:0;
    padding-bottom:32px;
    gap:20px;
  }
  .about-aside .badge-num { font-size:1.2rem; }
}

@media (max-width:768px) {
  .nav-links { gap:22px; }
  .nav-links a { font-size:0.68rem; letter-spacing:2px; }

  section { padding:90px 0; }

  .contact-row {
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding:24px 28px;
  }

  .footer-inner {
    flex-direction:column;
    gap:14px;
    text-align:center;
  }
}

@media (max-width:768px) {
  .hero-deco,
  .hero-mark { display:none; }
}

@media (max-width:480px) {
  .hero-scroll { display:none; }
  .logo { font-size:1rem; letter-spacing:3px; }
}
