/* ── VARIABLES ── */
:root {
  --ink:        #0d0d0b;
  --cream:      #f5f0e8;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --stone:      #7a7066;
  --warm-white: #faf8f4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cre-cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}
.cre-cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

/* Outline for building */

/* * {
    outline: 1px solid red !important;
} */
/* ── NAV ── */
.cre-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 5vw;
  
}
.cre-nav::after {
  content: '';
  position: absolute; bottom: 0; left: 5vw; right: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.cre-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
}
.cre-nav-logo span { color: var(--gold); }
.cre-nav-links { display: flex; gap: 3rem; list-style: none; }
.cre-nav-links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  transition: color 0.3s;
}
.cre-nav-links a:hover,
.cre-nav-links a.current { color: var(--cream); }
.cre-nav-cta {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem; text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.cre-nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ── HERO ── */
.cre-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative; overflow: hidden;
}
.cre-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,150,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,150,90,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0b 0%, #141210 50%, #0d0d0b 100%);
}
.cre-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
  opacity: 0.6;
}
@keyframes gridDrift { from { transform: translateY(0); } to { transform: translateY(80px); } }
.cre-hero-line {
  position: absolute; left: 5vw; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.2;
}
.cre-hero-content { position: relative; z-index: 1; }
.cre-hero-eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
  padding: 1%;
}
.cre-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300; line-height: 0.9; max-width: 900px;
  opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.cre-hero-title em { font-style: italic; color: var(--gold-light); }
.cre-hero-sub {
  margin-top: 2.5rem; max-width: 420px;
  font-size: 0.8rem; font-weight: 300; line-height: 1.9; color: var(--stone);
  opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards;
}
.cre-hero-actions {
  margin-top: 3rem;
  display: flex; align-items: center; gap: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.9s forwards;
}
.cre-btn-primary {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 1rem 2.5rem; text-decoration: none;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.cre-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.cre-btn-ghost {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s;
}
.cre-btn-ghost::after { content: '→'; transition: transform 0.3s; }
.cre-btn-ghost:hover { color: var(--cream); }
.cre-btn-ghost:hover::after { transform: translateX(4px); }
.cre-hero-stats {
  position: absolute; right: 5vw; bottom: 8vh;
  display: flex; flex-direction: column; gap: 2.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards; z-index: 1;
}
.cre-stat { text-align: right; }
.cre-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--cream); line-height: 1;
}
.cre-stat-label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-top: 0.3rem;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── MARQUEE ── */
.cre-marquee {
  border-top: 1px solid rgba(184,150,90,0.15);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  padding: 1rem 0; overflow: hidden;
  background: rgba(184,150,90,0.03);
}
.cre-marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 28s linear infinite; width: max-content;
}
.cre-marquee-item {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--stone); white-space: nowrap;
}
.cre-marquee-dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  margin: 0 2rem; vertical-align: middle;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED SECTION STYLES ── */
.cre-section-label {
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.cre-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1;
}
.cre-section-title em { font-style: italic; color: var(--gold-light); }
.cre-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 6rem; gap: 2rem;
}
.cre-section-desc { max-width: 300px; font-size: 0.75rem; line-height: 1.9; color: var(--stone); }

/* ── SERVICES ── */
.cre-services { padding: 12vh 5vw; }
.cre-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cre-service-card {
  position: relative; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,150,90,0.1); padding: 4rem 3rem;
  text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color 0.4s; display: block;
}
.cre-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,150,90,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.cre-service-card:hover::before { opacity: 1; }
.cre-service-card:hover { border-color: rgba(184,150,90,0.35); }
.cre-service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; color: rgba(184,150,90,0.1);
  line-height: 1; margin-bottom: 2rem; transition: color 0.4s;
}
.cre-service-card:hover .cre-service-number { color: rgba(184,150,90,0.25); }
.cre-service-icon {
  width: 44px; height: 44px; border: 1px solid rgba(184,150,90,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem; transition: border-color 0.4s, background 0.4s;
}
.cre-service-card:hover .cre-service-icon { border-color: var(--gold); background: rgba(184,150,90,0.08); }
.cre-service-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.cre-service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; margin-bottom: 1rem; line-height: 1.1;
}
.cre-service-desc { font-size: 0.75rem; line-height: 1.85; color: var(--stone); margin-bottom: 2.5rem; }
.cre-service-link {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s;
}
.cre-service-card:hover .cre-service-link { gap: 0.9rem; }
.cre-service-divider {
  position: absolute; bottom: 0; left: 3rem; right: 3rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.cre-service-card:hover .cre-service-divider { transform: scaleX(1); }

/* ── WHY US ── */
.cre-why {
  padding: 12vh 5vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center;
  border-top: 1px solid rgba(184,150,90,0.1);
}
.cre-why-visual {
  position: relative; aspect-ratio: 4/5;
  background: rgba(184,150,90,0.05); border: 1px solid rgba(184,150,90,0.1); overflow: hidden;
}
.cre-why-visual-inner {
  position: absolute; inset: 2rem; border: 1px solid rgba(184,150,90,0.2);
  display: flex; align-items: center; justify-content: center;
}
.cre-why-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 8rem); font-weight: 300;
  color: rgba(184,150,90,0.08); letter-spacing: -0.05em; text-align: center; line-height: 0.85;
}
.cre-why-badge {
  position: absolute; bottom: 2.5rem; right: -1.5rem;
  background: var(--gold); color: var(--ink); padding: 1.5rem 2rem;
  font-family: 'Cormorant Garamond', serif;
}
.cre-why-badge-num { font-size: 2.5rem; font-weight: 300; line-height: 1; }
.cre-why-badge-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }
.cre-pillars { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.cre-pillar {
  padding: 1.5rem 0; border-bottom: 1px solid rgba(184,150,90,0.1);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.cre-pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.cre-pillar-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--cream); }
