/* ============================================
   THE INNER WORKSHOP — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:       #F5F0E8;
  --teal:        #3A8A9A;
  --teal-dark:   #2C6E7A;
  --teal-light:  #5B8FA8;
  --sage:        #7A9E8A;
  --sage-light:  #9DB89A;
  --circle:      #B8D4C0;
  --text-dark:   #2E3A35;
  --text-mid:    #5A6B65;
  --text-light:  #8A9E98;
  --white:       #FFFFFF;
  --shadow:      rgba(58, 138, 154, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { color: var(--text-mid); margin-bottom: 1rem; }

a { color: var(--teal); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--teal-dark); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAVIGATION ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--circle);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 400;
}

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

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hero-photo-grid { grid-template-columns: 1fr !important; }
  .hero-rrr { flex-direction: column !important; text-align: center; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--circle);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184, 212, 192, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(91, 143, 168, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text { animation: fadeUp 0.9s ease both; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--circle);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.2rem; }

.hero-strapline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero p { font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-right: 1rem;
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  color: var(--teal);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--circle);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease both;
}

.hero-image img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(58, 138, 154, 0.15));
}

@media (max-width: 768px) {
  .hero-photo-grid { grid-template-columns: 1fr !important; }
  .hero-rrr { flex-direction: column !important; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-image { order: -1; }
  .hero-image img { width: 200px; }
  .hero p { margin: 0 auto 2rem; }
}

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.75rem;
}

.section-intro { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.section-intro h2 { margin-bottom: 1rem; }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--circle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 212, 192, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 0.5rem; }

/* ---- DIVIDER ---- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--sage-light));
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* ---- QUOTE / HIGHLIGHT ---- */
.highlight-band {
  background: linear-gradient(135deg, rgba(58, 138, 154, 0.06), rgba(184, 212, 192, 0.15));
  border-top: 1px solid var(--circle);
  border-bottom: 1px solid var(--circle);
  padding: 4rem 0;
  text-align: center;
}

.highlight-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--teal-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo span { color: var(--circle); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }

footer h4 {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.3s; }
footer ul li a:hover { color: var(--circle); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--circle); }

@media (max-width: 768px) {
  .hero-photo-grid { grid-template-columns: 1fr !important; }
  .hero-rrr { flex-direction: column !important; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--circle);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in { animation: fadeUp 0.7s ease both; }
