:root {
  --olive-dark:   #3b3b24;
  --olive-deep:   #555533;
  --olive-mid:    #6b6b4a;
  --olive-accent: #9e9c6a;
  --sage:         #b8b89a;
  --cream:        #e3dcd2;
  --cream-warm:   #d8d0c4;
  --charcoal:     #2e2e2e;
  --ink:          #3a3a3a;
  --line:         rgba(79,79,54,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: .01em;
}

/* ===== Header ===== */
.site-header {
  background-color: var(--olive-dark);
  border-bottom: 1px solid rgba(184,184,154,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Logo placeholder */
.logo-slot {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 180px;
}

.logo-img-box {
  width: 72px;
  height: 72px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-img-box img {
  width: 120px;      /* or any size you want */
  height: auto;      /* keeps aspect ratio */
  max-width: 100%;   /* prevents overflow */
  border-radius: 3px;
}

.light{
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 3px;
}

.site-title a {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: .03em;
  color: var(--cream);
  text-decoration: none;
}

.site-title small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--olive-accent);
  margin-top: 3px;
}

/* Nav */
nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
}

nav.main-nav li { display: flex; align-items: center; }

nav.main-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color .25s ease;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--olive-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] { color: var(--olive-accent); }

nav.main-nav a:hover::after,
nav.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown */
.has-submenu { position: relative; }

.has-submenu > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 210px;
  background: var(--olive-deep);
  border: 1px solid rgba(184,184,154,0.12);
  border-top: 2px solid var(--olive-accent);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 50;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 22px;
  font-size: .78rem;
  letter-spacing: .1em;
}

.submenu li a::after { display: none; }
.submenu li a:hover {
  background: rgba(138,138,92,0.12);
  color: var(--olive-accent);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 800px;
  background-image: url("IMG_6819.JPG");
  background-position: center center; /* centers the image */
  background-size: cover;             /* fills the container */
}

.hero p {
  position: absolute;
  top: 50px;          /* distance from top edge */
  left: 50%;
  transform: translateX(-50%); /* keeps it centered */
  max-width: 48ch;
  color: var(--olive-mid);
  font-size: 1.05rem;
  font-weight: 300;
}



/* ===== Main ===== */
main {
  max-width: 880px;
  margin: 0 auto;
  padding: 90px 32px 100px;
}

main.wide { max-width: 1100px; }

.section-label {
  font-size: 1rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--olive-accent);
  margin-bottom: 18px;
  display: block;
}

main h2,
main h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--olive-deep);
  margin-bottom: 22px;
  margin-top: 44px;
  line-height: 1.25;
}

main h3:first-child,
main h2:first-child { margin-top: 0; }

main p {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.04rem;
}

main p strong { color: var(--olive-mid); font-weight: 500; }

main a {
  color: var(--olive-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(107,107,74,0.35);
  transition: border-color .2s ease, color .2s ease;
}

main a:hover {
  color: var(--olive-dark);
  border-bottom-color: var(--olive-dark);
}

/* Kanta-style bullet list */
.lab-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.lab-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
}

.lab-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--olive-accent);
  border-radius: 50%;
}

.lab-list li strong { color: var(--olive-mid); font-weight: 500; }

/* Info card */
.info-card {
  margin-top: 12px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive-accent);
  border-radius: 2px;
  box-shadow: 0 18px 40px -28px rgba(79,79,54,0.3);
}

.info-card .section-label { margin-bottom: 14px; }
.info-card p { margin-bottom: 10px; font-size: 1rem; color: var(--ink); }
.info-card p:last-child { margin-bottom: 0; }

.info-card .label {
  display: inline-block;
  min-width: 110px;
  color: var(--olive-mid);
  letter-spacing: .06em;
  font-size: .83rem;
  text-transform: uppercase;
}

/* Hero CTA button */
.hero-cta {
  position: relative;
  display: inline-block;
  margin-top: 620px;       /* pushes it lower */
  padding: 10px 24px;     /* smaller button size */
  font-size: .7rem;       /* smaller text */
  background: #b45a28;
  color: var(--cream-warm);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 1px;
  transition: background .2s ease, color .2s ease;
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--olive-dark);
}

