@charset "UTF-8";
@font-face{
	font-family: NEUE_MONTREAL_MEDIUM;
	src: url("NeueMontreal-Medium.otf");
	
}

@font-face{
	font-family: NEUE_MONTREAL_REGULAR;
	src: url("NeueMontreal-Regular.otf");
	
}

@font-face {
	font-family: "Times Now";
	src: url("Times Now SemiLight.otf") format("opentype");
	/* font-weight: 300; */
	font-style: normal;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Times Now";
	src: url("Times Now SemiBold.otf") format("opentype");
	/* font-weight: 600; */
	font-style: normal;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Times Now";
	src: url("Times Now SemiLight Italic.otf") format("opentype");
	/* font-weight: 300; */
	font-style: italic;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Times Now";
	src: url("Times Now SemiBold Italic.otf") format("opentype");
	/* font-weight: 600; */
	font-style: italic;
	font-display: swap;
  }

/* ==========
   Base setup
   ========== */

   :root {
        --colour-bg: #faf7f2;
        --colour-surface: #ffffff;
        --colour-text: #111111;
        --colour-muted: #666666;
        --colour-accent: #85AF2D;
        --colour-accent-soft: #e3f0e8;

        --max-width: 72rem; /* ~1150px */
        --space-xs: 0.5rem;
        --space-sm: 0.75rem;
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 5.0rem;

        --radius-sm: 999px;
        --radius-md: 12px;

        --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);

        --gc-form-border: #d5d5d5;
        --gc-form-border-focus: #85AF2D;
        --gc-form-bg: #f9f9f9;
        --gc-form-bg-disabled: #f3f3f3;
        --gc-form-error: #b12929;
        --gc-form-text: #222222;
        --gc-form-placeholder: #999999;
  }


  
  
  html, body {
	
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: TIMES_NOW_SEMI_LIGHT;	
	font-size: 18px;
	background: var(--colour-bg);
	color: var(--colour-text);
	-webkit-font-smoothing: antialiased;

  }

  
  /* ==========
	 Layout
	 ========== */
  
  .page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;

  }

  .site-main {
	flex: 1;
  }
  
  .container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--space-md);
	box-sizing: border-box;
  }

  
  @media (max-width: 480px) {
	.container {
	  padding: 0 0.6rem;
	}
  }
  
  /* ==========
	 Header / nav
	 ========== */
  
  .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 15px;
	z-index: 10;
	padding-top: var(--space-md);
	
  }

  .site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 95vw;
	gap: var(--space-md);
  }



  .image-outer {
	display: flex;
	justify-content: center;
	align-items: center; /* only matters if you give the container height */
	margin: 0 auto;
	max-width: 80%;
	padding-bottom: var(--space-lg);

  }
  
  .image-outer img {
	max-width: 100%;
	height: auto;
  }

  .title-before-action {
	margin-bottom: var(--space-lg);
  }


