/* ============================================================
   Tiny Suitcase — All styles
   A creative studio for hospitality brands
   ============================================================ */

/* ---------- 1. RESET & ROOT ---------- */
@font-face {
  font-family: "TG Girthy Ultra";
  src: url("fonts/TG-GirthyUltra.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "The Poet";
  src: url("fonts/ThePoet.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Colors (from design) — page background matches hero image tone */
  --color-bg: #e6e2dc;            /* warm neutral to match hero image */
  --color-bg-section: #ebe8e3;    /* slightly lighter for sections */
  --color-text: #320825;           /* dark purple */
  --color-text-muted: #5c5c5c;
  --color-accent: #a3402a;         /* orange */
  --color-hero-text: #FDF5E1;
  --color-hero-muted: rgba(255, 255, 255, 0.7);
  --color-footer-bg: #320825;
  --color-footer-text: #FDF5E1;
  --color-footer-muted: #999;

  /* Typography */
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Source Sans 3", system-ui, sans-serif;
  --font-girthy: "TG Girthy Ultra", var(--font-sans);
  --font-poet: "The Poet", var(--font-sans);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --max-width: 72rem;
  --transition: 0.3s ease;
  --reveal-duration: 0.55s;
  --reveal-ease: ease-out;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  word-spacing: -0.06em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

#main {
  background: #FDF3E1;
}

/* Contact page: light main overrides #main cream */
.page-contact #main.contact-main {
  background: #FDF5E1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  opacity: 0.85;
}

/* ---------- 2. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: #FDF3E1;
}

.site-header.scrolled .nav {
  color: var(--color-text);
}

.site-header.scrolled .nav a:hover {
  color: var(--color-accent);
}

.logo-link {
  display: block;
}

.logo-img {
  height: 2rem;
  width: auto;
  transition: filter var(--transition);
}

.site-header.scrolled .logo-img {
  filter: brightness(0);
}

/* About page: header dark (#320825) from the start, before scroll */
.page-about .site-header .nav {
  color: #320825;
}
.page-about .site-header .nav a:hover {
  color: var(--color-accent);
}
.page-about .site-header .logo-img {
  filter: brightness(0);
}

/* Contact page: light header over light main */
.page-contact .site-header {
  background: transparent;
}
.page-contact .site-header.scrolled {
  background: #FDF3E1;
}
.page-contact .site-header .nav {
  color: #000000;
}
.page-contact .site-header .nav a:hover {
  color: var(--color-accent);
}
.page-contact .site-header .logo-img {
  filter: brightness(0);
}

.nav {
  display: flex;
  gap: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-hero-text);
  letter-spacing: 0.10em;
}

.nav a:hover {
  color: var(--color-hero-muted);
}

/* ---------- 3. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-bottom: 32px;
  overflow: hidden;
  background: #a3402a;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  background: transparent;
}

.hero-bg-img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right top;
}

.hero-content {
  order: 1;
  position: absolute;
  bottom: 20px;
  left: 56px;
  width: clamp(300px, 50%, 700px);
  display: flex;
  flex-direction: column;
  color: var(--color-hero-text);
  background: #a3402a;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal var(--reveal-duration) var(--reveal-ease) 0.25s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  word-spacing: .12em;
  line-height: 0.9;
  margin: -150px 0 clamp(1.75rem, 4vw, 2.75rem);
}

.hero-title em {
  font-family: "EB Garamond", Garamond, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-girthy);
  font-size: clamp(48px, 5.5vw, 85px);
  font-weight: 400;
  letter-spacing: 0.05em;
  word-spacing: -0.16em;
  line-height: 0.82;
  margin: 0 0 0.25rem;
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  animation: heroSubtitleReveal 0.6s ease-out forwards;
}

.hero-subtitle-second {
  display: inline-block;
  margin-left: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: heroSubtitleReveal 0.6s ease-out 0.15s forwards;
}

@keyframes heroSubtitleReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  border-top: 1px solid rgba(253, 246, 237, 0.2);
  margin-top: 20px;
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  letter-spacing: 0.18em;
  color: var(--color-hero-muted);
  margin: 0;
  line-height: 1.45;
}

@keyframes hero-cta-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-hero-text);
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid rgba(253, 246, 237, 0.5);
  animation: none;
}

.hero-cta:hover {
  color: #a3402a;
  background-color: #FDF5E1;
}

/* ---------- HERO RESPONSIVE ---------- */

