/* =====================================================
   01. ROOT VARIABLES
===================================================== */

:root {
  --gold: #c89b45;
  --gold-soft: #d8ae58;
  --dark: #080706;
  --dark-2: #120f0c;
  --cream: #f3eee6;
  --ink: #211812;
  --muted: #d8cfc3;
  --header: 72px;

  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --font-script: "Allura", "Brush Script MT", "Segoe Script", cursive;
}


/* =====================================================
   02. GLOBAL / RESET
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: #f7f0e6;
  font-family: var(--font-body);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: min(1280px, 86%);
  margin: auto;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 99999;
  padding: 10px;
  background: #fff;
  color: #000;
}

section {
  scroll-margin-top: 85px;
}


/* =====================================================
   03. HEADER
===================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  background: #050403;
  border-bottom: 1px solid rgba(200, 155, 69, 0.22);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.brand img,
.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang {
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.55;
}

.lang.active {
  color: var(--gold);
  opacity: 1;
}

.menu-button {
  display: none;
  width: 40px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px;
  background: #fff;
}

.mobile-nav {
  display: none;
}


/* =====================================================
   04. HERO
===================================================== */

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 38%, rgba(200, 155, 69, 0.09), transparent 48%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.26) 46%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 90px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.sync h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(62px, 8vw, 104px);
  color: #fff;
}

.hero-text {
  max-width: 650px;
  font-size: 21px;
  line-height: 1.75;
}

.handwritten {
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.45em;
  line-height: 1;
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 28px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.button:hover {
  background: var(--gold);
  color: #111;
}


/* =====================================================
   05. GENERAL SECTION
===================================================== */

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 55px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 5vw, 72px);
}

.section-head > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}


/* =====================================================
   06. ABOUT
===================================================== */

.about {
  background: var(--cream);
  color: var(--ink);
}

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

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 5vw, 78px);
  max-width: 680px;
}

.about-copy > p:not(.kicker):not(.philosophy) {
  color: #56483e;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

.philosophy {
  margin-top: 22px;
  line-height: 1.7;
}

.philosophy {
  margin-top: 22px;
  line-height: 1.5;
}

.philosophy strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
}


.about-image img {
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}
.story-home {
  margin-top: 20px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 34px;
  line-height: 1.25;
}


/* =====================================================
   07. MUSIC / ORIGINAL SONGS
===================================================== */

.music {
  background: var(--dark);
}

.listen-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.listen-links a {
  min-width: 145px;
  padding: 12px 18px;
  border: 1px solid rgba(200, 155, 69, 0.55);
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
}


.listen-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.listen-links a .fa {
  font-size: 20px;
}

.listen-links a:hover {
  background: var(--gold);
  color: #111;
}

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

.song-card {
  border: 1px solid rgba(200, 155, 69, 0.22);
  background: #14100d;
  transition: 0.3s;
}

.song-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 69, 0.55);
}

.song-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.song-card > div {
  padding: 24px;
}

.song-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.song-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}


/* =====================================================
   08. SYNC
===================================================== */

.sync {
  background: var(--cream);
  color: var(--ink);
}

.sync-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.sync-copy {
  padding: 80px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sync-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(50px, 5vw, 72px);
}

.sync-copy p {
  color: #4e4137;
  font-size: 18px;
  line-height: 1.8;
}

.sync-image picture,
.sync-image img {
  height: 100%;
}

.sync-image img {
  object-fit: cover;
}

.dark-button {
  color: var(--ink);
}


/* =====================================================
   09. CREATIVE WORK
===================================================== */

.creative {
  background: #0f0b09;
}

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

.feature-grid article {
  padding: 36px;
  border-left: 3px solid var(--gold);
  background: #17120e;
}

.feature-grid h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}


/* =====================================================
   10. CONTACT
===================================================== */

.contact {
  padding: 100px 0;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
}

.contact-inner {
  max-width: 850px;
}

.contact h2 {
  font-size: clamp(54px, 6vw, 82px);
}

.contact p {
  color: #594b40;
  font-size: 18px;
  line-height: 1.8;
}

.contact .button {
  color: var(--ink);
}


/* =====================================================
   11. FOOTER
===================================================== */

