/* ===================================================================
   Visualution Design — replica of the Squarespace site
   Palette pulled from the brand logo (cyan/black) + the hero photo.
   =================================================================== */

:root {
  --brand-cyan: #74c7da;
  --brand-cyan-dark: #4fa8bd;
  --black: #111111;
  --ink: #1c1c1c;
  --white: #ffffff;
  --grey: #5b5b5b;
  --light-grey: #f5f6f7;

  --max-page-width: 1400px;
  --page-padding: 4vw;
  --header-logo-height: 80px;

  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Capitalize everything across the site... */
  text-transform: uppercase;
}

/* ...except the three service body paragraphs. */
.service-desc { text-transform: none; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

/* Montserrat, condensed a touch for the display headings.
   (Montserrat has no condensed cut, so we narrow it ~10% horizontally
   and tighten the tracking — keeps the exact letterforms, just tighter.) */
.hero-content h1,
.hero-content h2,
.services-title,
.service-name,
.footer-title,
.catalogue-title,
.cat-name {
  transform: scaleX(0.9);
  letter-spacing: -0.01em;
}

.hero-content h1,
.hero-content h2 { transform-origin: center; }

.services-title,
.service-name,
.footer-title,
.catalogue-title,
.cat-name { transform-origin: left center; }

/* ----------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 1.4vw var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  height: var(--header-logo-height);
  width: auto;
}

.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}

.header-nav-list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s ease;
}

.header-nav-list a:hover { color: var(--brand-cyan-dark); }

/* Burger (mobile) */
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.header-burger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px var(--page-padding) 24px;
}

.mobile-menu li { padding: 12px 0; }

.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ------------------------------ Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 8vw var(--page-padding);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-content h2 {
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  font-weight: 500;
  margin-top: 0.6em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-cta-text {
  margin-top: 1.6em !important;
  letter-spacing: 0.18em;
  font-weight: 700 !important;
}

.hero-contact {
  margin-top: 1em;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-contact a { transition: color 0.2s ease; }
.hero-contact a:hover { color: var(--brand-cyan); }

/* ---------------------------- Services --------------------------- */
.services {
  background: var(--white);
  padding: clamp(60px, 8vw, 120px) 0;
}

.services-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.services-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: clamp(36px, 5vw, 64px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}

.service-card { display: flex; flex-direction: column; }

.service-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--light-grey);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img { transform: scale(1.05); }

.service-name {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  margin: 1.1em 0 0.5em;
  color: var(--black);
}

.service-name a { transition: color 0.2s ease; }
.service-name a:hover { color: var(--brand-cyan-dark); }

.service-desc {
  margin: 0;
  color: var(--grey);
  font-size: 0.98rem;
}

/* ----------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(50px, 6vw, 90px) 0;
}

.footer-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.footer-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5em;
}

.footer-info {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
}

.footer-info a { transition: color 0.2s ease; }
.footer-info a:hover { color: var(--brand-cyan-dark); }

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

@media (max-width: 767px) {
  .header-nav { display: none; }
  .header-burger { display: flex; }

  :root { --header-logo-height: 56px; }

  .header-inner { padding: 4vw var(--page-padding); }

  .services-grid { grid-template-columns: 1fr; }

  .hero { min-height: 80vh; }
}
