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

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

:root {
  --green: #0e2918;
  --green-mid: #1a3d26;
  --green-light: #2a5a3a;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --gold: #B8962E;
  --text-muted: rgba(245,240,232,0.55);
  --text-mid: rgba(245,240,232,0.75);
}

html { scroll-behavior: smooth; }
body { background: var(--green); color: var(--cream); font-family: 'Instrument Sans', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 4rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; background: transparent; transition: background 0.4s ease, padding 0.4s ease; }
nav.scrolled { background: rgba(14,41,24,0.96); backdrop-filter: blur(12px); padding: 0.75rem 4rem; border-bottom: 0.5px solid rgba(245,240,232,0.12); }
nav.solid { background: rgba(14,41,24,0.98); padding: 0.75rem 4rem; border-bottom: 0.5px solid rgba(245,240,232,0.12); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--cream); text-decoration: none; }
.nav-center { display: flex; justify-content: center; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links.nav-left { justify-content: flex-end; }
.nav-links.nav-right { justify-content: flex-start; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* BUTTONS */
.btn-outline { display: inline-block; padding: 0.8rem 2.2rem; border: 0.5px solid rgba(245,240,232,0.35); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: background 0.25s, border-color 0.25s; background: none; font-family: 'Instrument Sans', sans-serif; cursor: pointer; }
.btn-outline:hover { background: rgba(245,240,232,0.08); border-color: rgba(245,240,232,0.6); }
.btn-solid { display: inline-block; padding: 0.9rem 2.4rem; background: var(--cream); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 500; text-decoration: none; transition: background 0.25s; border: none; font-family: 'Instrument Sans', sans-serif; cursor: pointer; }
.btn-solid:hover { background: var(--cream-dark); }

/* MARQUEE */
.marquee-section { padding: 2rem 0; overflow: hidden; border-top: 0.5px solid rgba(245,240,232,0.08); border-bottom: 0.5px solid rgba(245,240,232,0.08); }
.marquee-track { display: flex; gap: 4rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; }
.marquee-dot { display: inline-block; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; vertical-align: middle; margin-left: 4rem; }

/* SECTION */
.section { padding: 7rem 4rem; }
.section-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }

/* PAGE HERO */
.page-hero { padding: 8rem 4rem 5rem; border-bottom: 0.5px solid rgba(245,240,232,0.08); }
.page-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1; color: var(--cream); }
.page-hero-heading em { font-style: italic; }
.page-hero-sub { max-width: 600px; font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-top: 2rem; }

/* FOOTER */
footer { border-top: 0.5px solid rgba(245,240,232,0.08); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.08em; color: var(--text-muted); }
.footer-copy { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PORTFOLIO TABS */
.portfolio-tabs-wrap { padding: 0 4rem; border-bottom: 0.5px solid rgba(245,240,232,0.12); }
.portfolio-tabs { display: flex; justify-content: center; }
.portfolio-tab { padding: 1.25rem 2rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; border-bottom: 1.5px solid transparent; margin-bottom: -0.5px; transition: color 0.2s, border-color 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Instrument Sans', sans-serif; }
.portfolio-tab:hover { color: var(--cream); }
.portfolio-tab.active { color: var(--cream); border-bottom-color: var(--gold); }
.portfolio-panel { display: none; padding: 4rem; }
.portfolio-panel.active { display: block; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card { aspect-ratio: 3/4; background: rgba(245,240,232,0.05); border: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-style: italic; color: rgba(245,240,232,0.06); font-weight: 300; user-select: none; }
.portfolio-coming { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.portfolio-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--cream); line-height: 1.3; }
.portfolio-card-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; letter-spacing: 0.06em; }

/* BRANDS */
.brands-section { background: rgba(245,240,232,0.03); border-top: 0.5px solid rgba(245,240,232,0.08); padding: 6rem 4rem; }
.brands-intro { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.brands-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--cream); line-height: 1.1; }
.brands-heading em { font-style: italic; }
.brands-copy { font-size: 0.95rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(245,240,232,0.08); }
.logo-cell { background: var(--green); padding: 2rem 1.5rem; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); transition: color 0.2s, background 0.2s; min-height: 90px; }
.logo-cell:hover { color: var(--cream); background: var(--green-mid); }
.logo-cell--placeholder { color: rgba(245,240,232,0.2); font-style: italic; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(245,240,232,0.08); }
.service-card { background: var(--green); padding: 3rem; transition: background 0.25s; }
.service-card:hover { background: var(--green-mid); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--gold); margin-bottom: 1.5rem; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--cream); margin-bottom: 1rem; line-height: 1.2; }
.service-desc { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }
.services-note { padding: 4rem; text-align: center; border-top: 0.5px solid rgba(245,240,232,0.08); }
.services-note p { font-size: 1rem; font-weight: 300; color: var(--text-mid); max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; }

