/* Coto Music — evening / cocktail aesthetic
   Palette: deep charcoal, wine, warm amber gold
   Fonts: Sora (display) + Manrope (body)
*/

:root {
  --ink: #120e0d;
  --charcoal: #1a1412;
  --charcoal-lift: #241c1a;
  --wine: #6b2c3e;
  --wine-soft: #8a3d52;
  --amber: #c9a06a;
  --amber-bright: #e0bc84;
  --cream: #f3ebe0;
  --cream-muted: #cbbba8;
  --line: rgba(201, 160, 106, 0.22);
  --glow: rgba(201, 160, 106, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1080px;
  --pad: clamp(1.25rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(107, 44, 62, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(201, 160, 106, 0.08), transparent 50%),
    var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--amber-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--cream);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 14, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}

.logo:hover {
  color: var(--amber-bright);
}

.logo-mark {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber-bright), var(--wine-soft));
  box-shadow: 0 0 16px rgba(201, 160, 106, 0.45);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  text-decoration: none;
}

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

.nav-cta {
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  filter: brightness(1.06);
  color: var(--ink) !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream-muted);
  border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.menu-toggle span {
  transition: transform 0.2s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--pad) 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 14, 13, 0.95);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0.25rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 160, 106, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--amber-bright);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(107, 44, 62, 0.4), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.hero-inner {
  position: relative;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.85rem, 6.2vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: none;
  color: var(--cream);
}

.hero h1 .h1-line {
  display: block;
}

.lede {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(203, 187, 168, 0.75);
  letter-spacing: 0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: var(--ink);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: rgba(201, 160, 106, 0.08);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.section-intro {
  margin: 0;
  color: var(--cream-muted);
  font-weight: 300;
}

/* Experience cards */
.experience {
  background: linear-gradient(180deg, transparent, rgba(36, 28, 26, 0.55) 20%, rgba(36, 28, 26, 0.55) 80%, transparent);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.card-accent {
  background:
    linear-gradient(160deg, rgba(107, 44, 62, 0.35), transparent 55%),
    var(--charcoal-lift);
  border-color: rgba(201, 160, 106, 0.35);
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--amber-bright);
}

.card p {
  margin: 0 0 1.1rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--cream);
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--wine-soft);
  box-shadow: 0 0 0 2px rgba(138, 61, 82, 0.25);
}

.styles-line {
  margin: 2rem 0 0;
  max-width: 42rem;
  color: var(--cream-muted);
  font-size: 0.98rem;
  font-weight: 300;
}

/* Where */
.where-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .where-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.where-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.where-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  color: var(--cream);
}

.where-item p {
  margin: 0;
  color: var(--cream-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

/* About */
.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(107, 44, 62, 0.2), transparent 70%);
  pointer-events: none;
}

.about-inner {
  position: relative;
}

.about-copy {
  max-width: 38rem;
}

.about-copy p {
  margin: 0 0 1.1rem;
  color: var(--cream-muted);
  font-weight: 300;
  font-size: 1.08rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Book */
.book {
  background:
    linear-gradient(180deg, transparent, rgba(107, 44, 62, 0.12) 30%, rgba(107, 44, 62, 0.08));
  border-top: 1px solid var(--line);
}

.book-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .book-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3rem;
  }
}

.book-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.5rem;
}

.book-email {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 0.1rem;
}

.book-email:hover {
  color: var(--amber-bright);
}

.book-hint {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--cream-muted);
  font-weight: 300;
  max-width: 22rem;
}

.inquire-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(18, 14, 13, 0.65);
  border: 1px solid rgba(201, 160, 106, 0.28);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(203, 187, 168, 0.45);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 160, 106, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: rgba(203, 187, 168, 0.7);
  font-weight: 300;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-tag {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.footer-mail {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--amber);
}

.footer-mail:hover {
  color: var(--amber-bright);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .menu-toggle span {
    transition: none;
  }
}


.styles-line-soft {
  margin-top: 0.75rem;
  opacity: 0.85;
  font-size: 0.98rem;
}
