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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-700: #3f3f46;
  --zinc-900: #18181b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--zinc-400);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a {
  color: var(--zinc-400);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--white); }

.mobile-cta {
  margin-top: 12px;
  background: var(--gold);
  color: var(--black) !important;
  padding: 12px 20px !important;
  font-weight: 600;
  text-align: center;
  border: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--zinc-400);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zinc-500);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--zinc-500), transparent);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.section-sub {
  margin-top: 16px;
  color: var(--zinc-400);
  max-width: 500px;
  font-size: 15px;
}

/* ── WORK ── */
.work {
  padding: 120px 0;
  background: var(--black);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.work-card {
  background: var(--zinc-900);
  overflow: hidden;
  transition: transform 0.3s;
}

.work-card:hover { transform: translateY(-4px); }
.work-card.coming-soon { opacity: 0.5; }
.work-card.coming-soon:hover { transform: none; }

.work-preview {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.work-preview-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

.nail-salon {
  background: url('Classy-Nails-Preview.png') center top / cover no-repeat;
}

.guardian-inbox {
  background: url('Guardian-Inbox-Preview.png') center top / cover no-repeat;
}

.placeholder {
  background: var(--zinc-900);
  border: 1px dashed rgba(255,255,255,0.1);
}

.work-info {
  padding: 28px 32px 36px;
}

.work-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.work-tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 3px 10px;
}

.work-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.work-info p {
  color: var(--zinc-400);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.work-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.work-link:hover { color: var(--gold-light); }

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: #0f0f0f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--zinc-900);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover { background: #222; }

.service-card.featured {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--zinc-400);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--black);
  padding: 4px 10px;
  font-weight: 600;
}

.services-note {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
}

.services-note p {
  color: var(--zinc-400);
  font-size: 13px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-left p {
  color: var(--zinc-400);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tyler-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(201,169,110,0.3);
}

.tyler-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zinc-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zinc-400);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--zinc-500);
}

/* ── FOOTER ── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
}

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

.footer-inner .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  display: block;
}

.footer-left p {
  font-size: 13px;
  color: var(--zinc-500);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-right p { font-size: 12px; color: var(--zinc-500); }

.footer-right a {
  font-size: 13px;
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 100px 24px 60px; }

  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .container { padding: 0 24px; }
  .work { padding: 80px 0; }
  .services { padding: 80px 0; }
  .contact { padding: 80px 0; }
}
