@font-face {
  font-family: 'Metropolis';
  src: url('/assets/fonts/Metropolis-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-display: optional;
}
@font-face {
  font-family: 'Metropolis';
  src: url('/assets/fonts/Metropolis-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  font-display: optional;
}
@font-face {
  font-family: 'Metropolis';
  src: url('/assets/fonts/Metropolis-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-display: optional;
}
@font-face {
  font-family: 'Metropolis';
  src: url('/assets/fonts/Metropolis-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  font-display: optional;
}
@font-face {
  font-family: 'Metropolis';
  src: url('/assets/fonts/Metropolis-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  font-display: optional;
}
@font-face {
  font-family: 'MetropolisFallback';
  src: local('Helvetica Neue'), local('Arial');
  size-adjust: 96%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
/**
 * Oakwinds Studio | Framework
 * Base Reset & Normalization
 */
/* 1. Use a more intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Remove default margins and padding for a clean slate */
* {
  margin: 0;
  padding: 0;
}
/* 3. Allow percentage-based heights (crucial for full-screen layouts) */
html,
body {
  height: 100%;
}
/* 4. Set base font size, prevent text scaling on mobile orientation change,
      and reserve scrollbar space to prevent layout shift */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}
/* 5. Improve text rendering and set base line height */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: sans-serif;
  /* Placeholder until we set your Studio fonts */
}
/* 6. Improve media defaults (prevents images from 'overflowing' their containers) */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* 7. Inherit fonts for form elements (fixes annoying browser overrides) */
input,
button,
textarea,
select {
  font: inherit;
}
/* 8. Avoid text overflows on headings and paragraphs */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/* 9. Remove list styles (we'll add them back manually when needed) */
ol,
ul {
  list-style: none;
}
/* 10. Ensure links aren't invisible by default */
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  line-height: 1.2;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}
h4 {
  font-weight: 500;
}
h5 {
  font-weight: 500;
}
h1 {
  font-size: 1.7rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
h5 {
  font-size: 1rem;
}
h1 {
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 0;
}
p {
  font-size: 18px;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  font-family: 'Metropolis', "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: #666;
  color: #fff;
  border: 1px solid #666;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  background: #999;
  border-color: #999;
}
.btn--xs {
  font-size: 0.6rem;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
}
.btn--sm {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.btn--md {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
}
.btn--lg {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
}
.btn--outline {
  background: transparent;
  color: #666;
  border-color: #666;
}
.btn--outline:hover {
  background: #666;
  border-color: #666;
  color: #fff;
}
main {
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 48px 0;
  }
}
section {
  width: 100%;
}
.section-sm {
  padding: 40px 0;
}
.section-md {
  padding: 80px 0;
}
.section-lg {
  padding: 120px 0;
}
.section-xl {
  padding: 160px 0;
}
.header {
  width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  .header {
    position: relative;
    height: 100px;
    z-index: 100;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo {
  display: block;
  width: 300px;
  height: auto;
}
.logo svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo {
    width: calc(100% - 75px);
    margin-left: 5px;
  }
}
.logo__mobile {
  display: none;
}
@media (max-width: 768px) {
  .logo__desktop {
    display: none;
  }
  .logo__mobile {
    display: block;
    width: 60px;
  }
  .logo__mobile svg {
    width: 60px;
    height: auto;
  }
}
.nav {
  display: flex;
  align-items: center;
}
.nav a {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #333;
  text-decoration: none;
  padding: 0 16px;
  border-left: 1px solid #999;
  transition: color 0.3s ease;
}
.nav a:first-child {
  padding-left: 0;
  border-left: none;
}
.nav a:last-child {
  padding-right: 0;
}
.nav a:hover {
  color: #999;
}
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #FFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    clip-path: inset(0px -20px -20px -20px);
    padding: 0 0 3rem;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 1.25rem 3rem;
    border-left: none;
    width: 100%;
    text-align: center;
  }
  .nav a:first-child {
    padding-left: 3rem;
  }
  .nav a:last-child {
    border-bottom: none;
    padding-right: 3rem;
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -12px 0.75rem -12px -12px;
  box-sizing: content-box;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #999;
  transition: opacity 0.1s ease 0s;
  transform-origin: center;
  position: relative;
}
.nav-toggle span:nth-child(2) {
  background: transparent;
}
.nav-toggle span:nth-child(2)::before,
.nav-toggle span:nth-child(2)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #999;
  transition: transform 0.2s ease 0s;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1),
.nav-toggle.is-open span:nth-child(3) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(2)::before {
  transform: rotate(45deg);
  transition: transform 0.2s ease 0.1s;
}
.nav-toggle.is-open span:nth-child(2)::after {
  transform: rotate(-45deg);
  transition: transform 0.2s ease 0.1s;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}
.footer {
  width: 100%;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.footer p {
  font-size: 0.85em;
}
.contact-form {
  max-width: 680px;
  margin: 1.25rem 0;
}
@media (max-width: 768px) {
  .contact-form .form-field {
    margin-bottom: 1.75rem;
  }
}
.contact-form .form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #333;
}
.contact-form .form-field label .required {
  color: #333;
  font-size: 1rem;
  margin-right: 4px;
}
.contact-form .form-field--inline {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: baseline;
  gap: 1.75rem;
}
.contact-form .form-field--inline label {
  text-align: right;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact-form .form-field--inline {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .contact-form .form-field--inline label {
    text-align: left;
    margin-bottom: 0;
  }
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0 0.75rem 0.75rem;
  margin-left: -0.75rem;
  border: none;
  background: transparent;
  font-family: 'Metropolis', "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  transition: border-color 0.2s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 3rem;
  cursor: pointer;
}
.contact-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 769px) {
  .contact-form .checkbox-group {
    transform: translateY(4px);
  }
}
@media (max-width: 768px) {
  .contact-form .checkbox-group {
    margin-top: 1.25rem;
  }
}
.contact-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #222;
  cursor: pointer;
}
.contact-form .checkbox-group .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
  accent-color: #7c3f16;
}
.contact-form .form-actions {
  margin-top: 3rem;
  padding-left: calc(200px + 1.75rem);
}
@media (max-width: 768px) {
  .contact-form .form-actions {
    padding-left: 0;
  }
}
.contact-form .form-actions button[type="submit"] {
  display: inline-block;
}
.thanks-message {
  max-width: 680px;
  margin: 4rem auto;
  text-align: center;
}
.thanks-message .btn {
  display: inline-block;
  transition: background 0.2s ease;
}
.thanks-message .btn:hover {
  background: #51290e;
}
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center center);
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 380px;
    background-image: var(--hero-image-mobile, var(--hero-image));
    background-position: var(--hero-position-mobile, var(--hero-position, center center));
  }
  .hero .container {
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .hero-quote {
    max-width: 100%;
  }
}
.hero-quote blockquote {
  margin: 0 auto;
  text-align: left;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .hero-quote blockquote {
    text-align: center;
  }
  .hero-quote blockquote p {
    margin-top: 0;
  }
}
.hero-quote blockquote p {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 2.1;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin-top: 3rem;
  margin-bottom: 1.75rem;
  text-shadow: 0px 0px 10px #000000;
}
.hero-quote blockquote cite {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 10px #000000;
}
.hero-quote blockquote cite :before {
  content: "— ";
}
@media print {
  .header .nav,
  .header .nav-toggle {
    display: none !important;
  }
  .footer,
  .form-actions,
  .btn {
    display: none !important;
  }
  .hero {
    height: auto !important;
    background-image: none !important;
    background: none !important;
  }
  body {
    font-family: Georgia, serif;
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .container {
    max-width: 100%;
    padding: 0;
  }
  main {
    padding-top: 0;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  a[href^="/"]::after,
  a[href^="#"]::after {
    content: "";
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    color: #000;
  }
  p,
  blockquote {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  @page {
    margin: 2cm;
  }
  .hero {
    height: auto !important;
    background-image: none !important;
    background: none !important;
    margin-top: 1.75rem;
  }
  .hero-quote {
    position: static;
    transform: none;
    padding: 0;
    margin: 5rem 0 1.75rem 0;
    width: 100%;
  }
  .hero-quote blockquote {
    background: none;
    padding: 1.25rem 0;
    text-align: left;
  }
  .hero-quote blockquote p {
    color: #000;
    font-size: 11pt;
    text-shadow: none;
    font-style: italic;
  }
  .hero-quote blockquote cite {
    color: #333;
    text-shadow: none;
  }
}
.portfolio-grid--flat {
  columns: 3;
  column-gap: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .portfolio-grid--flat {
    columns: 1;
  }
}
.portfolio-grid__item {
  break-inside: avoid;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.portfolio-grid__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.portfolio-grid__item:hover img {
  opacity: 0.85;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(1) {
  height: 370px;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(2) {
  height: 280px;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(3) {
  height: 250px;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(4) {
  height: 400px;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(5) {
  height: 350px;
}
.portfolio-grid--flat .portfolio-grid__item:nth-child(6) {
  height: 300px;
}
.portfolio-grid__label {
  display: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 768px) {
  .lightbox {
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 3rem;
  }
}
.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox__img {
  max-width: 700px;
  max-height: 600px;
  width: 100%;
  object-fit: contain;
  display: block;
}
.lightbox__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  min-height: 1em;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}
.lightbox__close:hover {
  opacity: 1;
}
body {
  font-family: 'Metropolis', "Helvetica Neue", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}