/* About strip */
.about-strip {
  margin-top: 60px;
  max-width: 56ch;
}

/* Service cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px 26px;
  text-decoration: none;
  border-bottom: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 10px 28px -22px rgba(79,79,54,0.22);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -26px rgba(79,79,54,0.32);
  border-color: var(--olive-accent);
}

.service-card .card-mark {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--olive-accent);
  margin-bottom: 20px;
}

.service-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 0;
}

.img-placeholder {
  background: var(--cream-warm);
  display: block;       
  overflow: hidden;      
}

.img-placeholder img {
  max-width: 100%;       
  height: auto;          
  display: block;        
}


/* Two col layout for about strip */
.one-col {
  display: grid;
  grid-template-columns: 1fr ;
  align-items: center;
  margin-top: 60px;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--olive-dark);
  color: rgba(227,220,210,0.55);
  text-align: center;
  padding: 40px 32px;
  font-size: .8rem;
  letter-spacing: .06em;
}

.site-footer .mark { color: var(--olive-accent); }

.hero p {
  display: none; 
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}
.social-icon {
  width: 28px;   /* pick a size that feels balanced */
  height: auto;  /* keeps aspect ratio */
  vertical-align: middle;
  margin-right: 8px; /* spacing before the text */
}

@media (max-width: 760px) {
  .header-inner { flex-direction: column; gap: 16px; padding: 18px 20px; align-items: flex-start; }
  nav.main-nav ul { flex-wrap: wrap; gap: 16px 22px; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; display: none;
    border-top: 2px solid var(--olive-accent); margin-top: 10px; min-width: 0; }
  .has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }
  .hero { padding: 90px 24px 80px; }
  main { padding: 60px 22px 70px; }
  .info-card { padding: 28px 22px; }
  .hero::after { height: 32px; }
  
  .hero p {
    display: block; 
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  nav.main-nav a::after { transition: none; }
}




/* Lookbook */

/* ── Page shell ── */
.lookbook-body {
  background: #1a1a14;
  color: var(--cream);
  min-height: 100vh;
}

.lookbook-body .site-footer {
  background: #111109;
  border-top: 1px solid rgba(184,184,154,0.08);
  margin-top: 0;
}

.lookbook-body .site-header {
  background: #1a1a14;
  border-bottom: 1px solid rgba(184,184,154,0.08);
}

/* ── Cover ── */
.lb-cover {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1a1a14;
  /* swap with: background-image: url("your-cover.jpg"); background-size: cover; background-position: center; */
}

.lb-cover-img {
  position: absolute;
  inset: 0;
  background: #2a2a1c;  /* placeholder — remove when image is added */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(184,184,154,0.2);
}

.lb-cover-inner {
  position: relative;
  z-index: 2;
}

.lb-issue {
  font-size: .62rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--olive-accent);
  margin-bottom: 20px;
}

.lb-cover-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -.01em;
}

.lb-cover-title em {
  font-style: italic;
  color: var(--olive-accent);
}

.lb-cover-sub {
  margin-top: 28px;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(227,220,210,0.45);
}

.lb-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(227,220,210,0.3);
  z-index: 2;
}

/* ── Chapter heading ── */
.lb-chapter {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 80px 48px 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.lb-chapter-num {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(158,156,106,0.2);
  line-height: 1;
  flex-shrink: 0;
}

.lb-chapter-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 6px;
}

.lb-chapter-text p {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive-accent);
}

/* ── Grid layouts ── */

.lb-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: grid;
  gap: 6px;
}

/* Layout A: big left portrait + two landscape right */
.lb-grid.layout-a {
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  
}

.lb-grid.layout-a .lb-img:first-child {
  grid-row: 1 / 3;
}

/* Layout B: full-width single image */
.lb-grid.layout-b {
  grid-template-columns: 1fr;
}

/* Layout C: three equal columns */
.lb-grid.layout-c {
  grid-template-columns: repeat(3, 1fr);
}

