@charset "utf-8";
.mail {
  color: var(--brass);
  text-decoration: none;
}
.mail:hover {
  text-decoration: underline;
}
.enquire {
  margin: 1em auto;
  padding: .5em;
  font-size: 1.7em;
}
:root {
  --parchment: #f3ede2;
  --parchment-deep: #e8dfcf;
  --walnut: #4a2e1d;
  --walnut-deep: #2d1b10;
  --forest: #2a3d2c;
  --forest-deep: #1a2a1c;
  --brass: #b8946a;
  --brass-light: #d4b483;
  --ink: #1a1410;
  --muted: #6b5d4f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(184, 148, 106, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(74, 46, 29, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(243, 237, 226, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 46, 29, 0.1);
}
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--brass);
}
.nav-cta {
  background: var(--walnut-deep);
  color: var(--parchment) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--brass) !important;
  color: var(--walnut-deep) !important;
}
/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 5rem 3rem 4rem;
  gap: 4rem;
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
  color: var(--walnut-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.hero-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--walnut);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 300;
}
.hero p.hero-desc {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.btn-primary {
  background: var(--walnut-deep);
  color: var(--parchment);
  padding: 1rem 2rem;
  border: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 46, 29, 0.3);
}
.btn-text {
  color: var(--walnut-deep);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--walnut-deep);
  padding-bottom: 4px;
  transition: all 0.2s ease;
}
.btn-text:hover {
  color: var(--brass);
  border-color: var(--brass);
}
.hero-media {
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
  background: var(--parchment-deep);
  box-shadow: 0 30px 80px rgba(74, 46, 29, 0.25);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(26, 20, 16, 0.25));
  pointer-events: none;
}
.hero-media-credit {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26, 20, 16, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.3rem;
  border-left: 2px solid var(--brass);
  z-index: 3;
}
.hero-media-credit-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.2rem;
}
.hero-media-credit-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
/* ==================================================================
     TABLE FEATURE TEMPLATE
     Each table follows this exact structure:
       .tf-header   → eyebrow + title + intro
       .tf-hero     → big hero image (or video)
       .tf-gallery  → row of close-up details
     Add a new table by copying any .table-feature section.
     ================================================================== */
.table-feature {
  padding: 5rem 3rem;
  position: relative;
  z-index: 2;
}
/* Background variants — alternate for visual rhythm */
.table-feature--light {
  background: var(--parchment);
}
.table-feature--cream {
  background: var(--parchment-deep);
}
.table-feature--dark {
  background: var(--walnut-deep);
  color: var(--parchment);
}
.table-feature--forest {
  background: var(--forest-deep);
  color: var(--parchment);
}
.table-feature--dark .tf-eyebrow,
.table-feature--forest .tf-eyebrow {
  color: var(--brass-light);
}
.table-feature--dark .tf-title,
.table-feature--forest .tf-title {
  color: var(--parchment);
}
.table-feature--dark .tf-title em,
.table-feature--forest .tf-title em {
  color: var(--brass-light);
}
.table-feature--dark .tf-intro,
.table-feature--forest .tf-intro {
  color: rgba(243, 237, 226, 0.75);
}
.table-feature--dark .tf-caption-frame,
.table-feature--forest .tf-caption-frame {
  color: rgba(243, 237, 226, 0.5);
}
.tf-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.tf-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.2rem;
}
.tf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--walnut-deep);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.tf-title em {
  font-style: italic;
  color: var(--forest);
}
.tf-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}
/* Hero image / video */
.tf-hero {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: var(--parchment-deep);
  box-shadow: 0 30px 80px rgba(74, 46, 29, 0.2);
}
.table-feature--dark .tf-hero,
.table-feature--forest .tf-hero {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}
.tf-hero img,
.tf-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tf-hero-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26, 20, 16, 0.82);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.3rem;
  border-left: 2px solid var(--brass);
}
.tf-hero-caption-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.2rem;
}
.tf-hero-caption-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
.tf-caption-frame {
  max-width: 1300px;
  margin: 0 auto 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
/* Gallery — modifier classes pick the column count */
.tf-gallery {
  max-width: 1300px;
  margin: .5em auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tf-gallery--four {
  grid-template-columns: repeat(4, 1fr);
}
.tf-gallery--three {
  grid-template-columns: repeat(3, 1fr);
}
.tf-gallery--two {
  grid-template-columns: repeat(2, 1fr);
}
.tf-gallery figure {
  margin: 0;
  aspect-ratio: 0.8;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
}
.table-feature--dark .tf-gallery figure,
.table-feature--forest .tf-gallery figure {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 148, 106, 0.1);
}
.tf-gallery img,
.tf-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.tf-gallery figure:hover img,
.tf-gallery figure:hover video {
  transform: scale(1.04);
}
.tf-gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.85), transparent);
  color: var(--parchment);
  padding: 1.5rem 1rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  pointer-events: none;
}
/* Available finishes — sits below the main gallery as a variants showcase */
.tf-finishes {
  max-width: 1300px;
  margin: 2rem auto 0;
  padding-top: 4rem;
  border-top: 1px solid rgba(74, 46, 29, 0.12);
}
.table-feature--dark .tf-finishes,
.table-feature--forest .tf-finishes {
  border-top-color: rgba(184, 148, 106, 0.18);
}
.tf-finishes-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.tf-finishes-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--walnut-deep);
  line-height: 1.1;
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.01em;
}
.tf-finishes-title em {
  font-style: italic;
  color: var(--forest);
}
.table-feature--dark .tf-finishes-title,
.table-feature--forest .tf-finishes-title {
  color: var(--parchment);
}
.table-feature--dark .tf-finishes-title em,
.table-feature--forest .tf-finishes-title em {
  color: var(--brass-light);
}
.tf-finishes-intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.table-feature--dark .tf-finishes-intro,
.table-feature--forest .tf-finishes-intro {
  color: rgba(243, 237, 226, 0.7);
}
.tf-finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tf-finishes-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .tf-finishes-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tf-finishes-grid figure {
  margin: 0;
  text-align: left;
}
.tf-finishes-grid figure > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #f3ede2;
  padding: 0;
  display: block;
  margin-bottom: 0;
  transition: transform 0.5s ease;
}
.table-feature--cream .tf-finishes-grid figure > img {
  background: #e8dfcf;
}
.table-feature--dark .tf-finishes-grid figure > img,
.table-feature--forest .tf-finishes-grid figure > img {
  background: rgba(255, 255, 255, 0.06);
}
.tf-finishes-grid figure:hover > img {
  transform: scale(1.02);
}
.tf-finishes-grid figcaption {
  display: block;
  padding: 0;
}
.tf-finishes-grid figcaption strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--walnut-deep);
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}
.table-feature--dark .tf-finishes-grid figcaption strong,
.table-feature--forest .tf-finishes-grid figcaption strong {
  color: var(--parchment);
}
.tf-finishes-grid figcaption span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.table-feature--dark .tf-finishes-grid figcaption span,
.table-feature--forest .tf-finishes-grid figcaption span {
  color: rgba(243, 237, 226, 0.55);
}
/* ==================================================================
     INSTALLATIONS, CRAFTSMANSHIP, TESTIMONIAL, ENQUIRY, FOOTER
     ================================================================== */