.site-footer {
	font-family: NEUE_MONTREAL_MEDIUM;
	
	width: 100vw;
	min-height: 33vh;
	color: #fff;
	margin: 0rem 0rem;
	padding: 25px 0px;

	z-index: 10;
	font-size: 0.9rem;

  }

  .container-footer {
	max-width: var(--max-width);
	margin: 0px auto;
	width: 90vw;

  }

  
  .site-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	text-decoration: none;
  }
  
  .site-logo__mark {
	width: clamp(1.5rem, 1.86vw + 1rem, 2.23rem);
	
	
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	
  }
  
  .site-logo__text {
	font-family: NEUE_MONTREAL_MEDIUM;	
	font-size: 1.5rem;
	display: contents;
  }

  @media (max-width: 650px){
	.site-logo__text {
		display: none;
	}

  }
  
  .site-nav {
	display: flex;
	gap: 3.0rem;
	font-family: NEUE_MONTREAL_MEDIUM;	
	font-size: 1.5rem;
  }
  
  .site-nav a {
	text-decoration: none;
	color: #ffffff;
	opacity: 0.8;
  }
  
  .site-nav a:hover {
	opacity: 1;
	text-decoration: none;

  }
  
  /* ==========
	 Hero
	 ========== */

	.hero {
		display: flex;
		align-items: flex-end;
		position: relative;
		color: #ffffff;
		padding-bottom: var(--space-md);
		overflow: hidden;
		z-index: 0; /* create stacking context */
	}

	.hero__inner {
		position: relative;
		z-index: 2; /* content above overlays */
		width: 100%;
        height: 100%;
		max-width: 72rem;
		margin: var(--space-lg) auto;
		padding: var(--space-lg) var(--space-md);

	}

	
	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background-size: cover;		
		background-repeat: no-repeat;
		z-index: 0; /* background layer */
	}
	  
	.hero::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1; /* darkening overlay */
	}
  
  
  
  
  .hero__content {
	max-width: 40rem;
  }
  
  .hero__title {
	font-size: clamp(2.4rem, 3vw + 1.6rem, 3.6rem);
	line-height: 1.05;
	margin-bottom: var(--space-sm);
  }
  
  .hero__tagline {
      font-family: NEUE_MONTREAL_MEDIUM, serif;
	font-size: clamp(1.2rem, 1.56vw + 0.7rem, 1.93rem);

	max-width: 30rem;

	margin-bottom: var(--space-md);
  }
  
  .hero__subhead {
	font-size: 1.1rem;
	max-width: 25rem;
	margin-bottom: var(--space-lg);
  }
  
  /* CTAs kept understated */
  .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
  }
  
  .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.6rem;
	border-radius: var(--radius-sm);
	border: none;
	cursor: pointer;
	font-family: NEUE_MONTREAL_MEDIUM;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.08s ease, box-shadow 0.08s ease,
	  background 0.15s ease, color 0.15s ease;
  }
  
  .btn--primary {
	background: linear-gradient(135deg, #85AF2D,  #106D2C);
	color: #ffffff;
	box-shadow: var(--shadow-soft);
	
	letter-spacing: 0.25px;

  }

  a:hover.btn--primary, 
  a:hover.btn--secondary {
	text-decoration: none;
  }  

  
  .btn--secondary {
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  }
  
  /* ==========
	 Orientation block (the next ~40% of initial viewport)
	 ========== */
  
  .section {
	padding: var(--space-xl) 0;
  }
  
  .section--orientation {
	background: var(--colour-bg);
  }
  
  .section__label {
	font-family: NEUE_MONTREAL_REGULAR;
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--colour-muted);
	margin-bottom: var(--space-sm);
  }
  
  .section__heading {
	font-size: 1.5rem;
	line-height: 1.3;
	margin-bottom: var(--space-md);
	max-width: 42rem;
  }
  
  .section__body {
	font-size: 1.02rem;
	line-height: 1.6;
	max-width: 42rem;
  }
  
  .section__body + .key-list {
	margin-top: var(--space-lg);
  }
  
  .key-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--space-sm);
  }
  
  .key-list li {
	font-size: 0.98rem;
  }
  
  .key-list__term {
	font-weight: 600;
  }
  
  /* optional subtle divider / scroll cue */
  .section__cue {
	margin-top: var(--space-lg);
	font-family: NEUE_MONTREAL_REGULAR;
	font-size: 0.85rem;
	color: var(--colour-muted);
	max-width: 42rem;
  }
  
  /* ==========
	 Global typography helpers
	 ========== */
  
  p {
	margin: 0 0 1rem 0;
  }

  ul {
	margin-top: 0px;
  }
  
  .lead {
	font-size: 1.06rem;
	line-height: 1.7;
  }

  .with-next {
	margin-bottom: 0px;
	padding-bottom: 0px;
  }

  .with-space-md {
	margin-bottom: var(--space-md);
  }


  .with-space-lg {
	margin-bottom: var(--space-lg);
  }

  i, em {
	font-family: TIMES_NOW_SEMI_LIGHT_ITALIC;
	
  }

  b {
	font-family: TIMES_NOW_SEMI_BOLD;
	
  }


  a {
	color: var(--colour-accent);
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease;
  }
  
  /* Hover + focus */
  
  a:focus {
	color: var(--colour-accent);
	/* background-color: var(--colour-accent-soft); */
  }
  
  /* Active (mouse down) */
  a:active {
	color: var(--colour-accent);
	/* background-color: rgba(133, 175, 45, 0.0); slightly stronger */
  }
  
  /* Optional: underline only on hover (cleaner reading) */
  a:hover {
	text-decoration: underline;
  }  
  
  /* headings use Neue Montreal */
  h1, h2, h3, h4, h5, h6 {
	font-family: NEUE_MONTREAL_MEDIUM;
	letter-spacing: 0.00em;
	margin: 0;
  }

  hr {
	border: none;
	border-top: 1px solid var(--colour-text-muted, #444);
	margin: 15px 0px;
	opacity: 0.5;
  }  

  
  /* ==========
	 Responsiveness
	 ========== */
  
  @media (max-width: 900px) {
	.site-header__inner {
	  align-items: flex-start;
	}
  
	.site-nav {
	  gap: 1.25rem;
	  font-size: 0.9rem;
	}
  
	.hero__content {
	  max-width: 100%;
	}
  
	.hero__title {
	  font-size: clamp(2.1rem, 4vw + 1.4rem, 3rem);
	}
  
	.hero__subhead {
	  max-width: 28rem;
	}
  }
  
  @media (max-width: 640px) {
	.site-header__inner {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: var(--space-xs);
	}
  
	.site-nav {
	  gap: 1rem;
	}
  
	.hero__subhead {
	  margin-bottom: var(--space-md);
	}
  
	.hero__actions {
	  flex-direction: row;
	  flex-wrap: wrap;
	}
  
	.section {
	  padding: var(--space-lg) 0;
	}
  }

  .gc-quote {
	margin: var(--space-md) 0;
	padding: var(--space-md) var(--space-lg);
	font-family: NEUE_MONTREAL_MEDIUM;
	
	border-left: 4px solid var(--colour-accent);
	/* background: var(--colour-accent-soft);       */ 
	
	color: var(--colour-accent, #333);
	font-size: 1.5rem;
	line-height: 1.2;
  
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
  

	
  }
  
  .gc-quote p {
	margin: 0 0 var(--space-sm) 0;
  }
  
  .gc-quote cite {
	display: block;
	font-style: normal;
	font-size: 0.9rem;
	opacity: 0.7;
	margin-top: var(--space-xs);
  }

  .hero-ft {
	min-height: 40vh;
  }


/* Form wrapper */
.gc-form {
    max-width: 42rem;              /* align with your text column */
    margin: 0 0;
}

/* Field groups */
.gc-form__group {
    margin-bottom: var(--space-md, 1.25rem);
}

/* Labels */
.gc-form__label {
    font-family: NEUE_MONTREAL_MEDIUM, serif;
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gc-form-text);
}

/* Required hint, if you want a subtle indicator */
.gc-form__group--required .gc-form__label::after {
    content: " *";
    color: var(--gc-form-error);
    font-weight: 400;
}

/* Text inputs, selects, textareas */
.gc-form__control,
.gc-form input[type="text"],
.gc-form input[type="email"],
.gc-form input[type="password"],
.gc-form input[type="url"],
.gc-form input[type="number"],
.gc-form input[type="tel"],
.gc-form select,
.gc-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 0.6rem 0.75rem;
    border-radius: 0.35rem;

    border: 1px solid var(--gc-form-border);
    background-color: #ffffff;

    font: inherit;
    color: var(--gc-form-text);
    line-height: 1.4;

    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

/* Placeholder styling */
.gc-form__control::placeholder {
    color: var(--gc-form-placeholder);
}

/* Focus states */
.gc-form__control:focus-visible,
.gc-form input:focus-visible,
.gc-form select:focus-visible,
.gc-form textarea:focus-visible {
    outline: 2px solid var(--gc-form-border-focus);
    outline-offset: 2px;
    border-color: var(--gc-form-border-focus);
    box-shadow: 0 0 0 2px rgba(133, 175, 45, 0.12);
}

/* Disabled and read-only */
.gc-form__control[disabled],
.gc-form__control[readonly] {
    background-color: var(--gc-form-bg-disabled);
    color: #777777;
    cursor: not-allowed;
}

/* Textarea adjustments */
.gc-form textarea.gc-form__control {
    resize: vertical;
    min-height: 6rem;
}

/* Select adjustments */
.gc-form select.gc-form__control {
    background-image: linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) 50%, calc(100% - 0.7rem) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2rem;
    appearance: none;
}

