@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap");
:root {
  --navy: #061d34;
  --ink: #0a2038;
  --green: #17614c;
  --gold: #c9a33f;
  --cream: #f5f1e7;
  --pale: #e7eee9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
}
section {
  padding: 88px max(38px, calc((100% - 1180px) / 2));
  min-height: 590px;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(35px, 4.1vw, 60px);
  line-height: 1.08;
  max-width: 650px;
}
h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 8px;
}
h3 {
  color: var(--green);
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-intro {
  color: #68716f;
  max-width: 700px;
}
.site-header {
  height: 70px;
  background: #fff;
  border-top: 4px solid var(--green);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 7px max(25px, calc((100% - 1330px) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
}
.brand strong {
  font-family: Georgia, serif;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand b {
  color: var(--green);
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
.brand-mark {
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--gold);
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  font-size: 15px;
}
.site-header nav {
  display: flex;
  gap: 22px;
}
.site-header nav a {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.button {
  border: 0;
  border-radius: 22px;
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.button-gold {
  background: var(--gold);
  color: white;
}
.button.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: wait;
}
.button.is-loading::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: button-spinner 0.75s linear infinite;
}
@keyframes button-spinner {
  to {
    transform: rotate(360deg);
  }
}
.button-green {
  background: #1c7655;
  color: white;
}
.hero {
  padding: 0;
  display: grid;
  grid-template-columns: 51% 49%;
  background: var(--navy);
  color: white;
  min-height: 0;
}
.hero-copy {
  padding: 10%;
  /* padding: 58px max(38px, calc((100vw - 1180px) / 2)) 32px
    max(38px, calc((100vw - 1180px) / 2)); */
}
.hero h1 {
  font-size: clamp(32px, 3.5vw, 48px);
}
.hero-brand {
  color: white;
  margin-bottom: 42px;
}
.hero-brand strong {
  font-family: Georgia, serif;
  font-size: 20px;
}
.hero .lead {
  color: #c1cbd0;
  max-width: 550px;
  line-height: 1.65;
}
.hero .eyebrow {
  line-height: 2;
  color: var(--gold);
}
.actions {
  display: flex;
  gap: 10px;
  margin: 22px 0 38px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: #aebbc0;
  font-size: 11px;
}
.hero-stats b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 8px;
}
.hero-image,
.feature-photo {
  background-position: center;
  background-size: cover;
}
.cream {
  background: var(--cream);
}
.white {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 35px;
  margin-top: 36px;
}
.dark-card {
  background: var(--navy);
  color: white;
  border-radius: 20px;
  padding: 34px;
}
.approach h3 {
  font-size: 25px;
  line-height: 1.4;
  color: #fff;
}
.approach p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.7;
  color: #bbc8ce;
  max-width: 360px;
}
.pill {
  background: var(--gold);
  font-size: 11px;
  border-radius: 20px;
  padding: 11px 20px;
  display: inline-block;
}
.feature-grid,
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.white-card {
  background: white;
  border: 1px solid #e2e4e1;
  border-radius: 14px;
  padding: 28px;
  min-height: 130px;
  box-shadow: 0 2px 5px #0a20380a;
}
.white-card i {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background: var(--green);
  margin-bottom: 12px;
}
.white-card h4,
.product-card h4 {
  font-size: 12px;
  color: var(--green);
  margin: 0 0 8px;
}
.white-card p,
.white-card small {
  font-size: 11px;
  color: #727a79;
  line-height: 1.5;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-top: 46px;
}
.product-card {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 17px;
}
.product-card img {
  height: 125px;
  width: 100%;
  object-fit: cover;
}
.product-card h4,
.product-card small {
  display: block;
  padding: 0 18px;
}
.product-card h4 {
  margin-top: 10px;
}
.product-card small {
  font-size: 11px;
  color: #777;
}
.note {
  font-size: 11px;
  color: #74807b;
  margin-top: 14px;
}
.feature-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 610px;
}
.feature-product > div:first-child {
  padding: 95px max(38px, calc((100vw - 1180px) / 2));
}
.feature-product h2 {
  font-size: 42px;
}
.feature-product h3 {
  margin: 0 0 12px;
}
.feature-product dl {
  margin: 55px 0 20px;
}
.feature-product dt {
  font-size: 11px;
  color: var(--gold);
  margin-top: 16px;
}
.feature-product dd {
  margin: 4px 0;
  font-size: 12px;
}
.callout {
  background: var(--pale);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 10px;
}
.dark-section {
  background: var(--navy);
  color: white;
}
.dark-section h2 {
  color: white;
}
.dark-section .section-intro {
  color: #becbd1;
}
.dark-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 52px;
}
.dark-products article {
  background: #103d55;
  border-radius: 13px;
  padding: 7px 7px 16px;
}
.dark-products img {
  height: 112px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.dark-products b {
  display: block;
  font-size: 11px;
  padding: 10px 8px 0;
}
.furniture-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}
.furniture-grid article {
  background: #fff;
  border-radius: 14px;
  padding: 6px 6px 13px;
}
.furniture-grid img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 9px;
}
.furniture-grid b {
  display: block;
  font-size: 10px;
  color: var(--green);
  padding: 8px 8px 0;
}
.wood-hero {
  grid-row: span 1;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
}
.range {
  grid-column: span 1;
  background: var(--navy) !important;
  color: white;
  padding: 22px !important;
}
.range .eyebrow {
  margin: 0 0 15px;
}
.range b {
  display: inline-block;
  color: white;
  width: 48%;
  padding: 0 0 12px;
}
.range small {
  font-size: 11px;
  color: #c3ced0;
}
.export-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.export-grid > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.export-grid > div {
  display: grid;
  gap: 16px;
}
.export-grid .white-card {
  min-height: 100px;
}
.export-grid h3 {
  margin: 0;
  font-size: 20px;
}
.chilli {
  display: flex;
  gap: 14px;
}
.chilli img {
  width: 145px;
  object-fit: cover;
  border-radius: 8px;
}
.quality-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
}
.network {
  min-height: 590px;
}
.route {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
  margin: 70px auto 50px;
  max-width: 1000px;
}
.route article {
  background: #103d55;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  min-height: 160px;
}
.route article span {
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 18px;
  margin: 0 auto 16px;
}
.route h3 {
  color: white;
  font-size: 14px;
  margin: 0 0 10px;
}
.route p,
.route-note {
  font-size: 11px;
  color: #bfccd0;
}
.route em {
  border-top: 3px solid var(--gold);
  color: var(--gold);
  font-style: normal;
  font-size: 8px;
  text-align: center;
}
.route-note {
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 20px;
}
.contact aside h3 {
  font-family: Georgia, serif;
  color: white;
}
.contact aside h5 {
  color: var(--gold);
  font-size: 11px;
  margin: 25px 0 7px;
}
.contact aside p {
  font-size: 12px;
  line-height: 1.8;
  color: #e0e4e4;
}
.quote-form {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}
.quote-form h3,
.quote-form button,
.form-status {
  grid-column: 1/-1;
}
.quote-form h3 {
  font-size: 15px;
  margin: 0;
  color: var(--green);
}
.quote-form label {
  font-size: 11px;
}
.quote-form input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 36px;
  padding: 8px;
}
.form-status {
  font-size: 11px;
  color: var(--green);
  margin: 0;
}
.website {
  font-size: 11px;
  color: var(--gold);
  margin-top: 10px;
}
.website b {
  color: var(--green);
  font-size: 11px;
}
footer {
  background: #04182a;
  color: #cfaa48;
  padding: 16px 30px;
  font-size: 11px;
}
footer span {
  float: right;
  color: #a7b4b8;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
}
/* Tablet & iPad (1024px and up) */
@media (max-width: 1024px) {
  section {
    padding: 60px max(24px, calc((100% - 900px) / 2));
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dark-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px to 1023px) */
@media (max-width: 768px) {
  section {
    padding: 50px max(20px, calc((100% - 700px) / 2));
    min-height: auto;
  }
  h1 {
    font-size: clamp(28px, 5vw, 42px);
  }
  h2 {
    font-size: clamp(24px, 4vw, 36px);
  }
  .site-header {
    gap: 12px;
    height: 65px;
    padding: 7px max(16px, calc((100vw - 700px) / 2));
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .menu-toggle {
    display: block;
    order: 3;
    cursor: pointer;
  }
  .site-header > .button {
    font-size: 11px;
    padding: 10px 16px;
  }
  .brand {
    gap: 8px;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand small {
    font-size: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 45px 20px;
  }
  .hero-image {
    height: 300px;
    min-height: 300px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    font-size: 10px;
  }
  .hero-stats b {
    font-size: 9px;
  }
  .actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .actions .button {
    font-size: 11px;
    padding: 10px 18px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dark-card {
    padding: 24px;
  }
  .approach h3 {
    font-size: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .dark-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-product {
    grid-template-columns: 1fr;
  }
  .feature-product > div:first-child {
    padding: 45px 20px;
  }
  .feature-photo {
    height: 300px;
    min-height: 300px;
  }
  .furniture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .wood-hero {
    grid-column: span 1;
    height: 140px;
  }
  .range {
    grid-column: span 1;
  }
  .export-grid {
    grid-template-columns: 1fr;
  }
  .export-grid > img {
    height: 220px;
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .route {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 50px auto 30px;
  }
  .route article {
    padding: 16px;
  }
  .route em {
    border-top: 0;
    border-left: 3px solid var(--gold);
    height: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quote-form {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 15px;
  }
  .quote-form input,
  .quote-form textarea {
    font-size: 16px;
  }
  .contact aside {
    padding: 22px;
  }
}

/* Mobile landscape & larger phones (576px to 767px) */
@media (max-width: 576px) {
  section {
    padding: 40px 16px;
    min-height: auto;
  }
  h1 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
  }
  h2 {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.2;
  }
  h3 {
    font-size: 16px;
  }
  .site-header {
    height: 60px;
    gap: 8px;
    padding: 5px 12px;
  }
  .site-header nav {
    top: 60px;
    padding: 12px;
  }
  .site-header nav a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .site-header > .button {
    display: none;
  }
  .brand {
    gap: 6px;
  }
  .brand strong {
    font-size: 13px;
  }
  .brand small {
    font-size: 5px;
    margin-top: 3px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .menu-toggle {
    font-size: 20px;
  }
  .hero-copy {
    padding: 40px 16px;
  }
  .hero h1 {
    font-size: clamp(22px, 5vw, 30px);
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-image {
    height: 250px;
    min-height: 250px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 9px;
  }
  .hero-stats b {
    font-size: 8px;
    margin-bottom: 4px;
  }
  .actions {
    gap: 6px;
  }
  .actions .button {
    font-size: 10px;
    padding: 8px 14px;
    flex: 1;
    text-align: center;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .dark-card {
    padding: 20px;
    border-radius: 16px;
  }
  .approach h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .approach p {
    font-size: 11px;
  }
  .pill {
    font-size: 9px;
    padding: 8px 14px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .white-card {
    padding: 20px;
    min-height: auto;
    border-radius: 12px;
  }
  .white-card h4 {
    font-size: 11px;
  }
  .white-card p,
  .white-card small {
    font-size: 10px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card img {
    height: 100px;
  }
  .product-card h4 {
    font-size: 11px;
    padding: 12px 14px 0;
  }
  .product-card small {
    font-size: 9px;
    padding: 0 14px 12px;
  }
  .dark-products {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dark-products article {
    padding: 5px 5px 12px;
  }
  .dark-products img {
    height: 100px;
  }
  .dark-products b {
    font-size: 10px;
    padding: 8px;
  }
  .feature-product {
    grid-template-columns: 1fr;
  }
  .feature-product > div:first-child {
    padding: 35px 16px;
  }
  .feature-product h2 {
    font-size: 28px;
  }
  .feature-product h3 {
    font-size: 14px;
  }
  .feature-product dl {
    margin: 30px 0 15px;
  }
  .feature-product dt {
    font-size: 9px;
    margin-top: 12px;
  }
  .feature-product dd {
    font-size: 11px;
  }
  .callout {
    padding: 14px;
    margin-bottom: 15px;
    font-size: 9px;
  }
  .feature-photo {
    height: 250px;
    min-height: 250px;
  }
  .furniture-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .furniture-grid article {
    padding: 4px 4px 10px;
  }
  .furniture-grid img {
    height: 90px;
  }
  .furniture-grid b {
    font-size: 9px;
    padding: 6px;
  }
  .wood-hero {
    height: 120px;
  }
  .range {
    grid-column: span 1;
    padding: 18px !important;
  }
  .range .eyebrow {
    margin: 0 0 12px;
    font-size: 8px;
  }
  .range b {
    width: 100%;
    padding: 0 0 10px;
    font-size: 10px;
  }
  .range small {
    font-size: 9px;
  }
  .export-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .export-grid > img {
    height: 180px;
  }
  .export-grid h3 {
    font-size: 16px;
  }
  .chilli {
    flex-direction: column;
  }
  .chilli img {
    width: 100%;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .route {
    gap: 15px;
    margin: 35px auto 20px;
  }
  .route article {
    padding: 14px;
    min-height: auto;
  }
  .route article span {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin: 0 auto 10px;
  }
  .route h3 {
    font-size: 12px;
  }
  .route p,
  .route-note {
    font-size: 9px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact aside {
    padding: 18px;
    border-radius: 12px;
  }
  .contact aside h3 {
    font-size: 14px;
    margin: 0 0 12px;
  }
  .contact aside h5 {
    font-size: 9px;
    margin: 16px 0 5px;
  }
  .contact aside p {
    font-size: 11px;
    line-height: 1.6;
  }
  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 12px;
    border-radius: 12px;
  }
  .quote-form h3 {
    font-size: 13px;
  }
  .quote-form label {
    font-size: 10px;
  }
  .quote-form input,
  .quote-form textarea {
    height: 40px;
    padding: 10px 8px;
    font-size: 16px;
    border-radius: 4px;
  }
  .quote-form textarea {
    height: 100px;
  }
  .quote-form button {
    font-size: 10px;
    padding: 10px 16px;
    border-radius: 18px;
  }
  .button {
    border-radius: 18px;
    padding: 11px 18px;
    font-size: 11px;
  }
  .website {
    font-size: 10px;
    margin-top: 8px;
  }
  footer {
    font-size: 10px;
    padding: 12px 16px;
  }
  footer span {
    display: block;
    float: none;
    margin-top: 8px;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
  section {
    padding: 32px 12px;
  }
  h1 {
    font-size: clamp(20px, 7vw, 26px);
  }
  h2 {
    font-size: clamp(18px, 5.5vw, 24px);
  }
  .site-header {
    height: 56px;
    padding: 4px 10px;
  }
  .site-header nav {
    top: 56px;
    padding: 10px;
  }
  .brand strong {
    font-size: 11px;
  }
  .brand small {
    font-size: 4px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .hero-copy {
    padding: 32px 12px;
  }
  .hero .eyebrow {
    font-size: 8px;
    line-height: 1.6;
  }
  .hero-image {
    height: 200px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 8px;
  }
  .actions .button {
    font-size: 9px;
    padding: 7px 12px;
  }
  .dark-card {
    padding: 18px;
  }
  .approach h3 {
    font-size: 16px;
  }
  .white-card {
    padding: 16px;
  }
  .product-card {
    padding-bottom: 12px;
  }
  .product-card img {
    height: 90px;
  }
  .product-card h4 {
    font-size: 10px;
    padding: 10px 12px 0;
  }
  .feature-product > div:first-child {
    padding: 28px 12px;
  }
  .feature-photo {
    height: 200px;
  }
  .furniture-grid {
    gap: 10px;
  }
  .wood-hero {
    height: 100px;
  }
  .export-grid > img {
    height: 150px;
  }
  .route article {
    padding: 12px;
  }
  .contact aside {
    padding: 16px;
  }
  .quote-form {
    padding: 16px;
    gap: 10px;
  }
}
