:root {
  --pink: #e8307a;
  --navy: #1e1e4a;
  --lav: #ece5ff;
  --lav-l: #f5f1ff;
  --txt-m: #5a5a7a;
}

::selection {
  background: #f2c7df;
  color: #1e1e4a;
}

::-moz-selection {
  background: #f2c7df;
  color: #1e1e4a;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1e1e4a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(232, 48, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 66px;
}

.logo {
  line-height: 1;
}

.logo-main {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #e8307a;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #1e1e4a;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e1e4a;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.on {
  color: #e8307a;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  font-family: inherit;
}

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

.btn-p {
  background: #e8307a;
  color: #fff;
}

.btn-o {
  background: transparent;
  color: #1e1e4a;
  border: 1.5px solid #1e1e4a;
}

.btn-o:hover {
  background: #1e1e4a;
  color: #fff;
}

.btn-lav {
  background: #ece5ff;
  color: #1e1e4a;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #e8307a;
  margin-bottom: 10px;
}

.eyebrow-w {
  color: #ece5ff;
}

.h1 {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e1e4a;
  line-height: 1.1;
}

.h2 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e1e4a;
  line-height: 1.15;
}

.h-w {
  color: #fff;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #5a5a7a;
}

.body-w {
  color: rgba(255, 255, 255, 0.72);
}

.bar {
  height: 3px;
  background: linear-gradient(90deg, #ece5ff, #e8307a, #1e1e4a);
}

.img-ph {
  background: #ece5ff;
  border: 1.5px dashed rgba(232, 48, 122, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  font-size: 0.72rem;
  color: #5a5a7a;
  font-weight: 500;
  line-height: 1.5;
}

.img-ph .rec {
  font-size: 0.65rem;
  color: #e8307a;
  margin-top: 4px;
}

section {
  padding: 72px 64px;
}

.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.sec-hdr-lnk {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e8307a;
  border-bottom: 1px solid #e8307a;
  padding-bottom: 2px;
}

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

.iv-card {
  background: #f5f1ff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232, 48, 122, 0.08);
  transition: transform 0.15s, box-shadow 0.15s;
  display: block;
  color: inherit;
}

.iv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(232, 48, 122, 0.12);
}

.iv-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ece5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.play-wrap {
  width: 52px;
  height: 52px;
  background: #e8307a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.play-tri {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid white;
  margin-left: 3px;
}

.iv-body {
  padding: 18px;
}

.iv-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8307a;
  margin-bottom: 6px;
}

.iv-title {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e1e4a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.iv-desc {
  font-size: 0.78rem;
  color: #5a5a7a;
  line-height: 1.55;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.soc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f5f1ff;
  border-radius: 12px;
  border: 1px solid rgba(232, 48, 122, 0.1);
  transition: border-color 0.15s, transform 0.15s;
  color: inherit;
}

.soc-card:hover {
  border-color: #e8307a;
  transform: translateY(-2px);
}

.soc-ic {
  width: 40px;
  height: 40px;
  background: #1e1e4a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}

.soc-lbl strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e1e4a;
}

.soc-lbl span {
  font-size: 0.7rem;
  color: #5a5a7a;
}

.pg-hdr {
  background: #1e1e4a;
  padding: 72px 64px;
  text-align: center;
}

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

.ph-cell {
  background: #ece5ff;
  border-radius: 10px;
  border: 1px solid rgba(232, 48, 122, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #5a5a7a;
  gap: 6px;
  height: 260px;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.15s;
}

.ph-cell:hover {
  opacity: 0.85;
}

.ph-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 66px);
}

.c-left {
  background: #1e1e4a;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-right {
  background: #f5f1ff;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.c-ic {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-info strong {
  display: block;
  font-size: 0.82rem;
  color: white;
  font-weight: 500;
}

.c-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.c-soc-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.c-soc {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: background 0.15s;
}

.c-soc:hover {
  background: #e8307a;
}

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

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e1e4a;
}

.fg input,
.fg select,
.fg textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(30, 30, 74, 0.15);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #1e1e4a;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: #e8307a;
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