/* Help text */
.gc-form__help {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #666666;
}

/* Error text */
.gc-form__error {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--gc-form-error);
}

/* Error state for controls */
.gc-form__group--error .gc-form__control {
    border-color: var(--gc-form-error);
    box-shadow: 0 0 0 1px rgba(177, 41, 41, 0.2);
}

.gc-form__group--error .gc-form__label {
    color: var(--gc-form-error);
}

/* Checkboxes and radios */
.gc-form__group--inline {
    margin-top: var(--space-sm, 0.75rem);
}

.gc-form__checkbox,
.gc-form__radio {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.gc-form__checkbox input[type="checkbox"],
.gc-form__radio input[type="radio"] {
    margin-top: 0.15rem;
}

/* Actions area */
.gc-form__actions {
    margin-top: var(--space-lg, 1.75rem);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm, 0.75rem);
}

/* If you want secondary actions later */
/*
.gc-form__actions .btn + .btn {
  margin-left: var(--space-sm, 0.75rem);
}
*/

/* Small screens, tighten spacing slightly */
@media (max-width: 600px) {
    .gc-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gc-form__checkbox,
    .gc-form__radio {
        align-items: center;
    }
}

.signup-form {
    margin-top: var(--space-md);
}

.signup-form--hidden {
    display: none;
}

.signup-message {
    margin-top: var(--space-md);
    font-size: 0.95rem;
    color: #4a4a4a;
}