*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Cormorant Infant', Georgia, serif;
  --font-display: 'Cinzel', serif;

  --gold:        #C9A84C;
  --gold-light:  #E8CC7A;
  --gold-dim:    #8B6914;
  --black:       #000000;
  --off-black:   #0A0A0A;
  --white:       #FFFFFF;
  --text-muted:  #C8C8C8;
}

html {
	font-size: 20px;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background-color: #000000;
  color: var(--white);

  font-family: var(--font-main);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 100vh;

  overflow-x: hidden;
  overflow-y: auto;

  padding-top: 2rem;
  padding-bottom: 3rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  gap: 0;

  animation: fadeIn 1.8s ease forwards;
}

.mailing-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-wrap {
  width: min(680px, 90vw);
  margin-bottom: 2.8rem;
  margin-left: -2rem;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gold rule */
.rule {
  width: min(320px, 70vw);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    var(--gold),
    var(--gold-dim),
    transparent
  );

  margin-bottom: 2.4rem;

  animation: fadeIn 2.2s ease forwards;
}

.mailing-label {
  font-family: var(--font-display);

  font-size: clamp(0.75rem, 2.2vw, 0.95rem);

  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 0.6rem;

  animation: fadeIn 2.4s ease forwards;
}

.mailing-info {
  font-family: var(--font-main);

  font-size: clamp(1.3rem, 4vw, 2rem);

  font-weight: 500;
  font-style: italic;

  color: var(--gold-light);

  letter-spacing: 0.04em;

  margin-bottom: 0.5rem;

  animation: fadeIn 2.6s ease forwards;
}

.mailing-towns {
  font-family: var(--font-display);

  font-size: clamp(0.8rem, 2.4vw, 1rem);

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--text-muted);

  animation: fadeIn 2.8s ease forwards;
}

.mailing-towns span {
  color: #bbbbbb;
  margin: 0 0.5em;
}

/* Second rule */
.rule-bottom {
  width: min(200px, 50vw);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    transparent
  );

  margin-top: 2.4rem;

  animation: fadeIn 3s ease forwards;
}

.contact-line {
  margin-top: 1.6rem;

  font-family: var(--font-display);

  font-size: clamp(0.7rem, 1.8vw, 0.85rem);

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: #bbbbbb;

  animation: fadeIn 3.2s ease forwards;
}

.contact-line a {
  color: var(--gold-dim);
  text-decoration: none;

  transition: color 0.3s ease;
}

.contact-line a:hover {
  color: var(--gold-light);
}

/* =============================
   Kitchen Photo Section
================================ */

.kitchen-showcase {
  position: relative;
  width: min(825px, 92vw);
  aspect-ratio: 1365 / 1024;
  margin-top: 3rem;
  margin-inline: auto;

  background-image: url("../images/CardMockup_On_Kitchen_Counter.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #000;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.kitchen-text-panel {
  width: 350px;
  max-width: none;

  margin: 1.8rem 0 0 3.6rem;

  padding: .85rem 1.1rem .85rem;
  background: rgba(0, 0, 0, 0.52);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;

  box-shadow:
    0 0 35px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(0, 0, 0, 0.35);

  text-align: center;
}

.kitchen-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.4vw, 0.9rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.kitchen-rule {
  width: min(520px, 80%);
  height: 1px;
  margin: 0 auto 1.3rem auto;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    var(--gold),
    var(--gold-dim),
    transparent
  );
}

.kitchen-text-panel h2 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

.kitchen-description {
  display:none;
  font-size: clamp(0.75rem, 1vw, .9rem);
  line-height: 1.30;
  max-width: 430px;
  margin: 0 auto .6rem auto;
}

.kitchen-mini-stats {
	/*  padding-top: 0.8rem;
	  gap: 0.5rem; */
	  display: none;
}

.kitchen-mini-stats div {
  border-right: 1px solid rgba(201,168,76,0.45);
}

.kitchen-mini-stats div:last-child {
  border-right: none;
}

.kitchen-mini-stats span {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}

.kitchen-mini-stats small {
  display: block;
  font-family: var(--font-display);
  color: #f1f1f1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

@media (max-width: 768px) {

  .kitchen-showcase {
    display: block;
    aspect-ratio: auto;
    width: 92vw;

    background-image: none;
  }

  .kitchen-showcase::after {
    content: "";
    display: block;

    width: 100%;
    aspect-ratio: 1365 / 1024;

    background-image: url("../images/CardMockup_On_Kitchen_Counter.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .kitchen-text-panel {
    width: 100%;
    max-width: none;

    margin: 0 0 1.25rem 0;
  }

}

/* =========================
   Statistics Section
========================= */

.stats-section {
  display: grid;

  grid-template-columns: repeat(4, minmax(120px, 1fr));

  gap: 1rem;

  width: min(760px, 92vw);

  margin-top: 3rem;
  margin-bottom: 2rem;

  padding: 1.2rem 1rem;

  border-top: 1px solid rgba(201, 168, 76, 0.45);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);

  animation: fadeIn 3.4s ease forwards;
}

.stat-card {
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.stat-number {
  display: block;

  font-family: var(--font-main);

  font-size: clamp(1.55rem, 3vw, 2.15rem);

  font-weight: 500;

  color: var(--gold-light);

  letter-spacing: 0.04em;

  line-height: 1;
}

.stat-label {
  display: block;

  margin-top: 0.45rem;

  font-family: var(--font-display);

  font-size: clamp(0.58rem, 1.4vw, 0.72rem);

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--text-muted);
}

/* =========================
   Design Showcase Section
========================= */

.design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  width: min(900px, 92vw);
  margin-top: 4rem;
  margin-inline: auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.45);
}

