/* TERRALUZ — warm earth & light */

:root {
  --green-900: #16241C;
  --green-800: #1E3126;
  --green-700: #294034;
  --cream:     #F5EFE3;
  --cream-2:   #EDE4D3;
  --rule:      #D9CDB4;
  --rule-2:    #E3D9C4;
  --ink:       #2B2621;
  --ink-2:     #4A443C;
  --ink-3:     #6B6255;
  --muted:     #8A8070;
  --terra:     #C0603A;
  --terra-dk:  #A64F2E;
  --ochre:     #C99B4C;

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Karla", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --maxw: 1440px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dk); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cream); color: var(--ink); padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* grain ------------------------------------------------------------------ */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* type ------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--display); font-weight: 300; margin: 0; line-height: 1.05; }
h1 { font-size: clamp(44px, 6.4vw, 92px); }
h2 { font-size: clamp(34px, 4.4vw, 62px); }
h3 { font-size: clamp(24px, 2.2vw, 32px); font-weight: 500; }

p { margin: 0; text-wrap: pretty; }

.kicker {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase; color: var(--terra);
}
.kicker::before { content: ""; width: 54px; height: 1px; background: currentColor; flex: none; }
.kicker--light { color: var(--ochre); }

.lede { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.75; color: var(--ink-2); }

/* buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 32px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--solid { background: var(--terra); color: #F8F4EA; }
.btn--solid:hover { background: var(--terra-dk); color: #F8F4EA; }
.btn--ghost { border-color: rgba(245,239,227,.34); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); color: var(--cream); }

/* header ----------------------------------------------------------------- */
.site-header {
  position: absolute; inset-inline: 0; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(16px, 2.4vw, 34px) var(--pad);
}
.wordmark {
  font-family: var(--display); font-weight: 500; color: var(--cream);
  font-size: clamp(17px, 1.8vw, 25px); letter-spacing: .4em; text-decoration: none;
}
.wordmark:hover { color: var(--cream); }
.header-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 44px); }
.nav { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  font-size: 14px; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(245,239,227,.82);
}
.nav a:hover { color: var(--cream); }

.langs {
  display: flex; gap: 4px; align-items: center;
  padding: 5px 7px; border: 1px solid rgba(245,239,227,.26); border-radius: 999px;
}
.langs a {
  padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; color: rgba(245,239,227,.62);
}
.langs a:hover { color: var(--cream); }
.langs a[aria-current="true"] { background: var(--terra); color: #F8F4EA; font-weight: 700; }

/* hero ------------------------------------------------------------------- */
.hero { position: relative; min-height: min(812px, 92vh); display: flex; align-items: flex-end; background: var(--green-900); overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,28,.74) 0%, rgba(22,36,28,.26) 30%, rgba(22,36,28,.58) 64%, rgba(22,36,28,.94) 100%);
}
.hero__body {
  position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(48px, 7vw, 88px);
  display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px);
}
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero__sub { color: rgba(245,239,227,.8); max-width: 52ch; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

/* next-concert strip ------------------------------------------------------ */
.strip { background: var(--green-800); color: var(--cream); }
.strip__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(18px, 3vw, 40px); padding-block: clamp(24px, 3vw, 34px);
}
.strip__left { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2.6vw, 34px); }
.strip__label { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--ochre); }
.strip__div { width: 1px; height: 40px; background: rgba(245,239,227,.2); }
.strip h3 { color: var(--cream); }
.strip__meta { font-size: 14px; color: rgba(245,239,227,.66); }
.strip__right { display: flex; align-items: center; gap: 24px; }
.strip__date { text-align: right; font-family: var(--display); font-size: 27px; font-weight: 500; }

/* sections ---------------------------------------------------------------- */
section { scroll-margin-top: 24px; }
.sec { padding-block: clamp(64px, 8vw, 116px); }
.sec--dark { background: var(--green-800); color: var(--cream); }
.sec--dark h2, .sec--dark h3 { color: var(--cream); }

.two-col { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(28px, 3vw, 40px); align-items: center; }
.two-col > .col-a { grid-column: span 6; display: flex; flex-direction: column; gap: clamp(20px, 2vw, 30px); }
.two-col > .col-b { grid-column: span 6; }
.col-b img { width: 100%; height: clamp(340px, 42vw, 596px); object-fit: cover; border-radius: 2px; }

.arrow-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--terra); }
.arrow-link svg { transition: transform .18s ease; }
.arrow-link:hover svg { transform: translateX(3px); }