/* Layout D: two portraits side by side */
.lb-grid.layout-d {
  grid-template-columns: 1fr 1fr;
}

/* Layout E: small + big landscape */
.lb-grid.layout-e {
  grid-template-columns: .7fr 1.3fr;
}

/* ── Image cell ── */
.lb-img {
  position: relative;
  overflow: hidden;
  background: #2a2a1c;
}

/* portrait and landscape height presets */
.lb-img.portrait  { aspect-ratio: 3 / 4; }
.lb-img.landscape { aspect-ratio: 16 / 9; }
.lb-img.square    { aspect-ratio: 1 / 1; }
.lb-img.tall      { aspect-ratio: 2 / 3; }

/* override aspect-ratio for cells that span rows — let grid control height */
.lb-grid.layout-a .lb-img:first-child {
  aspect-ratio: unset;
  min-height: 400px;
}

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

.lb-img:hover img { transform: scale(1.03); }

/* placeholder shown before images are added */
.lb-img .slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(184,184,154,0.18);
  border: 1px solid rgba(184,184,154,0.08);
}

/* optional caption overlay */
.lb-img .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(26,26,20,0.7));
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(227,220,210,0.6);
  opacity: 0;
  transition: opacity .3s ease;
}

.lb-img:hover .caption { opacity: 1; }

/* ── Pull quote ── */
.lb-quote {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 48px;
  text-align: center;
}

.lb-quote blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--cream);
}

.lb-quote cite {
  display: block;
  margin-top: 24px;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--olive-accent);
  font-style: normal;
}

/* ── End page ── */
.lb-end {
  text-align: center;
  padding: 100px 32px;
  border-top: 1px solid rgba(184,184,154,0.1);
  margin-top: 60px;
}

.lb-end p {
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(227,220,210,0.3);
  margin-bottom: 20px;
}

.lb-end a {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(158,156,106,0.4);
  color: var(--olive-accent);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.lb-end a:hover {
  background: var(--olive-accent);
  color: #1a1a14;
}

/* ── Mobile ── */
@media (max-width: 760px) {
  .lb-grid.layout-a,
  .lb-grid.layout-c,
  .lb-grid.layout-e { grid-template-columns: 1fr; }

  .lb-grid.layout-a .lb-img:first-child {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .lb-chapter { padding: 60px 24px 24px; }
  .lb-chapter-num { font-size: 3rem; }
  .lb-quote { padding: 0 24px; margin: 50px auto; }
}

/* ===== Contact page — location & socials ===== */
.map-frame {
  width:100%;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--olive-accent);
  background: var(--olive-dark);
}

.map-frame iframe {
  width: 100%;
  min-width: 600px;        /* remove the 400px floor */
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(.95);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--olive-mid);
  mix-blend-mode: color;
  opacity: .55;
  pointer-events: none;
}




.socials-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: var(--olive-mid);
  text-decoration: none;
  border-bottom: none;
  font-size: .95rem;
  transition: color .2s ease;
}

.social-link:hover {
  color: var(--olive-dark);
}
/* Feedback form */
#feedbackForm {
  max-width: 600px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#feedbackForm input,
#feedbackForm textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s ease;
}

#feedbackForm input::placeholder,
#feedbackForm textarea::placeholder {
  color: var(--olive-mid);
  opacity: .6;
}

#feedbackForm input:focus,
#feedbackForm textarea:focus {
  outline: none;
  border-color: var(--olive-accent);
}

#feedbackForm textarea {
  resize: vertical;
  min-height: 140px;
}

#feedbackForm button {
  align-self: flex-start;
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--olive-accent);
  background: var(--cream);
  color: #3b3b24;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  
}

#feedbackForm button:hover {
  color: var(--cream);
  background-color: #555533;
}



/* trying to add the fade in for lookbook */
.lb-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.lb-img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delay for grid rows */
.lb-grid .lb-img:nth-child(2) { transition-delay: .1s; }
.lb-grid .lb-img:nth-child(3) { transition-delay: .2s; }