@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Pinyon+Script&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --black: #1C1C1C;
  --forest-green: #2A5C45;
  --sage-teal: #8FBFBE;
  --cream: #F4F1EC;
  --warm-linen: #E8DDD0;
  --dusty-rose: #C9A898;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ─── Typography ──────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage-teal);
  display: block;
  margin-bottom: 18px;
}

.body-sm {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ─── Navigation ──────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(244, 241, 236, 0.97);
  backdrop-filter: blur(8px);
  padding: 18px 64px;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Gilda Display', serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s;
}

.nav-logo .logo-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 26px;
  color: var(--sage-teal);
  margin-top: -4px;
  transition: color 0.4s;
}

nav.scrolled .nav-logo .logo-main {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-teal);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

nav.scrolled .nav-links a {
  color: var(--text-mid);
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--forest-green);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s, transform 0.3s;
}

nav.scrolled .nav-toggle span {
  background: var(--black);
}

/* ─── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 15px 44px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-white-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--forest-green);
}

.btn-green {
  background: var(--forest-green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--black);
}

.btn-outline-dark {
  border: 1px solid rgba(44, 44, 44, 0.35);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: kenBurns 12s ease forwards;
}

@keyframes kenBurns {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 28, 28, 0.18) 0%,
    rgba(28, 28, 28, 0.52) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 40px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 22px;
}

.hero-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(56px, 9vw, 110px);
  color: var(--sage-teal);
  display: block;
  line-height: 1;
  margin-bottom: -8px;
}

.hero-title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(36px, 5.5vw, 70px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  opacity: 0.85;
  margin-bottom: 52px;
  text-transform: uppercase;
}

/* ─── Page Hero (interior pages) ─────────────────────────── */

.page-hero {
  height: 58vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  padding-top: 120px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.65) 0%,
    rgba(28, 28, 28, 0.08) 55%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content .eyebrow {
  color: var(--sage-teal);
}

.page-hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero-content .hero-script-sub {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(32px, 4.5vw, 58px);
  color: var(--sage-teal);
  display: block;
  margin-top: -4px;
}

/* ─── Layout ──────────────────────────────────────────────── */

.section {
  padding: 108px 64px;
}

.section-md {
  padding: 80px 64px;
}

.section-sm {
  padding: 60px 64px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* Backgrounds */
.bg-cream  { background: var(--cream); }
.bg-linen  { background: var(--warm-linen); }
.bg-black  { background: var(--black); }
.bg-green  { background: var(--forest-green); }
.bg-white  { background: var(--white); }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

/* ─── Divider ─────────────────────────────────────────────── */

.divider {
  width: 52px;
  height: 1px;
  background: var(--sage-teal);
  margin: 36px 0;
}

.divider-center {
  margin: 36px auto;
}

/* ─── Image Blocks ────────────────────────────────────────── */

.img-overflow {
  overflow: hidden;
}

.img-overflow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-overflow:hover img {
  transform: scale(1.04);
}

/* ─── Portfolio Grid ──────────────────────────────────────── */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item .port-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(28,28,28,0.65) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .port-label {
  opacity: 1;
}

.port-label span {
  font-family: 'Gilda Display', serif;
  font-size: 16px;
  color: var(--white);
}

.port-label small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-teal);
  margin-bottom: 4px;
}

/* ─── Collection Cards ────────────────────────────────────── */

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.72) 0%,
    rgba(28, 28, 28, 0.1) 55%
  );
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 40px 36px;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(
    to top,
    rgba(42, 92, 69, 0.82) 0%,
    rgba(42, 92, 69, 0.15) 55%
  );
}

.collection-info {
  color: var(--white);
}

.collection-info .coll-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sage-teal);
  margin-bottom: 10px;
}

.collection-info h3 {
  font-family: 'Gilda Display', serif;
  font-size: 26px;
  margin-bottom: 4px;
}

.collection-info .coll-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 20px;
  color: var(--warm-linen);
}

/* ─── Pull Quote ──────────────────────────────────────────── */

.pull-quote {
  padding: 120px 64px;
  text-align: center;
}

.pull-quote .pq-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--sage-teal);
  display: block;
  margin-bottom: 20px;
}

.pull-quote blockquote {
  font-family: 'Gilda Display', serif;
  font-size: clamp(22px, 3.2vw, 40px);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.45;
}

.pull-quote cite {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 36px;
  font-style: normal;
}

/* ─── Service Items ───────────────────────────────────────── */

.service-list {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  transition: background 0.3s;
}

.service-item:hover {
  background: none;
}

.service-num {
  font-family: 'Gilda Display', serif;
  font-size: 56px;
  color: var(--warm-linen);
  line-height: 1;
}

.service-body h3 {
  font-family: 'Gilda Display', serif;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 14px;
}

.service-body p {
  font-size: 13px;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  padding: 5px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.service-cta {
  text-align: right;
  padding-top: 8px;
}

/* ─── Approach Grid ───────────────────────────────────────── */

.approach-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.approach-item:last-child {
  border-bottom: none;
}

.approach-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-teal);
  flex-shrink: 0;
  margin-top: 8px;
}

.approach-item h4 {
  font-family: 'Gilda Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ─── Contact Form ────────────────────────────────────────── */

.form-group {
  margin-bottom: 36px;
}

.form-group label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--forest-green);
}

.form-group textarea {
  height: 130px;
  resize: none;
}

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

/* ─── Footer ──────────────────────────────────────────────── */

footer {
  background: var(--black);
  padding: 88px 64px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.footer-brand .f-logo-main {
  font-family: 'Gilda Display', serif;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand .f-logo-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 32px;
  color: var(--sage-teal);
  display: block;
  line-height: 1.1;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  line-height: 1.8;
}

.footer-brand .f-location {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-teal);
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
}

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--sage-teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.12em;
}

/* ─── Scroll Animations ───────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── Utility ─────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-green  { color: var(--forest-green); }
.text-teal   { color: var(--sage-teal); }
.text-mid    { color: var(--text-mid); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .section, .section-md { padding: 88px 44px; }
  .section-sm { padding: 56px 44px; }
  nav, nav.scrolled { padding-left: 44px; padding-right: 44px; }
  .pull-quote { padding: 100px 44px; }
  footer { padding: 72px 44px 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.tall { grid-row: auto; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-2-narrow { grid-template-columns: 1fr; gap: 48px; }
  .service-item { grid-template-columns: 60px 1fr; }
  .service-cta { display: none; }
  .page-hero { padding: 48px 32px; }
}

@media (max-width: 680px) {
  .section, .section-md { padding: 72px 24px; }
  .section-sm { padding: 48px 24px; }
  nav { padding: 22px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.tall { height: 340px; }
  .pull-quote { padding: 80px 24px; }
  footer { padding: 60px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero { padding: 36px 24px; min-height: 360px; }
}