/* about ------------------------------------------------------------------- */
.about-head { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: clamp(28px, 3vw, 40px); }
.about-head__a { grid-column: span 5; display: flex; flex-direction: column; gap: 24px; }
.about-head__b { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.82; color: var(--ink-2); }

.quote-band { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: clamp(28px, 3vw, 40px); align-items: center; }
.quote-band__img { grid-column: span 5; }
.quote-band__img img { width: 100%; height: clamp(360px, 40vw, 560px); object-fit: cover; border-radius: 2px; }
.quote-band__q { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 26px; }
.quote-band blockquote { margin: 0; font-family: var(--display); font-size: clamp(26px, 2.9vw, 40px); line-height: 1.24; font-weight: 300; color: var(--cream); }
.quote-band cite { font-style: normal; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,239,227,.5); }

.members { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(28px, 5vw, 72px); }
.member { display: flex; flex-direction: column; gap: 26px; }
.member__photo { border-radius: 2px; overflow: hidden; background: #2A1D20; }
.member__photo img { width: 100%; height: clamp(360px, 36vw, 520px); object-fit: cover; object-position: 50% 30%; }
.member__text { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--rule); }
.member__country { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); }
.member h3 { font-size: clamp(30px, 3vw, 42px); font-weight: 400; }
.member__role { font-size: 15px; letter-spacing: .05em; color: var(--ink-3); }
.member__bio { font-size: 16px; line-height: 1.78; color: var(--ink-2); }

/* music ------------------------------------------------------------------- */
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: clamp(20px, 4vw, 60px); margin-bottom: clamp(32px, 4vw, 54px); }
.sec-head__a { display: flex; flex-direction: column; gap: 24px; }
.sec-head__b { max-width: 44ch; }

.videos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(24px, 3vw, 40px); }
.video { display: flex; flex-direction: column; gap: 20px; }
.video__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px;
  background: var(--green-900); border: 0; padding: 0; cursor: pointer; width: 100%;
}
.video__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,28,0) 40%, rgba(22,36,28,.5) 100%);
}
.video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 999px;
  background: rgba(245,239,227,.92); color: var(--green-800);
  transition: transform .18s ease, background-color .18s ease;
}
.video__frame:hover .video__play { transform: translate(-50%,-50%) scale(1.06); background: var(--cream); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video__meta { display: flex; flex-direction: column; gap: 8px; }
.video__venue { font-size: 15px; color: var(--ink-3); }

.reels { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(16px, 2vw, 28px); }
.reel {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  min-height: clamp(280px, 28vw, 404px); padding: 26px;
  border: 1px solid rgba(245,239,227,.16); border-radius: 2px;
  background: linear-gradient(165deg, var(--green-700) 0%, var(--green-900) 100%);
}
.reel__icon {
  position: absolute; top: 24px; right: 24px;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid rgba(245,239,227,.3); color: rgba(245,239,227,.8);
}
.reel__title { font-family: var(--display); font-size: clamp(21px, 1.9vw, 27px); line-height: 1.16; font-weight: 500; color: var(--cream); }
.reel__composer { font-size: 13px; color: var(--ochre); }

/* gigs -------------------------------------------------------------------- */
.gig-next {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 48px); padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
  background: var(--green-800); border-radius: 2px; border-left: 3px solid var(--ochre);
  color: var(--cream);
}
.gig-next + .gig-next { margin-top: 20px; }
.gig-next__left { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 4vw, 52px); }
.gig-next__date { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 104px; }
.gig-next__day { font-family: var(--display); font-size: clamp(48px, 5vw, 66px); line-height: 1; font-weight: 300; }
.gig-next__mon { font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--ochre); }
.gig-next__yr { font-size: 13px; color: rgba(245,239,227,.5); }
.gig-next__div { width: 1px; height: 92px; background: rgba(245,239,227,.18); }
.gig-next__body { display: flex; flex-direction: column; gap: 10px; }
.gig-next h3 { font-size: clamp(28px, 3vw, 42px); font-weight: 400; }
.gig-next__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 15px; color: rgba(245,239,227,.68); }
.gig-none { padding: 40px 0; font-size: 17px; color: var(--ink-2); }

