/* Custom Cut Carpentry - Compiled CSS (Tailwind CLI equivalent) */
/* Generated to replace cdn.tailwindcss.com for production use */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;600;700&display=swap');

/* === CSS Reset (Tailwind Preflight) === */
*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}
html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif}
body{margin:0;line-height:inherit}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}
a{color:inherit;text-decoration:inherit}
button,input,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}
button,select{text-transform:none}
button,[type='button'],[type='reset'],[type='submit']{-webkit-appearance:button;background-color:transparent;background-image:none}
textarea{resize:vertical}
input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}
img,video{max-width:100%;height:auto;display:block}
[hidden]{display:none}

/* Utility / helpers */
.hp-field {
  display: none;
}

/* === CSS Custom Properties === */
:root {
  --brand-dark: #18181b;
  --brand-blue: #3b4d7a;
  --brand-blue-80: rgba(59,77,122,0.8);
  --brand-blue-50: rgba(59,77,122,0.5);
  --brand-blue-20: rgba(59,77,122,0.2);
  --brand-blue-10: rgba(59,77,122,0.1);
  --brand-blue-5: rgba(59,77,122,0.05);
  --brand-dark-80: rgba(10,10,10,0.8);
  --brand-dark-60: rgba(10,10,10,0.6);
  --brand-dark-40: rgba(10,10,10,0.4);
  --brand-dark-20: rgba(10,10,10,0.2);
}

/* === Base Layer === */
body { background-color: var(--brand-dark); color: #fff; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

/* === Component Classes === */
.glass-nav { background-color: var(--brand-dark-80); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-card { background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s; }
.service-card:hover { background-color: rgba(255,255,255,0.1); border-color: var(--brand-blue-50); }
.btn-primary { background-color: var(--brand-blue); color: #fff; padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.btn-primary:hover { background-color: var(--brand-blue-80); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); }

/* === Layout === */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-full { top: 100%; }
.-top-6 { top: -1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.-left-6 { left: -1.5rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* === Display === */
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }

/* === Flexbox === */
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

/* === Grid === */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* === Gap === */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* === Spacing === */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* === Padding === */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }

/* === Margin === */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }
.-mb-32 { margin-bottom: -8rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }
.-mt-16 { margin-top: -4rem; }
.-mt-20 { margin-top: -5rem; }
.-mt-32 { margin-top: -8rem; }
.ml-1 { margin-left: 0.25rem; }
.-ml-32 { margin-left: -8rem; }
.-mr-32 { margin-right: -8rem; }

/* === Sizing === */
.w-1 { width: 0.25rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-\[500px\] { width: 500px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-18 { height: 4.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-\[400px\] { height: 400px; }
.h-\[50vh\] { height: 50vh; }
.h-\[60vh\] { height: 60vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-\[80vh\] { max-height: 80vh; }
.aspect-square { aspect-ratio: 1 / 1; }

/* === Typography === */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-display { font-family: 'Oswald', sans-serif; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* === Colors === */
.text-white { color: #fff; }
.text-white\/10 { color: rgba(255,255,255,0.1); }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-brand-blue { color: var(--brand-blue); }
.text-brand-dark { color: var(--brand-dark); }
.text-transparent { color: transparent; }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-dark\/20 { background-color: var(--brand-dark-20); }
.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-blue\/5 { background-color: var(--brand-blue-5); }
.bg-brand-blue\/10 { background-color: var(--brand-blue-10); }
.bg-brand-blue\/20 { background-color: var(--brand-blue-20); }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/40 { background-color: rgba(255,255,255,0.4); }

/* === Gradients === */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-brand-dark { --tw-gradient-from: var(--brand-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-dark\/20 { --tw-gradient-from: var(--brand-dark-20); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-dark\/80 { --tw-gradient-from: var(--brand-dark-80); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.via-brand-dark\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(10,10,10,0.4), var(--tw-gradient-to, transparent); }
.via-brand-dark\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(10,10,10,0.6), var(--tw-gradient-to, transparent); }
.to-brand-blue { --tw-gradient-to: var(--brand-blue); }
.to-brand-dark { --tw-gradient-to: var(--brand-dark); }
.to-transparent { --tw-gradient-to: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* === Borders === */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-brand-blue { border-color: var(--brand-blue); }
.border-brand-blue\/10 { border-color: var(--brand-blue-10); }
.border-brand-blue\/20 { border-color: var(--brand-blue-20); }

/* === Border Radius === */
.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.rounded-\[4rem\] { border-radius: 4rem; }

/* === Shadows === */
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1),0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-brand-blue\/20 { box-shadow: 0 25px 50px -12px rgba(59,77,122,0.2); }
.shadow-brand-blue\/30 { box-shadow: 0 25px 50px -12px rgba(59,77,122,0.3); }

/* === Effects === */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.grayscale { filter: grayscale(100%); }
.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.object-cover { object-fit: cover; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.appearance-none { appearance: none; }
.resize-none { resize: none; }

/* === Transforms === */
.rotate-45 { transform: rotate(45deg); }
.-rotate-45 { transform: rotate(-45deg); }
.scale-110 { transform: scale(1.1); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* === Transitions === */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color,background-color,border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* === Visibility === */
.invisible { visibility: hidden; }

/* === Animations === */
@keyframes bounce {
  0%,100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce { animation: bounce 1s infinite; }

/* === Hover States === */
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:border-brand-blue:hover { border-color: var(--brand-blue); }
.hover\:text-brand-blue:hover { color: var(--brand-blue); }
.hover\:text-white:hover { color: #fff; }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }

/* === Focus States === */
.focus\:border-brand-blue:focus { border-color: var(--brand-blue); }
.focus\:outline-none:focus { outline: none; }

/* === Group Hover === */
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-60 { opacity: 0.6; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-brand-blue { color: var(--brand-blue); }
.group:hover .group-hover\:visible { visibility: visible; }

/* === Responsive: sm (640px+) === */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* === Responsive: md (768px+) === */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:w-72 { width: 18rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:h-14 { height: 3.5rem; }
  .md\:h-16 { height: 4rem; }
  .md\:h-18 { height: 4.5rem; }
  .md\:h-20 { height: 5rem; }
  .md\:h-24 { height: 6rem; }
  .md\:h-28 { height: 7rem; }
  .md\:h-32 { height: 8rem; }
}

/* === Responsive: lg (1024px+) === */
@media (min-width: 1024px) {
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:p-14 { padding: 3.5rem; }
}

/* === Dropdown Hover (group) === */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }

/* === Footer === */
.site-footer {
  background-color: var(--brand-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 1.5rem 0;
}

.footer-main {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li span {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Brand column */
.footer-brand .footer-logo img {
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  color: #9ca3af;
  transition: all 0.2s;
}

.footer-socials a svg {
  width: 1rem;
  height: 1rem;
}

.footer-socials a:hover {
  border-color: var(--brand-blue);
  color: #fff;
  background-color: var(--brand-blue-20);
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem !important;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.fc-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--brand-blue);
  margin-top: 0.125rem;
}

/* Divider & bottom bar */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.footer-bottom {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  color: #6b7280;
  font-size: 0.8125rem;
  margin: 0;
}

.footer-licence {
  color: #4b5563;
  font-size: 0.8125rem;
}

.lightbox {
  cursor: zoom-in;
}

.lightbox img {
  transition: transform 0.3s ease;
}

.lightbox:hover img {
  transform: scale(1.03);
}