/* ABOUT / FOUNDER */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; padding: 6rem 4rem; }
.about-grid.how-we-operate { grid-template-columns: auto 1fr; align-items: center; justify-content: center; max-width: 1000px; margin: 0 auto; gap: 3rem; }
.about-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.15; color: var(--cream); }
.about-heading em { font-style: italic; }
.about-body { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.85; }
.about-body p + p { margin-top: 1.25rem; }
.about-body strong { color: var(--cream); font-weight: 400; }
.founder-section { background: rgba(245,240,232,0.03); border-top: 0.5px solid rgba(245,240,232,0.08); padding: 6rem 4rem; }
.founder-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }
.founder-img-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(14,41,24,0.95) 0%, transparent 100%); }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--cream); }
.founder-title-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
.founder-body { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.85; }
.founder-body p + p { margin-top: 1.25rem; }
.founder-body strong { color: var(--cream); font-weight: 400; }
.founder-quote { margin-top: 2.5rem; padding: 1.75rem 2rem; border-left: 1px solid var(--gold); background: rgba(184,150,46,0.06); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.5; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; padding: 6rem 4rem; align-items: start; }
.contact-intro { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 3rem; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; margin-top: 2rem; }
.contact-detail-label:first-child { margin-top: 0; }
.contact-detail-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; display: block; transition: color 0.2s; }
.contact-detail-value:hover { color: var(--cream-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.form-input { background: rgba(245,240,232,0.05); border: 0.5px solid rgba(245,240,232,0.15); padding: 1rem 1.25rem; color: var(--cream); font-family: 'Instrument Sans', sans-serif; font-size: 0.9rem; font-weight: 300; transition: border-color 0.2s; outline: none; }
.form-input:focus { border-color: rgba(245,240,232,0.4); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.5rem; grid-template-columns: 1fr; }
  nav.scrolled, nav.solid { padding: 0.6rem 1.5rem; }
  .nav-links.nav-left, .nav-links.nav-right { display: none; }
  .nav-links a { font-size: 0.62rem; }
  .nav-logo-img { height: 140px; }
  nav.scrolled .nav-logo-img, nav.solid .nav-logo-img { height: 48px; }
  body.light .page-hero { padding-top: 9.5rem; }
  .page-hero, .section { padding: 7rem 1.5rem 3rem; }
  .about-grid, .founder-grid, .brands-intro, .contact-grid, .about-grid.how-we-operate { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .founder-section, .brands-section { padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  footer { flex-direction: column; gap: 1.25rem; text-align: center; padding: 2rem 1.5rem; }
  .portfolio-tabs-wrap, .portfolio-panel { padding: 0 1.5rem; }
  .portfolio-panel { padding: 2rem 1.5rem; }
  .services-note { padding: 3rem 1.5rem; }
}

/* ============================= */
/* LIGHT THEME (eggshell/green)   */
/* ============================= */
body.light {
  --eggshell: #FFFBF2;
  background-color: var(--eggshell);
  color: var(--green);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14,41,24,0.025) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(14,41,24,0.02) 0%, transparent 40%),
    repeating-linear-gradient(0deg, rgba(14,41,24,0.012) 0px, transparent 1px, transparent 2px, rgba(14,41,24,0.012) 3px);
}

body.light nav { position: relative; padding-top: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid rgba(14,41,24,0.08); }
body.light nav.scrolled,
body.light nav.solid {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: rgba(255,251,242,0.96);
  border-bottom: 0.5px solid rgba(14,41,24,0.08);
}
body.light nav.scrolled .nav-logo-img,
body.light nav.solid .nav-logo-img { height: 60px; transition: height 0.3s ease; }
.nav-logo-img { height: 300px; width: auto; display: block; transition: height 0.3s ease; }
body.light .nav-links a { color: rgba(14,41,24,0.6); }
body.light .nav-links a:hover, body.light .nav-links a.active { color: var(--green); }
body.light .nav-links a.active { border-bottom-color: var(--gold); }

body.light .page-hero { padding-top: 19rem; border-bottom: 0.5px solid rgba(14,41,24,0.08); }
body.light .page-hero-heading { color: var(--green); }
body.light .page-hero-sub { color: rgba(14,41,24,0.7); }
body.light .page-hero-centered { text-align: center; }
body.light .page-hero-centered .page-hero-sub { margin-left: auto; margin-right: auto; }

body.light .section-label { color: var(--gold); }

body.light .about-heading { color: var(--green); }
body.light .about-body { color: rgba(14,41,24,0.7); }
body.light .about-body strong { color: var(--green); font-weight: 500; }

body.light .founder-section { background: rgba(14,41,24,0.03); border-top: 0.5px solid rgba(14,41,24,0.08); }
body.light .founder-name { color: var(--green); }
body.light .founder-title-label { color: var(--gold); }
body.light .founder-body { color: rgba(14,41,24,0.7); }
body.light .founder-body strong { color: var(--green); font-weight: 500; }
body.light .founder-quote { color: var(--green); background: rgba(184,150,46,0.08); border-left: 1px solid var(--gold); }
body.light .founder-img-label { background: linear-gradient(to top, rgba(14,41,24,0.85) 0%, transparent 100%); }
body.light .founder-img-label .founder-name,
body.light .founder-img-label .founder-title-label { color: var(--eggshell); }

body.light .services-grid { background: rgba(14,41,24,0.08); }
body.light .service-card { background: var(--eggshell); }
body.light .service-card:hover { background: rgba(14,41,24,0.04); }
body.light .service-num { color: var(--gold); }
body.light .service-title { color: var(--green); }
body.light .service-desc { color: rgba(14,41,24,0.6); }
body.light .services-note { border-top: 0.5px solid rgba(14,41,24,0.08); }
body.light .services-note p { color: rgba(14,41,24,0.7); }

body.light .portfolio-tabs-wrap { border-bottom: 0.5px solid rgba(14,41,24,0.12); }
body.light .portfolio-tab { color: rgba(14,41,24,0.45); }
body.light .portfolio-tab:hover { color: var(--green); }
body.light .portfolio-tab.active { color: var(--green); border-bottom-color: var(--gold); }
body.light .portfolio-card { background: rgba(14,41,24,0.04); }
body.light .portfolio-card-placeholder { color: rgba(14,41,24,0.06); }

body.light .brands-section { background: rgba(14,41,24,0.03); border-top: 0.5px solid rgba(14,41,24,0.08); }
body.light .brands-heading { color: var(--green); }
body.light .brands-copy { color: rgba(14,41,24,0.7); }
body.light .logo-grid { background: rgba(14,41,24,0.08); }
body.light .logo-cell { background: var(--eggshell); color: rgba(14,41,24,0.6); }
body.light .logo-cell:hover { color: var(--green); background: rgba(14,41,24,0.04); }
body.light .logo-cell--placeholder { color: rgba(14,41,24,0.2); }

body.light .contact-intro { color: rgba(14,41,24,0.7); }
body.light .contact-detail-label { color: var(--gold); }
body.light .contact-detail-value { color: var(--green); }
body.light .contact-detail-value:hover { color: var(--green-mid); }
body.light .form-label { color: rgba(14,41,24,0.5); }
body.light .form-input { background: rgba(14,41,24,0.03); border: 0.5px solid rgba(14,41,24,0.15); color: var(--green); }
body.light .form-input:focus { border-color: rgba(14,41,24,0.4); }
body.light .form-input::placeholder { color: rgba(14,41,24,0.35); }

body.light .marquee-section { border-top: 0.5px solid rgba(14,41,24,0.08); border-bottom: 0.5px solid rgba(14,41,24,0.08); }
body.light .marquee-item { color: rgba(14,41,24,0.45); }
body.light .marquee-dot { background: var(--gold); }

body.light .btn-solid { background: var(--green); color: var(--eggshell); }
body.light .btn-solid:hover { background: var(--green-mid); }
body.light .btn-outline { border-color: rgba(14,41,24,0.3); color: var(--green); }
body.light .btn-outline:hover { background: rgba(14,41,24,0.05); border-color: rgba(14,41,24,0.5); }

body.light footer { border-top: 0.5px solid rgba(14,41,24,0.08); }
body.light .footer-logo, body.light .footer-copy, body.light .footer-links a { color: rgba(14,41,24,0.5); }
body.light .footer-links a:hover { color: var(--green); }
