:root {
	--bg-color: #eff0ea;
	--text-color: #e22700;
	--accent-color: #517a4e;
	--max-width: 100vw;
	--gap: 32px;
	--red: #e22700;
	--cream: #eff0ea;
	--yellow: #fcda43;
  --nav-height: 100px;

}

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

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	background: var(--bg-color);
	line-height: 1.6;
}

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

main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 80px 24px;
 
}

section {
	margin-bottom: 72px;
	/* display: flex; flex-wrap: wrap; gap: var(--gap); */
}

h1,
h2,
h3,
h4 {
	font-family: 'Fraunces', serif;
	margin-bottom: 16px;
}

h1 {
	font-size: 48px;
	line-height: 1.1;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 20px;
}

p {
	margin-bottom: 16px;
}

.muted {
	color: rgba(46, 46, 46, 0.7);
	font-size: 15px;
}

img {
	max-width: 100%;
	display: block;
	border-radius: 8px;
}

.hero {
	background: var(--bg-color);
	padding: 48px 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: center;
}

.hero h1 {
	font-size: 48px;
}

.hero .illustration {
	text-align: center;
	font-size: 72px;
	color: var(--accent-color);
}

.hero-text {
	display: flex
}

.services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
	margin-top: 24px;
}

.svc {
	padding: 24px;
	border-radius: 12px;
	border: 1px solid;
}

.svc h4 {
	margin-bottom: 8px;
}

.packages {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	margin-top: 24px;
}

.package {
	min-width: 280px;
	padding: 24px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.package strong {
	display: block;
	margin-top: 8px;
	color: var(--accent-color);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.gallery a {
	display: block;
	border-radius: 12px;
	overflow: hidden;
}

.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.gallery a:hover img {
	transform: scale(1.04);
}

.contact {
	display: flex
}

.contact-container {
	flex-basis: 60%
}

.contact-form {
	display: grid;
	gap: 16px;
}

input,
textarea {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	font-size: 14px;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

.btn {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	background: transparent;
	border: 1px solid black;
}

.btn.menu {
	margin-left: 20px
}

.btn.ghost {
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}

footer {
	text-align: center;
	color: rgba(46, 46, 46, 0.6);
	font-size: 14px;
	margin-top: 48px;
}

footer a {
	color: var(--accent-color);
	margin: 0 8px;
}


.project {
	display: flex;
	align-items: center;
flex-wrap: nowrap;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid;
  align-items: center
}

.inspiration,
.mockup {
	flex-basis: 25%
}

.sourcing {
	flex-basis: 50%
}

.source {
	font-size: smaller;
	color: rgba(46, 46, 46, 0.7);
	position: relative;
	top: -25px;
	text-decoration: underline
}

.arrow {
	width: 150px
}

.project-image img {
	height: 300px;
	width: auto;
}

.project-title {
	height: 50px
}

@media(max-width:900px) {

	.two-col,
	.hero-content {
		grid-template-columns: 1fr;
	}

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

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

	header {
		flex-direction: column;
		align-items: flex-start;
	}

	header nav a {
		margin-left: 0;
		margin-top: 8px;
	}

	.packages {
		overflow-x: auto;
	}

	.arrow {
		display: none
	}

	.btn.menu {
		margin-left: 0
  }

}

@media(max-width:600px) {

  .project {
    	flex-wrap: wrap;
  }

  .inspiration, .sourcing,
.mockup {
	flex-basis: 100%
}
}

/* -----  LOGO ------ */
.char {
      font-family: "Avenir Next", "Futura", "Gill Sans", Arial, sans-serif;
      font-size:36px;
      fill:#2b3b2f;
      font-weight:600;
      letter-spacing:1px;
    }

.bg {fill: --cream}

/* --- NAVBAR BASE --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--nav-height);/* define a fixed height for spacing */
  display: flex;
  align-items: center;
}

/* Container alignment */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

/* Ensure logo SVG scales properly */
.logo svg {
  max-height: 125px;
  width: auto;

}

/* --- NAV MENU --- */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #2E2E2E;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

.btn.menu {
  background: #C44E35;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

/* --- HAMBURGER --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001; /* stays above nav-menu */
  padding: 6px;
}

.bar {
  width: 24px;
  height: 2.5px;
  background: #2E2E2E;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- MOBILE NAV --- */
@media (max-width: 880px) {
  .menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height); /* matches navbar height */
    right: 0; left: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000; /* below hamburger */
  }

  .nav-menu.active {
    max-height: 420px;
    opacity: 1;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-menu li {
    text-align: center;
  }

  .btn.menu {
    width: 80%;
    margin: 0 auto;
  }
}

/* Hamburger animation */
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- MAIN SPACING FIX --- */

/* Optional — slight shadow for separation */
.navbar {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



/* ---- NAV 2 ----- 
.navbar {
    background: --cream;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
  }

  .nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
  }

  /* Nav menu (desktop) 
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    color: #2E2E2E;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
  }

  .btn.menu {
    background: #C44E35;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 600;
  }

  /* Hamburger button
  .menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2005; /* ensures it stays above menu 
    padding: 6px;
  }

  .bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #2E2E2E;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Mobile styles 
  @media (max-width: 880px) {
    .menu-toggle {
      display: flex;
    }

    .nav-menu {
      position: fixed;
      top: 56px; /* just below navbar 
      right: 0;
      left: 0;
      background: --cream;
      flex-direction: column;
      gap: 12px;
      padding: 16px 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2000; /* below hamburger
    }

    .nav-menu.active {
      max-height: 420px;
      opacity: 1;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu li {
      text-align: center;
    }

    .btn.menu {
      width: 80%;
      margin: 0 auto;
    }
  }

  /* Animated hamburger */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /* OLD HEADER


header {
	width: 100%;
	background: var(--bg-color);
	padding: 16px 32px;
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header .logo {
	font-family: 'Fraunces', serif;
	font-weight: 700;
	font-size: 24px;
}

header nav a {
	margin-left: 24px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}

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

*/