.cre-pillar-text { font-size: 0.75rem; line-height: 1.8; color: var(--stone); }

/* ── LISTINGS ── */
.cre-listings { padding: 12vh 5vw; border-top: 1px solid rgba(184,150,90,0.1); }
.cre-listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.cre-listing-card {
  border: 1px solid rgba(184,150,90,0.1); background: rgba(255,255,255,0.02); overflow: hidden;
  transition: border-color 0.4s, transform 0.3s;
}
.cre-listing-card:hover { border-color: rgba(184,150,90,0.3); transform: translateY(-4px); }
.cre-listing-thumb {
  height: 220px;
  background: linear-gradient(135deg, rgba(184,150,90,0.08), rgba(184,150,90,0.02));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(184,150,90,0.1);
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: rgba(184,150,90,0.15); position: relative; overflow: hidden;
}
.cre-listing-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,13,11,0.5));
}
.cre-listing-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: 0.3rem 0.8rem;
}
.cre-listing-body { padding: 1.5rem 1.75rem 2rem; }
.cre-listing-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.cre-listing-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; margin-bottom: 0.5rem; line-height: 1.2; }
.cre-listing-loc { font-size: 0.7rem; color: var(--stone); margin-bottom: 1.25rem; }
.cre-listing-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.cre-listing-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--cream); }
.cre-listing-size { font-size: 0.65rem; color: var(--stone); text-align: right; }

/* ── CONTACT ── */
.cre-contact {
  padding: 12vh 5vw; border-top: 1px solid rgba(184,150,90,0.1);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start;
}
.cre-contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 3rem; }
.cre-field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cre-field-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.cre-field-input, .cre-field-select, .cre-field-textarea {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(184,150,90,0.2);
  color: var(--cream); font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.3s; width: 100%;
}
.cre-field-input:focus, .cre-field-select:focus, .cre-field-textarea:focus { border-color: var(--gold); }
.cre-field-textarea { resize: vertical; min-height: 120px; }
.cre-field-select { appearance: none; cursor: pointer; }
.cre-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cre-form-submit {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border: none; padding: 1rem 2rem;
  cursor: none; margin-top: 0.5rem; transition: background 0.3s; align-self: flex-start;
}
.cre-form-submit:hover { background: var(--gold-light); }
.cre-contact-info { padding-top: 3rem; }
.cre-contact-detail { margin-top: 2rem; }
.cre-contact-detail-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.cre-contact-detail-val { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: var(--cream); line-height: 1.6; }

/* ── INNER PAGE HERO ── */
.cre-inner-hero {
  min-height: 55vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 5vw 8vh; position: relative; overflow: hidden;
}
.cre-inner-hero-content { position: relative; z-index: 1; }
.cre-inner-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 300; line-height: 0.9;
  opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards;
}
.cre-inner-hero-title em { font-style: italic; color: var(--gold-light); }
.cre-inner-hero-sub {
  margin-top: 1.5rem; max-width: 520px;
  font-size: 0.8rem; font-weight: 300; line-height: 1.9; color: var(--stone);
  opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards;
}

/* ── INNER PAGE CONTENT ── */
.cre-content-section { padding: 10vh 5vw; border-top: 1px solid rgba(184,150,90,0.1); }
.cre-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.cre-content-body { font-size: 0.85rem; line-height: 2; color: var(--stone); }
.cre-content-body p { margin-bottom: 1.5rem; }
.cre-content-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--cream); margin: 2rem 0 1rem;
}
.cre-features { display: flex; flex-direction: column; gap: 1.5rem; }
.cre-feature {
  padding: 1.5rem 2rem; border: 1px solid rgba(184,150,90,0.1);
  background: rgba(255,255,255,0.02); transition: border-color 0.3s;
}
.cre-feature:hover { border-color: rgba(184,150,90,0.3); }
.cre-feature-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 0.5rem;
}
.cre-feature-text { font-size: 0.75rem; line-height: 1.8; color: var(--stone); }

/* ── SUCCESS MESSAGE ── */
.cre-success {
  background: rgba(184,150,90,0.1); border: 1px solid rgba(184,150,90,0.3);
  padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.cre-footer {
  border-top: 1px solid rgba(184,150,90,0.15); padding: 4rem 5vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.cre-footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream);
}
.cre-footer-logo span { color: var(--gold); }
.cre-footer-links { display: flex; gap: 2.5rem; list-style: none; flex-wrap: wrap; }
.cre-footer-links a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color 0.3s;
}
.cre-footer-links a:hover { color: var(--cream); }
.cre-footer-copy { font-size: 0.65rem; color: var(--stone); letter-spacing: 0.05em; }

/* ── REVEAL ANIMATIONS (JS-driven) ── */
.cre-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cre-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cre-services-grid { grid-template-columns: 1fr; }
  .cre-why { grid-template-columns: 1fr; }
  .cre-listings-grid { grid-template-columns: 1fr 1fr; }
  .cre-contact { grid-template-columns: 1fr; }
  .cre-content-grid { grid-template-columns: 1fr; }
  .cre-hero-stats { display: none; }
}
@media (max-width: 768px) {
  .cre-nav-links { display: none; }
  .cre-listings-grid { grid-template-columns: 1fr; }
  .cre-section-header { flex-direction: column; align-items: flex-start; }
  .cre-field-row { grid-template-columns: 1fr; }
  .cre-footer { flex-direction: column; text-align: center; }
}