.past-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); margin-top: clamp(48px, 6vw, 88px); }
.past-head h3 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 400; }
.past-head span { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.past { list-style: none; margin: 0; padding: 0; }
.past li { display: grid; grid-template-columns: 148px 1fr 1fr; gap: clamp(12px, 2vw, 32px); align-items: center; padding: 24px 0; border-bottom: 1px solid var(--rule-2); }
.past__date { font-size: 15px; letter-spacing: .06em; color: var(--muted); }
.past__title { font-family: var(--display); font-size: clamp(20px, 1.9vw, 25px); font-weight: 500; }
.past__venue { font-size: 15px; color: var(--ink-3); }
.past-note { padding-top: 24px; font-size: 15px; color: var(--muted); }

/* contact ------------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: clamp(32px, 3vw, 40px); }
.contact__a { grid-column: span 5; display: flex; flex-direction: column; gap: 34px; }
.contact__intro { display: flex; flex-direction: column; gap: 22px; }
.contact__lead { color: rgba(245,239,227,.72); max-width: 44ch; line-height: 1.78; }
.contact__facts { display: flex; flex-direction: column; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(245,239,227,.16); list-style: none; margin: 0; }
.contact__facts li { display: flex; align-items: center; gap: 15px; font-size: 16px; }
.contact__facts svg { flex: none; color: var(--ochre); }
.contact__facts a { color: var(--cream); }
.contact__facts a:hover { color: var(--ochre); }
.contact__social { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 24px; border-top: 1px solid rgba(245,239,227,.16); }
.contact__social a { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,239,227,.56); }
.contact__social a:hover { color: var(--ochre); }

.form-card { grid-column: 7 / span 6; padding: clamp(28px, 3.4vw, 48px) clamp(24px, 3.2vw, 46px); background: var(--cream); border-radius: 2px; color: var(--ink); }
.form-grid { display: grid; gap: 26px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 17px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid #C9BCA0;
  padding: 0 0 11px; border-radius: 0; width: 100%; min-height: 44px;
}
.field textarea { min-height: 108px; resize: vertical; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: #B8AC94; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8070' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--terra); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.form-note { font-size: 13px; line-height: 1.6; color: var(--muted); max-width: 34ch; }
.form-msg { font-size: 15px; line-height: 1.6; padding: 14px 18px; border-radius: 2px; display: none; }
.form-msg[data-state="ok"] { display: block; background: #E4EADF; color: #244032; border-left: 3px solid var(--green-700); }
.form-msg[data-state="err"] { display: block; background: #F6E3DA; color: #7A3418; border-left: 3px solid var(--terra); }

/* footer -------------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: rgba(245,239,227,.62); font-size: 14px; }
.site-footer__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-block: 40px; }
.site-footer a { color: rgba(245,239,227,.62); }
.site-footer a:hover { color: var(--ochre); }
.footer-langs { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-langs a[aria-current="true"] { color: var(--ochre); }


/* mobile menu (one-pager anchors) ------------------------------------------ */
.menu { display: none; position: relative; }
.menu > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(245,239,227,.28); color: var(--cream);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu[open] > summary { border-color: var(--cream); }
.menu__panel {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 30;
  display: flex; flex-direction: column; min-width: 190px;
  padding: 8px; border-radius: 10px;
  background: var(--green-800); border: 1px solid rgba(245,239,227,.16);
  box-shadow: 0 18px 40px rgba(11,20,15,.42);
}
.menu__panel a {
  padding: 13px 16px; border-radius: 6px;
  font-size: 14px; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(245,239,227,.86);
}
.menu__panel a:hover { background: rgba(245,239,227,.08); color: var(--cream); }
.menu__langs { display: none; gap: 4px; margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(245,239,227,.16); }
.menu__langs a { padding: 11px 12px; font-size: 12px; letter-spacing: .08em; }
.menu__langs a[aria-current="true"] { background: var(--terra); color: #F8F4EA; font-weight: 700; }

/* responsive ---------------------------------------------------------------- */
@media (max-width: 1000px) {
  .two-col > .col-a, .two-col > .col-b,
  .about-head__a, .about-head__b,
  .quote-band__img, .quote-band__q,
  .contact__a, .form-card { grid-column: 1 / -1; }
  .reels { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nav { display: none; }
  .menu { display: block; }
}

@media (max-width: 760px) {
  .videos, .members { grid-template-columns: 1fr; }
  .past li { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .past__date { order: -1; }
  .gig-next__div, .strip__div { display: none; }
  .gig-next__date { flex-direction: row; align-items: baseline; gap: 10px; min-width: 0; }
  .hero { min-height: 640px; }
  .hero__img { object-position: 68% 30%; }
  .form-row { grid-template-columns: 1fr; }
  .strip__in { flex-direction: column; align-items: flex-start; }
  .strip__right { width: 100%; justify-content: space-between; }
  .strip__date { text-align: left; }
}

@media (max-width: 560px) {
  .reels { grid-template-columns: 1fr; }
  .site-header > .header-right > .langs { display: none; }
  .menu__langs { display: flex; }
}
