@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --purple:      #6e208d;
  --purple-dark: #3d0f50;
  --purple-deep: #2a0838;
  --purple-mid:  #7d28a0;
  --purple-light:#9b3cc0;
  --purple-pale: #f5edfb;
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --cream:       #faf7fc;
  --white:       #ffffff;
  --text:        #2e1040;
  --text-light:  #7a5590;
  --border:      rgba(110,32,141,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--text); font-size: 15px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* TOPBAR */
.topbar {
  background: var(--purple-deep);
  padding: 0.4rem 2rem;
  display: flex; justify-content: flex-end; gap: 2rem;
  font-size: 0.74rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--gold); }

/* HEADER */
header {
  background: var(--purple);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 3px 20px rgba(61,15,80,0.45);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em; white-space: nowrap;
}
.logo span { color: var(--gold-light); }

nav ul { list-style: none; display: flex; gap: 0.15rem; }
nav ul li a {
  display: block; padding: 0.45rem 0.85rem;
  font-size: 0.77rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); border-radius: 4px; transition: all .2s;
}
nav ul li a:hover, nav ul li a.active { background: rgba(255,255,255,0.13); color: #fff; }
nav ul li a.nav-cta {
  background: var(--gold); color: var(--purple-deep);
  font-weight: 700; margin-left: 0.5rem;
}
nav ul li a.nav-cta:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* HERO (homepage) */
.hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-mid) 100%);
  padding: 80px 2rem 70px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 90% at 90% 50%, rgba(255,255,255,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 25% 40% at 5% 90%, rgba(201,169,110,0.09) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 300; color: var(--white); line-height: 1.05;
}
.hero-name strong { font-weight: 700; color: var(--gold-light); display: block; }
.hero-title { margin-top: 0.8rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,0.65); }
.hero-desc { margin-top: 1.2rem; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.85; max-width: 530px; }
.hero-tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-tag {
  border: 1px solid rgba(201,169,110,0.35); color: var(--gold-light);
  padding: 0.28rem 0.75rem; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
}
.hero-btns { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--purple-deep); padding: 0.8rem 2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background .25s; display: inline-block; border-radius: 3px; }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); padding: 0.8rem 2rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: all .25s; display: inline-block; border-radius: 3px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Photo */
.photo-card { position: relative; }
.photo-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; box-shadow: 0 20px 60px rgba(42,8,56,0.55); border: 3px solid rgba(255,255,255,0.12); }
.photo-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(42,8,56,0.85));
  padding: 2rem 1rem 0.8rem;
  text-align: center; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* STATS */