.design-card-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.design-card-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.card-glow {
  border: 1px solid rgba(201, 168, 76, 0.6);
  box-shadow:
    0 0 18px rgba(201, 168, 76, 0.35),
    0 0 45px rgba(201, 168, 76, 0.15);
}

.design-copy-col {
  text-align: left;
}

.design-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.design-rule {
  width: min(200px, 60%);
  height: 1px;
  margin-bottom: 1.3rem;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    var(--gold),
    var(--gold-dim),
    transparent
  );
}

.design-headline {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.design-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.design-bullets li {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 1.2rem;
  position: relative;
}

.design-bullets li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.5rem;
  top: 0.35em;
}

.design-closing {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gold-light);
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-top: 1.2rem;
  text-align: left;
}

.design-closing-mobile {
  display: none;
}

/* =========
   Mobile  
   ========= */
@media (max-width: 768px) {
  .design-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .design-copy-col {
    text-align: center;
  }

  .design-rule {
    margin-inline: auto;
  }

  .design-bullets li {
    text-align: left;
  }

  .design-closing-desktop {
    display: none;
  }
  
  .design-showcase {
	grid-template-columns: 1fr;
	gap: 2rem;
	border-top: none;
	padding-top: 0;
	margin-top: 2rem;
  } 
  

  .design-closing-mobile {
    display: block;
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 500;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.4rem;
    padding-top: 0;
    margin-top: 1rem;
    text-align: left;
    width: 92vw;
    margin-inline: auto;
  }
}


/* ==========================
	End of Showcase Section
   ========================== */




/* =========================
   Mobile
========================= */

@media (max-width: 700px) {

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 480px) {

  body {
    padding-top: 1.5rem;
  }

  .container {
    padding: 1rem;
  }

  .logo-wrap {
    margin-bottom: 2rem;
  }

  .mailing-block {
    margin-left: 0;
  }

  .stats-section {
    gap: 0.75rem;
    padding: 1rem 0.5rem;
  }

}

/* ==========================
   CTA Button (shared)
   ========================== */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.cta-btn:hover { background: rgba(201,168,76,0.12); color: var(--white); }

.showcase-cta {
  display: flex;
  justify-content: center;
  width: min(900px, 92vw);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.25);
}

/* ==========================
   Diagram & Pricing Section
   ========================== */
.diagram-section {
  width: min(900px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(201,168,76,0.45);
  margin-bottom: 3.5rem;
}

.gold-rule-diag {
  width: min(320px, 70vw);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  margin-bottom: 1.6rem;
}

.gold-rule-sm-diag {
  width: min(160px, 40vw);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  margin-bottom: 1.6rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-heading-diag {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.diagram-sub {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #e8e8e8;
  text-align: center;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 2.8rem;
}

.diagram-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.diagram-images img {
  width: calc(33% - 1.4rem);
  min-width: 200px;
  max-width: 280px;
  height: auto;
  display: block;
}

.size-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.size-list li {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #e8e8e8;
  position: relative;
  padding-left: 1.4rem;
  text-align: left;
}

.size-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.5rem;
  top: 0.42em;
}

.size-list li .price {
  color: var(--gold);
  font-weight: 600;
}

.pricing-line {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.7rem;
}

.pricing-note {
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
  margin-bottom: 2.6rem;
}

/* ==========================
   Inquiry Form Section
   ========================== */
.inquiry-section {
  width: min(620px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.45);
  margin-bottom: 2rem;
}

.inquiry-sub {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #e8e8e8;
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2.8rem;
}

.inquiry-sub em { color: var(--gold); font-style: normal; }

.inquiry-form {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 2.4rem 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.field-group { display: flex; flex-direction: column; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.inquiry-form label {
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  background: #fff;
  color: #111;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  padding: 0.72rem 0.9rem;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.18);
}

.inquiry-form select {
  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 d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.inquiry-form textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

.optional-label { color: #777; font-size: 0.9em; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.contact-method-group { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.contact-method-group input[type="radio"] { display: none; }
.contact-method-group label {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.1vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ddd;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.contact-method-group input[type="radio"]:checked + label {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.contact-method-group label:hover { border-color: var(--gold-dim); color: var(--gold-light); }

.field-legend {
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  display: block;
}

.submit-btn {
  margin-top: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.submit-btn:hover { background: rgba(201,168,76,0.12); color: var(--white); }

.privacy-note {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1vw, 0.68rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .diagram-images { flex-direction: column; align-items: center; }
  .diagram-images img { width: 80%; max-width: 320px; }
  .field-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 1.6rem 1.2rem 2rem; }
}

/* ==========================
   Form Success / Error
   ========================== */
.form-success,
.form-error {
  display: none;
  width: 100%;
  border-radius: 10px;
  padding: 2rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.4);
}

.form-error {
  background: rgba(180,40,40,0.08);
  border: 1px solid rgba(180,40,40,0.4);
}

.form-success-title {
  font-family: var(--font-main);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.form-error .form-success-title {
  color: #e08080;
}

.form-success-msg {
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #e8e8e8;
  line-height: 1.6;
}

.form-success-msg a {
  color: var(--gold);
  text-decoration: none;
}

.form-success-msg a:hover {
  color: var(--gold-light);
}