/* Tablet: 768px–1279px */
@media (min-width: 768px) and (max-width: 1279px) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    bottom: 32px;
    left: 32px;
    width: 60%;
  }

  .hero-subtitle {
    font-size: 60px;
  }

  .hero-bg {
    width: 40%;
  }

  .hero-bg-img {
    height: 90%;
    top: 0;
  }
}

/* Mobile: below 768px */
@media (max-width: 767px) {
  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: auto;
  }

  .hero-bg-img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
  }

  .hero-content {
    position: static;
    width: 100%;
    padding: 100px 24px 40px;
  }

  .hero-subtitle {
    font-size: 40px;
  }

  .hero-subtitle-second {
    margin-left: 0;
  }

}

/* ---------- 4. VALUE SECTION ---------- */
.value-section {
  position: relative;
  padding: 28vh var(--space-lg) 38vh;
  text-align: center;
  background: #FDF3E1 url('images/TS_Wallpaper_Texture_V3.png') center center repeat;
  background-size: 115%;
}

.value-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  margin-top: 12vh;
}

.value-content::before {
  content: "";
  position: absolute;
  inset: -2rem -3rem;
  z-index: -1;
  filter: blur(12px);
  background:radial-gradient(circle,
   rgba(253, 243, 225, 0.95) 0%, 
  rgba(253, 243, 225, 0.88) 48%,
   rgba(253, 243, 225, 0.65) 58%,
    rgba(253, 243, 225, 0.40) 78%,
     rgba(253, 243, 225, 0.18) 88%, 
     rgba(253, 243, 225, 0.00) 98%);
  opacity: 0;
  transition: opacity var(--reveal-duration) var(--reveal-ease);
  pointer-events: none;
}

.value-section.in-view .value-content::before {
  opacity: 1;
}

.value-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text);
  margin: 0 0 var(--space-lg);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.value-section.in-view .value-headline {
  opacity: 1;
  transform: translateY(0);
}

.value-headline .value-headline-line {
  display: block;
  margin-bottom: 0.5em;
}

.value-headline .value-headline-mid {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}

.value-headline .value-headline-highlight {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 500;
  word-spacing: 0.08em;
}

.value-headline em {
  font-family: "EB Garamond", Garamond, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.18em;
  color: #a3402a;
  letter-spacing: -0.02em;
}

.about-text-section {
  padding: var(--space-3xl) var(--space-lg) var(--space-md) var(--space-lg);
  background: #FDF3E1;
}

.about-text-wrap {
  max-width: 38rem;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-girthy);
  font-size: 32px;
  letter-spacing: 0.08em;
  margin: 0 0 var(--space-lg);
  color: #a3402a;
}

.about-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 var(--space-md);
  color: var(--color-footer-bg);
}

.about-text-highlight {
  font-weight: 400;
  color: #2D1B2E;
}

.about-image-section {
  padding: 0 var(--space-lg) var(--space-3xl);
  background: #FDF3E1 url('images/TS_Wallpaper_Texture_V3.png') center center;
  background-size: 110% auto;
}

.about-image-wrap {
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.about-image-quote {
  position: absolute;
  left: 8%;
  bottom: 10%;
  max-width: 70%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  color: #FDF5E1;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.value-deco {
  max-width: 4.16rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: 0.15s;
}

.value-section.in-view .value-deco {
  opacity: 1;
  transform: translateY(0);
}

.value-deco img {
  width: 100%;
  height: auto;
}

/* ---------- 5. SERVICES SECTION ---------- */
.services-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: var(--space-3xl) var(--space-lg);
  padding-top: 12rem;
  background: #f08664;
  color: #4A1A0F;
  text-align: center;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("images/TS_Texture_Swatch.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.45;
  pointer-events: none;
}

.services-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.value-deco img {
  width: 100%;
  height: auto;
}

.services-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-lg);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.services-section.in-view .section-label {
  opacity: 0.6;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.services-section .section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  font-weight: 500;
  color: #4A1A0F;
}