.installations {
  background: var(--parchment-deep);
  padding: 5rem 3rem;
  position: relative;
  z-index: 2;
}
.install-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.install-wrapper + .install-wrapper {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid rgba(74, 46, 29, 0.1);
}
.install-wrapper--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.install-wrapper--reverse .install-intro {
  order: 2;
}
.install-wrapper--reverse .install-gallery {
  order: 1;
}
.install-wrapper .tf-header {
  margin-bottom: 0;
}
.install-intro .tf-eyebrow,
.install-intro .tf-title {
  text-align: left;
}
.install-intro .tf-title {
  margin-bottom: 0.5rem;
}
.install-location {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(74, 46, 29, 0.15);
}
.install-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.install-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.install-photo {
  position: relative;
  overflow: hidden;
  background: var(--parchment-deep);
  aspect-ratio: 0.75;
}
.install-photo--wide {
  grid-column: -1;
  aspect-ratio: 1.6;
}
.install-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.install-photo:hover img {
  transform: scale(1.04);
}
.install-photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(26, 20, 16, 0.82);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 500;
}
.craft {
  padding: 5rem 3rem;
  position: relative;
  z-index: 2;
}
.craft-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.craft-image {
  aspect-ratio: 0.8;
  overflow: hidden;
}
.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-content .tf-eyebrow,
.craft-content .tf-title {
  text-align: left;
}
.craft-content .tf-title {
  margin-bottom: 2rem;
}
.craft-list {
  list-style: none;
  margin-top: 2.5rem;
}
.craft-list li {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(74, 46, 29, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: baseline;
}
.craft-list li:last-child {
  border-bottom: none;
}
.craft-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brass);
}
.craft-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--walnut-deep);
  margin-bottom: 0.3rem;
}
.craft-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.testimonial {
  background: var(--walnut-deep);
  color: var(--parchment);
  text-align: center;
  padding: 7rem 3rem;
  position: relative;
  z-index: 2;
}
.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
  color: var(--parchment);
  position: relative;
  padding: 0 2rem;
}
.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  line-height: 1;
}
.testimonial-quote::before {
  top: -1rem;
  left: 0;
}
.testimonial-quote::after {
  bottom: -2rem;
  right: 0;
}
.testimonial-attribution {
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.enquiry {
  background: var(--parchment-deep);
  padding: 3em;
  position: relative;
  z-index: 2;
}
.ccm-block-express-form {
  background: var(--parchment-deep);
  padding: 0 3rem 2em 3em ;
  position: relative;
  z-index: 2;
}
.enquiry-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3em;
}
.ccm-block-express-form,
fieldset {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: none;
}
.mb-3 {
  margin: .5em auto 1.5em auto;
  text-align: left;
}
.form-actions {
  text-align: left;
}
.enquiry-form {
  margin-top: 3rem;
  display: grid;
  gap: 1.2rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field label,
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea,
.ccm-input-text,
.ccm-input-email,
.form-select,
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--parchment);
  border: 1px solid rgba(74, 46, 29, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.enquiry-form button {
  margin-top: 1rem;
  justify-self: start;
}
footer {
  background: var(--walnut-deep);
  color: rgba(243, 237, 226, 0.7);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
}
.footer-brand .logo {
  color: var(--parchment);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  color: rgba(243, 237, 226, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--brass-light);
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(243, 237, 226, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 3rem;
  }
  .hero-media {
    aspect-ratio: 1;
  }
  .table-feature,
  .installations,
  .craft,
  .testimonial,
  .enquiry {
    padding: 5rem 1.5rem;
  }
  .tf-gallery,
  .tf-gallery--three,
  .tf-gallery--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-finishes-grid,
  .tf-finishes-grid--four {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tf-finishes {
    margin-top: 4rem;
    padding-top: 3rem;
  }
  .install-wrapper,
  .install-wrapper--reverse,
  .craft-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .install-wrapper--reverse .install-intro {
    order: 1;
  }
  .install-wrapper--reverse .install-gallery {
    order: 2;
  }
  .install-wrapper + .install-wrapper {
    margin-top: 4rem;
    padding-top: 4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