footer {
  background: #1e1e4a;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 36px 40px;
  font-size: 0.78rem;
}

footer strong {
  color: #e8307a;
}

.tip {
  background: #ece5ff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.75rem;
  color: #5a5a7a;
  margin-top: 16px;
  border-left: 3px solid #e8307a;
}

.tip a {
  color: #e8307a;
  font-weight: 500;
}

.insta-box {
  background: #f5f1ff;
  border-radius: 16px;
  padding: 52px;
  text-align: center;
  margin-bottom: 52px;
  border: 1px solid rgba(232, 48, 122, 0.1);
}

.instagram-widget {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(232, 48, 122, 0.08);
  padding: 18px;
  position: relative;
}

.instagram-widget::after {
  content: "Collaborations";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 205px;
  height: 33px;
  background: #ffff;
  border-radius: 999px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 500;
  text-transform: uppercase;
}

.instagram-widget > div {
  width: 100%;
}

/* Custom site cursor */
html,
body {
  cursor: url("../assets/cursor.svg") 0 0, auto;
}

/* Hover cursor for clickable elements */
a,
button,
.btn,
.iv-card,
.ph-cell,
.sec-hdr-lnk,
.nav-links a,
[role="button"],
input[type="submit"],
input[type="button"] {
  cursor: url("../assets/hovercursor.svg") 0 0, pointer;
}

