/* ===========================
   KATAS SOUND — style.css
   ========================== */

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

:root {
  --bg:       #f7f3ec;
  --surface:  #ffffff;
  --surface2: #f0ebe1;
  --border:   #e0d9ce;
  --text:     #1c1814;
  --muted:    #7a7268;
  --accent:   #b8862e;
  --accent-light: rgba(184, 134, 46, 0.12);
  --white:    #ffffff;
  --font:     'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container.narrow {
  max-width: 760px;
}

/* ===========================
   LABELS & HEADINGS
   =========================== */

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.label.center { text-align: center; }

.section-h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-h2.center { text-align: center; }

/* ===========================
   HEADER
   =========================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.wordmark {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text);
}

.wordmark-sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid rgba(184, 134, 46, 0.4);
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s, border-color 0.2s !important;
}

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

.nav-dsp {
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  border: 1px solid rgba(184, 134, 46, 0.4);
  padding: 7px 14px;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-dsp:hover {
  background: var(--accent-light) !important;
  border-color: var(--accent) !important;
}

/* ===========================
   HERO
   =========================== */

.hero {
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 90vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
}

.hero-tagline {
  font-size: 19px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-location svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-photo {
  position: relative;
}

.photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 1px var(--border);
  aspect-ratio: 4/3;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--muted);
}

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.15s, transform 0.15s;
}

.btn-accent:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ===========================
   STUDIO INTRO
   =========================== */

.studio-intro-section {
  padding: 140px 0 80px;
  text-align: center;
}

.studio-intro-h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.studio-intro-p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.studio-intro-section .hero-actions {
  justify-content: center;
}

/* ===========================
   ABOUT PREVIEW
   =========================== */

.about-preview-section {
  padding: 80px 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s;
}

.stat-item:hover { background: #fdfaf5; }

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.stat-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ===========================
   DIVIDER
   =========================== */

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===========================
   SERVICES
   =========================== */

.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.service-card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s;
}

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

.service-icon {
  font-size: 22px;
  line-height: 1;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.service-card-footer {
  margin-top: 8px;
}

/* ===========================
   ABOUT
   =========================== */

.about-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.about-text p.lead {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.team-member {
  background: var(--bg);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.team-member:last-child { border-bottom: none; }

.team-member-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.team-member-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.team-member-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.studio-info {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.studio-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
}

.studio-info-row svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.studio-info-row span {
  color: var(--muted);
  line-height: 1.5;
}

/* ===========================
   SELECTED WORKS
   =========================== */

.works-section {
  padding: 100px 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.work-item {
  background: var(--surface);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: none;
  transition: background 0.15s;
}

.work-item:hover { background: #fdfaf5; }

.work-artist {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.work-title {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.work-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(184, 134, 46, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.spotify-wrap {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===========================
   CONTACT / INQUIRY
   =========================== */

.contact-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.contact-grid .calendly-inline-widget {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-detail:hover { color: var(--accent); }

.contact-detail svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

.contact-note {
  font-size: 13px;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.booking-cta {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.booking-cta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.booking-cta p {
  font-size: 13px !important;
  color: var(--muted);
  line-height: 1.6 !important;
}

/* Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-status {
  font-size: 14px;
  min-height: 20px;
  color: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); }

.footer-links .katas-dsp-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(184, 134, 46, 0.3);
  padding: 5px 12px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s !important;
}

.footer-links .katas-dsp-link:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent) !important;
}

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

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav a:not(.nav-cta):not(:last-of-type) {
    display: none;
  }
}
