/* ===========================================================
   Glassdrop Studio — site styles
   =========================================================== */

/* ——— design tokens ——— */
:root {
  --white: #ffffff;
  --cream: #f5f1e6;
  --cream-soft: #faf7ef;
  --navy: #1e2d4a;
  --navy-soft: #3d4866;
  --blue: #8fc4dd;
  --gold: #e5b547;
  --gold-deep: #a87830;
  --rule: rgba(30, 45, 74, 0.1);
  --rule-strong: rgba(30, 45, 74, 0.18);
}

/* ——— reset / base ——— */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Jost",
    -apple-system,
    sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ——— shared container ——— */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 900px) {
  .wrap {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 24px;
  }
}

/* ——— site header ——— */
.site-header {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: min(30vw, 238px);
  min-width: 180px;
  height: auto;
}

/* ——— nav ——— */
.nav-bar {
  margin-left: auto;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-bar a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-bar a:hover {
  opacity: 0.55;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 20px 40px;
    gap: 28px;
  }

  .brand img {
    width: min(40vw, 210px);
    min-width: 152px;
  }

  .nav-bar ul {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 18px 24px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .brand img {
    width: min(64vw, 220px);
    min-width: 0;
  }

  .nav-bar {
    margin-left: 0;
    width: 100%;
  }
  .nav-bar ul {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .nav-bar a {
    font-size: 13px;
    letter-spacing: 0.16em;
  }
}

/* ——— hero (full-width image with overlay) ——— */
.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    min-height: 62vh;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(30, 45, 74, 0.75) 0%,
      rgba(30, 45, 74, 0.25) 45%,
      rgba(30, 45, 74, 0) 75%
    ),
    linear-gradient(to right, rgba(30, 45, 74, 0.4) 0%, rgba(30, 45, 74, 0) 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px 90px;
  color: #fff;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 0 40px 60px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 0 24px 50px;
  }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffe9a8;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(30, 45, 74, 0.35);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #f5c96b;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(30, 45, 74, 0.4);
}

/* ——— section structure ——— */
section {
  padding: 120px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
}

.kicker {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
}

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-aside {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.45;
  color: var(--navy);
  padding-right: 16px;
}

.about-body p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy-soft);
  margin-bottom: 24px;
  max-width: 60ch;
}

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

/* ——— subhero (full-width image strip between sections) ——— */
.subhero {
  position: relative;
  min-height: 42vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 900px) {
  .subhero {
    min-height: 38vh;
  }
}
@media (max-width: 600px) {
  .subhero {
    min-height: 32vh;
  }
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 45, 74, 0.6) 0%,
    rgba(30, 45, 74, 0.25) 50%,
    rgba(30, 45, 74, 0.5) 100%
  );
  pointer-events: none;
}

.subhero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 64px;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  .subhero-content {
    padding: 50px 40px;
  }
}
@media (max-width: 600px) {
  .subhero-content {
    padding: 40px 24px;
  }
}

.subhero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffe9a8;
  margin-bottom: 22px;
}

.subhero-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  color: #fff;
  max-width: 32ch;
  margin: 0 auto;
  text-shadow: 0 1px 16px rgba(30, 45, 74, 0.4);
}

/* ——— work ——— */
.work {
  padding-top: 100px;
}

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

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.work-card {
  text-align: left;
}

.work-image {
  aspect-ratio: 4 / 5;
  background: var(--cream-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.4s ease;
}

.work-card:hover .work-image {
  background: var(--cream);
}

.work-image svg {
  width: 65%;
  height: 65%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover .work-image svg {
  transform: scale(1.05);
}

.work-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 12px;
}

.work-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}

.work-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy-soft);
  max-width: 36ch;
}

/* ——— contact ——— */
.contact {
  background: #fcfbf8;
  border-top: 1px solid var(--rule);
  padding: 88px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(24px, 3.3vw, 34px);
  line-height: 1.12;
  color: #2f3d58;
  letter-spacing: -0.01em;
  margin-top: 10px;
}

.contact-body p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy-soft);
  margin-bottom: 22px;
  max-width: 50ch;
}

.contact-email {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 21px);
  letter-spacing: 0.03em;
  color: var(--navy-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 45, 74, 0.26);
  padding-bottom: 3px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.contact-email:hover {
  color: var(--navy);
  border-bottom-color: rgba(30, 45, 74, 0.5);
}

@media (max-width: 600px) {
  .contact {
    padding: 72px 0 68px;
  }
}

/* ——— footer ——— */
footer {
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* ——— scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