/* -------------------------------
   HOME PAGE MOBILE OPTIMIZATION
-------------------------------- */

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* Tablet + mobile */
@media (max-width: 900px) {
  nav {
    padding: 18px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .nav-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 14px !important;
    padding: 0 !important;
    margin: 8px 0 0 !important;
  }

  .nav-links li {
    list-style: none !important;
  }

  .nav-links a {
    font-size: 14px !important;
  }

  .home-hero {
    grid-template-columns: 1fr !important;
    padding: 48px 20px 0 !important;
    min-height: auto !important;
    gap: 28px !important;
  }

  .home-hero-text {
    padding: 0 !important;
  }

  .home-hero .h1 {
    font-size: clamp(42px, 11vw, 72px) !important;
    line-height: 0.95 !important;
    margin-bottom: 18px !important;
  }

  .home-hero .body-text {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .home-hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .home-hero-buttons .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .home-hero-media {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 8px !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .home-hero-img {
    width: 100% !important;
    max-width: 340px !important;
    height: 460px !important;
    margin: 0 auto !important;
    border-radius: 170px 170px 0 0 !important;
  }

  .home-hero-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  section {
    padding: 56px 20px !important;
  }

  .sec-hdr {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .iv-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .iv-card {
    width: 100% !important;
  }

  .home-about {
    grid-template-columns: 1fr !important;
    padding: 56px 20px !important;
    gap: 32px !important;
  }

  .home-about-img {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }

  .home-photo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .ph-cell {
    min-height: 160px !important;
  }

  .insta-box {
    padding: 38px 22px !important;
    margin-bottom: 42px !important;
  }

  .instagram-widget {
    padding: 12px !important;
    border-radius: 14px !important;
  }

  footer {
    padding: 28px 20px !important;
    text-align: center !important;
  }
}

/* Small phones */
@media (max-width: 520px) {
  nav {
    padding: 16px !important;
  }

  .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
  }

  .home-hero {
    padding: 36px 16px 0 !important;
  }

  .home-hero .h1 {
    font-size: 44px !important;
  }

  .home-hero-media {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .home-hero-img {
    width: 100% !important;
    max-width: 300px !important;
    height: 410px !important;
    border-radius: 150px 150px 0 0 !important;
  }

  section {
    padding: 48px 16px !important;
  }

  .home-about {
    padding: 48px 16px !important;
  }

  .home-photo-grid {
    grid-template-columns: 1fr !important;
  }

  .insta-box {
    padding: 32px 18px !important;
    margin-bottom: 36px !important;
  }

  .instagram-widget {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* -------------------------------
   MOBILE HAMBURGER NAV
-------------------------------- */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #1e1e4a;
  margin: 6px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 900px) {
  .site-nav {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 24px !important;
    background: #fff !important;
    z-index: 1000 !important;
  }

  .site-nav .logo {
    position: relative !important;
    z-index: 1001 !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .nav-links {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 18px 24px 26px !important;
    background: #fff !important;
    border-top: 1px solid rgba(30, 30, 74, 0.12) !important;
    box-shadow: 0 18px 40px rgba(30, 30, 74, 0.12) !important;
    z-index: 1000 !important;
  }

  .site-nav.is-open .nav-links {
    display: grid !important;
  }

  .nav-links li {
    list-style: none !important;
    width: 100% !important;
  }

  .nav-links a {
    display: flex !important;
    width: 100% !important;
    padding: 18px 0 !important;
    font-size: 18px !important;
    letter-spacing: 0.16em !important;
    border-bottom: 1px solid rgba(30, 30, 74, 0.12) !important;
  }

  .nav-links li:last-child a {
    border-bottom: 0 !important;
  }

  .site-nav.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .site-nav {
    padding: 18px 20px !important;
  }

  .nav-links {
    padding: 14px 20px 24px !important;
  }

  .nav-links a {
    font-size: 17px !important;
  }
}

/* -------------------------------
   ABOUT PAGE MOBILE OPTIMIZATION
-------------------------------- */

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr !important;
    padding: 56px 20px !important;
    gap: 32px !important;
    min-height: auto !important;
  }

  .about-hero-img {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    order: 2 !important;
  }

  .about-hero-text {
    order: 1 !important;
  }

  .about-hero .h1 {
    font-size: clamp(40px, 10vw, 64px) !important;
    line-height: 1 !important;
  }

  .about-hero .body-text {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .about-main {
    padding: 56px 20px !important;
  }

  .about-main-inner {
    max-width: 100% !important;
  }

  .social-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .soc-card {
    width: 100% !important;
    padding: 16px !important;
  }
}

@media (max-width: 520px) {
  .about-hero {
    padding: 44px 16px !important;
    gap: 28px !important;
  }

  .about-hero .h1 {
    font-size: 42px !important;
  }

  .about-hero-img {
    max-width: 100% !important;
  }

  .about-hero-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .about-main {
    padding: 48px 16px !important;
  }

  .about-main .h2 {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }

  .soc-card {
    align-items: flex-start !important;
  }

  .soc-lbl strong {
    font-size: 0.85rem !important;
  }

  .soc-lbl span {
    font-size: 0.72rem !important;
  }
}

/* -------------------------------
   CONTACT PAGE MOBILE OPTIMIZATION
-------------------------------- */

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .c-left,
  .c-right {
    padding: 56px 20px !important;
  }

  .c-left {
    order: 1 !important;
  }

  .c-right {
    order: 2 !important;
  }

  .contact-wrap .h2 {
    font-size: clamp(34px, 8vw, 52px) !important;
    line-height: 1.1 !important;
  }

  .c-row {
    align-items: flex-start !important;
  }

  .c-soc-row {
    flex-wrap: wrap !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .form {
    width: 100% !important;
  }

  .fg input,
  .fg select,
  .fg textarea {
    font-size: 16px !important;
  }

  .form .btn {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 520px) {
  .c-left,
  .c-right {
    padding: 48px 16px !important;
  }

  .contact-wrap .h2 {
    font-size: 36px !important;
  }

  .c-row {
    gap: 12px !important;
  }

  .c-ic {
    width: 38px !important;
    height: 38px !important;
  }

  .c-info strong {
    font-size: 0.8rem !important;
  }

  .c-info span {
    font-size: 0.72rem !important;
  }

  .c-soc {
    width: 40px !important;
    height: 40px !important;
  }
}

.full-gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8307a;
  color: #f5f1ff;
  font-weight: 600;
  text-decoration: none;
  min-height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.full-gallery-card img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  filter: blur(10px);
  transform: scale(1.08);
  z-index: 0;
}

.full-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 60, 0.72);
  z-index: 1;
}

.full-gallery-card span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soc-ic,
.c-ic {
  color: #e8307a;
}