.footer {
  position: relative;
  padding: 82px 0 30px;
  background: #050403;
  border-top: 1px solid rgba(200, 155, 69, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.7fr;
  gap: 58px;
}

.footer-logo {
  font-size: 34px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-brand > p:not(.footer-signature) {
  max-width: 440px;
  margin-top: 30px;
  color: #c9beb3;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.65;
}

.footer-signature {
  margin: 28px 0 30px;
  color: var(--gold) !important;
  font-family: var(--font-script);
  font-size: 32px;
  line-height: 1;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 155, 69, 0.72);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  color: #050403;
}

.footer-col h3 {
  margin: 8px 0 18px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-rule {
  width: 34px;
  height: 1px;
  display: block;
  margin-bottom: 26px;
  background: var(--gold);
}

.footer-col > a {
  display: block;
  margin: 15px 0;
  color: #d8cfc3;
  text-decoration: none;
}

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

.footer-connect p {
  margin-top: 0;
  color: #c9beb3;
  line-height: 1.8;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.footer-email {
  color: var(--gold) !important;
  font-size: 18px;
}

.footer-contact-button {
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: #fff !important;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9d9186;
  font-size: 13px;
}

.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-bottom p {
  margin: 0 0 8px;
}

.footer-heart,
.footer-pin {
  color: var(--gold);
  font-size: 21px;
}

.footer-bottom-right {
  text-align: left;
}

.back-to-top {
  position: absolute;
  right: 22px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #080706;
  color: #fff;
  text-decoration: none;
}


/* =====================================================
   12. TABLET / IPAD
===================================================== */

@media (max-width: 980px) {

  :root {
    --header: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 7% 24px;
    background: #050403;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .about-grid,
  .sync-grid {
    grid-template-columns: 1fr;
  }

  .song-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  /* SYNC — keep the image close to the copy on iPad/tablet */
  .sync-grid {
    gap: 0;
  }



  .sync-copy .button {
    margin-bottom: 0;
  }

  

  .sync-image picture {
    display: block;
    height: auto;
  }



  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-connect {
    grid-column: 1 / -1;
  }
}


/* =====================================================
   13. MOBILE / IPHONE
===================================================== */

@media (max-width: 700px) {

  .wrap {
    width: min(100% - 40px, 1280px);
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .language-switcher {
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.16) 35%, rgba(0,0,0,.72));
  }

  .hero-content {
    align-self: flex-end;
    padding: 120px 0 70px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 70px 0;
  }

  .about-grid {
    gap: 38px;
  }

  .about-copy h2 {
    font-size: 52px;
  }

  .song-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  


  .contact {
    padding: 75px 0;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-grid {
    gap: 42px;
  }

  .footer-brand,
  .footer-connect {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom-right {
    margin-top: 26px;
  }

  .back-to-top {
    right: 14px;
    bottom: 24px;
  }
}


/* =====================================================
   14. SMALL MOBILE HEADER
===================================================== */

@media (max-width: 600px) {

  .wrap.header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 17px;
    line-height: 1.05;
  }

  .header-tools {
    gap: 10px;
  }

  .language-switcher {
    gap: 5px;
    font-size: 11px;
    white-space: nowrap;
  }

  .menu-button {
    width: 34px;
    height: 32px;
    padding: 0;
  }

  .menu-button span {
    margin: 5px 2px;
  }
}
/* =========================================
   SYNC — TABLET + MOBILE FINAL FIX
========================================= */

@media (max-width: 980px) {

  .sync {
    padding: 0 !important;
  }

  .sync-grid {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    gap: 0 !important;
  }

  .sync-copy {
    display: block;
    padding: 55px 7% 25px;
    margin: 0;
  }

  .sync-copy .button {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .sync-image {
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }

  .sync-image picture {
    display: block;
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }

  .sync-image img {
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
  }

}


/* =========================================
   ACTIVE MENU HIGHLIGHT
========================================= */

.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--gold) !important;
}
/* =========================================
   IPHONE MUSIC BUTTONS — STACK VERTICALLY
========================================= */

@media (max-width: 600px) {

  .listen-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }

  .listen-links a {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    justify-content: center;
  }

}