.services-heading {
  font-family: var(--font-girthy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.services-section.in-view .services-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

/* Services list — static title + copy */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  width: 100%;
  max-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.services-section.in-view .services-list {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.service-item {
  padding: var(--space-sm) 0 var(--space-xl) 0;
  width: 100%;
  max-width: 100%;
}

.service-divider {
  display: block;
  width: 100%;
  height: 12px;
  margin: 0;
}

.service-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-girthy);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
}

.service-title:hover {
  color: var(--color-accent);
}

.services-section .service-title {
  color: #4A1A0F;
}

.services-section .service-title:hover {
  color: #351208;
}

.service-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  font-style: normal;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.services-section .service-desc {
  color: #4A1A0F;
}

.cta-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.services-section.in-view .cta-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.cta-link:hover {
  color: var(--color-text);
}

.services-section .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #320825;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid #320825;
}

.services-section .cta-link:hover {
  color: #a3402a;
  background-color: #FDF5E1;
  border-color: #FDF5E1;
}

/* ---------- 6. QUOTE SECTION ---------- */
.quote-section {
  background: #FDF3E1 url('images/TS_Wallpaper_Texture_V3.png') center center;
  background-size: 110% auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.quote-bg-img {
  width: 51%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.quote {
  position: relative;
  z-index: 2; /* sits above overlay */
  font-family: 'Source Sans 3', sans-serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: #2D1B2E;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
  padding: 1.5rem 2rem; /* breathing room, no box */
}

.quote::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* true centering */
  width: 140%;
  height: 140%;
  /* irregular radius for organic, distorted edge */
  border-radius: 48% 52% 51% 49% / 53% 47% 50% 46%;
  z-index: -1;
  pointer-events: none;
  filter: blur(12px); /* soft, uneven edge */
  background: radial-gradient(
    circle,
    rgba(253, 243, 225, 0.95) 0%,
    rgba(253, 243, 225, 0.88) 20%,
    rgba(253, 243, 225, 0.65) 40%,
    rgba(253, 243, 225, 0.40) 60%,
    rgba(253, 243, 225, 0.18) 78%,
    rgba(253, 243, 225, 0.00) 95%
  );
}

.quote .quote-mark {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1;
}

/* ---------- 7. FOUNDERS SECTION ---------- */
.founders-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg) calc(var(--space-3xl) * 1.35) var(--space-lg);
  background: #FDF3E1;
}

.founders-section .founders-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 auto var(--space-lg);
  max-width: 38rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.founders-section .founders-eyebrow::after {
  content: "";
  flex: 1;
  margin-left: var(--space-xs);
  border-top: 1px solid rgba(50, 8, 37, 0.2);
}

.founders-section.in-view .founders-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.founders-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-2xl);
  align-items: start;
  justify-content: center;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 20rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.founders-section.in-view .founder-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.founders-section.in-view .founder-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.founder-photo {
  aspect-ratio: 1138 / 1513;
  overflow: hidden;
  border-radius: 0;
  max-width: 85%;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-role {
  font-family: var(--font-girthy);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
  line-height: 1.2;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin: 0 0 var(--space-xs);
}

.founder-bio {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.founder-bio em {
  font-style: italic;
  color: var(--color-text-muted);
}

/* ---------- 8. ILLUSTRATION SECTION ---------- */
.illustration-section {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: #FDF3E1;
}

.illustration-wrap {
  max-width: 22rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.illustration-section.in-view .illustration-wrap {
  opacity: 1;
  transform: translateY(0);
}

.illustration-wrap img {
  width: 100%;
  height: auto;
}

/* ---------- 9. FOOTER ---------- */
.footer {
  background: #a3402a;
  color: var(--color-footer-text);
  padding: var(--space-md) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
}

.footer.in-view .footer-top {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  width: auto;
  height: 2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: 0.15s;
}

.footer.in-view .footer-logo {
  opacity: 1;
  transform: translateY(0);
}

.footer-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-footer-text);
}

.footer-strip-link {
  color: var(--color-footer-text);
}

.footer-strip-link:hover {
  color: var(--color-footer-muted);
}

.footer-copyright {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-strip-logo {
  display: inline-block;
  line-height: 0;
}

.footer-strip-logo img {
  height: 1.25rem;
  width: auto;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: flex-start;
}

.footer-key-icon {
  display: block;
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.footer-key-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--color-footer-text);
}

.footer-email-row {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-email {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-footer-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-email-status {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-footer-muted);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-footer-text);
}

.footer-link:hover {
  color: var(--color-footer-muted);
}

/* ---------- CONTACT PAGE (frmwrk-style) ---------- */
.contact-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--space-3xl) + 32px) var(--space-lg) var(--space-3xl) var(--space-lg);
  background: var(--color-footer-bg);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  text-align: left;
}