.stats-bar {
  background: var(--purple-dark);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
}
.stat { background: var(--purple-dark); padding: 1.8rem 1rem; text-align: center; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-l { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.35rem; line-height: 1.45; }

/* DIMS */
.dims-section { padding: 5rem 2rem; background: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.s-head { text-align: center; margin-bottom: 3rem; }
.s-eye { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.5rem; }
.s-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 300; color: var(--purple-deep); }
.s-title strong { font-weight: 700; }
.s-line { width: 48px; height: 2px; background: var(--gold); margin: 0.8rem auto 0; }

.dims-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--border); }
.dim-card {
  background: var(--white); padding: 2.5rem; position: relative; overflow: hidden;
  border-bottom: 3px solid transparent; transition: all .3s;
}
.dim-card:hover { background: var(--purple-pale); border-bottom-color: var(--purple); }
.dim-bignum { font-family: 'Cormorant Garamond', serif; font-size: 6rem; font-weight: 300; color: rgba(110,32,141,0.05); position: absolute; top: -0.5rem; right: 1rem; line-height: 1; user-select: none; }
.dim-roman { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.4rem; }
.dim-name { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: var(--purple-deep); }
.dim-sub { font-size: 0.73rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }
.dim-xp { font-size: 0.8rem; color: var(--text-light); font-style: italic; margin-top: 0.5rem; }
.dim-desc { font-size: 0.88rem; color: var(--text); line-height: 1.75; margin-top: 0.9rem; max-width: 400px; }
.dim-link { margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .2s; }
.dim-link:hover { color: var(--purple-dark); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  padding: 56px 2rem 48px; position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; right: -8%; top: -30%; width: 550px; height: 550px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); pointer-events: none; }
.phi { max-width: 1200px; margin: 0 auto; }
.phi-eye { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.phi-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.phi-title strong { font-weight: 700; color: var(--gold-light); }
.phi-sub { margin-top: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.5); font-style: italic; }
.phi-badge { display: inline-block; margin-top: 1.2rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(201,169,110,0.3); color: var(--gold-light); padding: 0.35rem 1.1rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* BREADCRUMB */
.breadcrumb { background: var(--purple-pale); border-bottom: 1px solid var(--border); padding: 0.6rem 2rem; font-size: 0.74rem; color: var(--text-light); }
.breadcrumb a { color: var(--purple); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.45rem; opacity: 0.4; }

/* CONTENT */
.content-wrap { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.c-intro { font-size: 0.97rem; color: var(--text); line-height: 1.88; max-width: 840px; border-left: 3px solid var(--purple); padding-left: 1.4rem; margin-bottom: 3rem; }
.c-block { margin-bottom: 2.8rem; }
.c-block-title { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--purple); border-bottom: 1px solid var(--border); padding-bottom: 0.55rem; margin-bottom: 1.1rem; }
.c-block p { font-size: 0.9rem; line-height: 1.85; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.info-box { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--purple); padding: 1.6rem; }
.info-box.gold { border-top-color: var(--gold); }
.ib-title { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: 0.9rem; }
.info-box p { font-size: 0.87rem; line-height: 1.82; }

/* PDF */
.pdf-group { margin-bottom: 2.5rem; }
.pdf-group-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.7rem; }
.pdf-group-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.pdf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 0.75rem; }
.pdf-item { background: var(--white); border: 1px solid var(--border); padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.75rem; transition: border-color .2s, box-shadow .2s; }
.pdf-item:hover { border-color: var(--purple); box-shadow: 0 2px 10px rgba(110,32,141,0.1); }
.pdf-ico { font-size: 1.1rem; flex-shrink: 0; }
.pdf-txt { font-size: 0.83rem; line-height: 1.4; flex: 1; }
.badge { flex-shrink: 0; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.45rem; border-radius: 2px; }
.b-avail { background: rgba(110,32,141,0.1); color: var(--purple); }
.b-wip   { background: rgba(201,169,110,0.18); color: #9a7030; }

/* CONTACT */
.contact-section { background: var(--purple); padding: 60px 2rem; color: var(--white); }
.contact-wrap { max-width: 1000px; margin: 0 auto; }
.contact-ttl { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; }
.c-info p { font-size: 0.9rem; line-height: 2.1; color: rgba(255,255,255,0.78); }
.c-info strong { color: var(--gold-light); }
.c-info a { color: var(--gold-light); border-bottom: 1px solid transparent; transition: border-color .2s; }
.c-info a:hover { border-bottom-color: var(--gold-light); }
.c-form { display: flex; flex-direction: column; gap: 0.85rem; }
.c-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--white); margin-bottom: 0.3rem; }
.c-form input, .c-form textarea {
  width: 100%; padding: 11px 14px; border: none; border-radius: 10px;
  background: rgba(255,255,255,0.13); color: var(--white);
  font-family: 'Raleway', sans-serif; font-size: 0.87rem; outline: none; transition: background .2s;
}
.c-form input::placeholder, .c-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.c-form input:focus, .c-form textarea:focus { background: rgba(255,255,255,0.19); }
.c-form textarea { min-height: 110px; resize: vertical; }
.c-form button { background: var(--white); color: var(--purple); padding: 11px 28px; border: none; border-radius: 20px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; cursor: pointer; align-self: flex-start; transition: background .25s, color .25s; }
.c-form button:hover { background: var(--gold-light); color: var(--purple-deep); }

/* FOOTER */
footer { background: var(--purple-deep); padding: 1.6rem 2rem; text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.28); letter-spacing: 0.05em; }
footer a { color: var(--gold); opacity: 0.7; }
footer a:hover { opacity: 1; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media(max-width:960px){
  .hero-inner { grid-template-columns: 1fr; }
  .photo-card { max-width: 220px; margin: 0 auto; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .dims-grid, .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:700px){
  nav ul { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; width: 100%; background: var(--purple); padding: 1rem; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .pdf-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
}