.contact-section-left {
  min-width: 0;
}

.contact-section-right {
  min-width: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  max-height: 85vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-headline {
  font-family: var(--font-girthy);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #a3402a;
  margin: 0 0 var(--space-2xl);
}

.contact-headline em {
  font-style: italic;
  font-weight: 400;
}

.contact-headline-break {
  font-weight: 700;
}

/* Row 1: About  Services  Contact (like frmwrk) */
.contact-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-links a {
  color: var(--color-hero-text);
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--color-hero-muted);
}

/* Row 2: Instagram  LinkedIn  Email */
.contact-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-xl);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-social a {
  color: var(--color-hero-text);
  text-decoration: none;
}

.contact-social a:hover {
  color: var(--color-hero-muted);
}

/* Contact form */
.contact-form {
  margin-top: var(--space-2xl);
  padding: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form-field label {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #5c5c5c;
}

.contact-form-field input[type="text"],
.contact-form-field input[type="email"],
.contact-form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(50, 8, 37, 0.12);
  padding: 0.7rem 1rem;
  font: inherit;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    transform 120ms ease-out;
}

.contact-form-field textarea {
  border-radius: 1rem;
  min-height: 7rem;
  resize: vertical;
}

.contact-form-field input[type="text"]:focus,
.contact-form-field input[type="email"]:focus,
.contact-form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(163, 64, 42, 0.35), 0 14px 30px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  transform: translateY(-1px);
}

.contact-form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-form-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  accent-color: var(--color-accent);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-sm);
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: #000000;
  color: #fdf5e1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  transition:
    transform 140ms ease-out,
    box-shadow 140ms ease-out,
    background-color var(--transition);
}

.contact-submit:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(163, 64, 42, 0.4);
}

.contact-submit:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
  .contact-form {
    padding: var(--space-lg);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact page: minimal footer like frmwrk */
.contact-footer {
  background: #FDF3E1;
  padding: var(--space-md) var(--space-lg);
}

.contact-footer-strip {
  border-top: 1px solid rgba(50, 8, 37, 0.1);
  margin-top: 0;
  padding-top: var(--space-md);
  justify-content: center;
}

.contact-footer .footer-strip-link,
.contact-footer .footer-strip-link:visited {
  color: #000000;
}

.contact-footer .footer-strip-link:hover {
  color: var(--color-accent);
}

.contact-footer .footer-copyright {
  color: #000000;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Mobile-only forced line breaks for the VALUE section */
.mobile-break {
  display: none;
}

.desktop-break {
  display: inline;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .desktop-break {
    display: none;
  }
}

/* ---------- 10. RESPONSIVE ---------- */
@media (max-width: 900px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }

  .logo-img {
    height: 1.6rem;
  }

  .nav {
    gap: var(--space-md);
    font-size: 0.85rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-bg {
    order: 1;
  }

  .hero-bg,
  .hero-bg-img {
    min-height: 50vh;
  }

  .hero-content {
    order: 2;
    padding: var(--space-2xl) var(--space-md);
  }

  .value-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .value-content {
    margin: 0 auto;
  }

  /* Remove large side gutters on narrow viewports */
  .services-content {
    margin: 0;
  }

  /* Let quote and founders breathe without huge vertical padding */
  .quote-section {
    min-height: auto;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .founders-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .value-section,
  .services-section,
  .quote-section,
  .founders-section {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .contact-main {
    padding: var(--space-2xl) var(--space-md);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-hero-img {
    min-height: 40vh;
    max-height: 50vh;
  }

  .contact-headline {
    font-size: clamp(1.75rem, 10vw, 3rem);
    padding-top: 50px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
