/* Site Styles */

:root {
  --clr-gold: #fdde50;
  --clr-gold-dk: #e8c730;
  --clr-gold-lt: #fde97a;
  --clr-accent: #f08330;
  --clr-accent-dk: #d6711f;
  --clr-accent-lt: #f49d58;
  --clr-base: #1a1a2e;
  --clr-base-mid: #2d2d4e;
  --clr-white: #fff;
  --clr-cream: #fffdf0;
  --clr-sand: #f5f0d8;
  --clr-ink: #1a1a2e;
  --clr-ink-lt: #3d3d5c;
  --clr-panel: #fdde50;
  --clr-panel-dk: #f08330;
  --rnd: 10px;
  --rnd-lg: 14px;
  --ease: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: var(--clr-ink); background: var(--clr-cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.tf-header { background: var(--clr-accent); padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; }
.tf-header .tf-brand { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 1.6rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; line-height: 1.1; }
.tf-header .tf-brand .tf-hl { color: var(--clr-gold); }
.tf-header .tf-dial { color: var(--clr-base); font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: color var(--ease); }
.tf-header .tf-dial:hover { color: var(--clr-white); }

/* NAVIGATION */
nav { background: var(--clr-accent); padding: 0 40px; display: flex; justify-content: center; position: relative; border-top: 1px solid rgba(255,255,255,0.25); }
.tf-nav { display: flex; justify-content: center; gap: 0; }
.tf-nav > a, .tf-nav > .tf-ddwrap > a { color: var(--clr-base); padding: 14px 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; transition: background var(--ease), color var(--ease); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.tf-nav > a:hover, .tf-nav > a.current, .tf-nav > .tf-ddwrap:hover > a { background: var(--clr-gold); color: var(--clr-base); }

/* MOBILE TOGGLE */
.tf-mobwrap { display: none; justify-content: center; padding: 10px 20px; background: var(--clr-accent); width: 100%; }
.tf-mobbtn { display: none; background: none; border: 2px solid rgba(26,26,46,.4); border-radius: 6px; cursor: pointer; padding: 8px 12px; }
.tf-mobbtn span { display: block; width: 24px; height: 2.5px; background: var(--clr-base); border-radius: 3px; transition: all .3s ease; margin: 5px 0; }
.tf-mobbtn.current span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.tf-mobbtn.current span:nth-child(2) { opacity: 0; }
.tf-mobbtn.current span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* SUBMENU */
.tf-ddwrap { position: relative; }
.tf-ddwrap > a { cursor: pointer; }
.tf-ddlist { display: none; position: absolute; top: 100%; left: 0; background: var(--clr-base); min-width: 240px; border-radius: 0 0 var(--rnd) var(--rnd); box-shadow: 0 12px 40px rgba(0,0,0,.25); z-index: 200; overflow: hidden; }
.tf-ddlist a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,.85); font-family: 'Nunito Sans', sans-serif; font-size: .87rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.07); transition: all var(--ease); }
.tf-ddlist a:last-child { border-bottom: none; }
.tf-ddlist a:hover { background: var(--clr-accent); color: var(--clr-base); padding-left: 26px; }
.tf-ddwrap:hover .tf-ddlist { display: block; }

/* BANNER */
.tf-banner { position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: var(--clr-base); min-height: auto; }
.tf-banner-img { width: 100%; height: auto; display: block; object-fit: contain; }
.tf-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.6) 0%, rgba(26,26,46,.1) 60%, transparent 100%); z-index: 1; }

/* CATEGORY CARDS */
.tf-cards-area { max-width: 1200px; margin: 40px auto 0; padding: 0 20px 60px; position: relative; z-index: 3; }
.tf-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tf-card { border-radius: var(--rnd-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(26,26,46,.12); transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease, border-color .4s ease; cursor: pointer; border: 3px solid transparent; position: relative; background: var(--clr-gold); }
.tf-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 48px rgba(240,131,48,.3); border-color: var(--clr-accent); }
.tf-card a { display: block; color: inherit; position: relative; }
.tf-card .tf-card-photo { height: auto; overflow: hidden; position: relative; aspect-ratio: 1/1; }
.tf-card .tf-card-photo::after { content: ""; position: absolute; inset: 0; background: rgba(26,26,46,.1); opacity: 1; transition: opacity .4s ease; }
.tf-card:hover .tf-card-photo::after { opacity: 0; }
.tf-card .tf-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.tf-card:hover .tf-card-photo img { transform: scale(1.08); }
.tf-card .tf-card-title { display: block; background: var(--clr-gold); color: var(--clr-base); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-align: center; padding: 20px 16px; letter-spacing: 0.8px; text-transform: uppercase; transition: background .3s ease, color .3s ease; }
.tf-card:hover .tf-card-title { background: var(--clr-accent); color: var(--clr-base); }

/* PAGE LAYOUT */
.tf-layout { max-width: 1200px; margin: 0 auto; padding: 30px 20px 60px; display: grid; grid-template-columns: 1fr 350px; gap: 40px; }
.tf-body h1 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-accent); font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: .5px; }
.tf-body h2 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-accent); font-size: 1.9rem; font-weight: 800; margin-bottom: 20px; letter-spacing: .5px; }
.tf-body p { line-height: 1.8; margin-bottom: 16px; color: var(--clr-ink-lt); font-size: .97rem; }
.tf-body h3 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 1.3rem; font-weight: 700; margin: 30px 0 14px; letter-spacing: .4px; text-transform: uppercase; }
.tf-body a { color: var(--clr-accent-dk); font-weight: 700; transition: color var(--ease); text-decoration: underline; text-decoration-color: rgba(240,131,48,.35); text-underline-offset: 3px; }
.tf-body a:hover { color: var(--clr-accent); }
.tf-body ul { margin: 12px 0 20px 24px; color: var(--clr-ink-lt); }
.tf-body li { margin-bottom: 6px; font-size: .97rem; }
.tf-body .tf-featured-wrap { position: relative; border-radius: var(--rnd-lg); margin: 20px 0 24px; overflow: hidden; box-shadow: 0 6px 24px rgba(26,26,46,.12); }
.tf-body .tf-featured-img { width: 100%; border-radius: var(--rnd-lg); margin: 0; box-shadow: none; }

/* ASIDE PANEL */
.tf-aside { background: var(--clr-panel); border-radius: var(--rnd-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(26,26,46,.15); height: fit-content; position: sticky; top: 20px; }
.tf-aside-top { background: var(--clr-accent); padding: 24px; text-align: center; }
.tf-aside-top h3 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.tf-aside-top p { color: rgba(26,26,46,.85); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; margin-top: 4px; font-weight: 700; }
.tf-aside-top .tf-speed { color: rgba(26,26,46,.75); font-family: 'Nunito Sans', sans-serif; font-size: .82rem; margin-top: 6px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.tf-aside-mid { padding: 24px; }
.tf-aside-mid h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.tf-aside-mid .tf-loc-text { color: var(--clr-base); font-size: .87rem; margin-bottom: 16px; }
.tf-aside-mid iframe { border: 0; border-radius: var(--rnd); width: 100%; height: 200px; }
.tf-aside-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 24px 24px; background: var(--clr-accent); color: var(--clr-base); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; padding: 14px; border-radius: var(--rnd); text-transform: uppercase; letter-spacing: 1px; font-size: .95rem; transition: transform .2s, background .3s; box-shadow: 0 4px 16px rgba(240,131,48,.35); }
.tf-aside-btn:hover { transform: translateY(-2px); background: var(--clr-accent-dk); color: var(--clr-white); }
.tf-aside-links { margin: 0 24px 24px; background: var(--clr-accent); border-radius: var(--rnd); overflow: hidden; }
.tf-aside-links h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 16px 18px 12px; border-bottom: 1px solid rgba(255,255,255,.2); }
.tf-aside-links a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; color: var(--clr-base); font-size: .87rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.15); transition: all var(--ease); }
.tf-aside-links a:last-child { border-bottom: none; }
.tf-aside-links a:hover { background: var(--clr-gold); color: var(--clr-base); padding-left: 24px; }

/* SITE FOOTER */
footer { background: var(--clr-accent); padding: 50px 20px 30px; text-align: center; }
footer .tf-ft-brand { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
footer .tf-ft-dial { color: var(--clr-base); font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; transition: color var(--ease); }
footer .tf-ft-dial:hover { color: var(--clr-white); }
footer .tf-ft-loc { color: var(--clr-base-mid); font-size: .9rem; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }
footer .tf-ft-nav { margin-bottom: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; }
footer .tf-ft-nav a { color: var(--clr-base); font-size: .85rem; font-weight: 700; transition: color var(--ease); }
footer .tf-ft-nav a:hover { color: var(--clr-white); }
footer .tf-ft-nav .tf-div { color: rgba(26,26,46,.35); }
footer .tf-ft-copy { color: rgba(26,26,46,.65); font-size: .8rem; border-top: 1px solid rgba(26,26,46,.15); padding-top: 20px; }

/* BACK TO TOP */
.tf-uptop { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--clr-accent); color: var(--clr-base); border: none; border-radius: var(--rnd); cursor: pointer; box-shadow: 0 4px 16px rgba(240,131,48,.4); transition: opacity .3s, transform .2s, background .3s; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; font-size: 1.3rem; font-weight: 700; }
.tf-uptop.shown { opacity: 1; pointer-events: auto; }
.tf-uptop:hover { transform: translateY(-3px); background: var(--clr-accent-dk); color: var(--clr-white); }

/* CONTACT FORM */
.tf-action-area { background: linear-gradient(135deg, var(--clr-gold), var(--clr-accent)); padding: 55px 20px; text-align: center; }
.tf-action-area h2 { font-family: 'Barlow Condensed', sans-serif; color: var(--clr-base); font-size: 2rem; font-weight: 800; margin-bottom: 14px; letter-spacing: .5px; }
.tf-action-area p { color: var(--clr-base-mid); max-width: 680px; margin: 0 auto 20px; line-height: 1.7; font-size: .97rem; }
.tf-action-area .tf-action-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--clr-base); color: var(--clr-gold); font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; padding: 14px 36px; border-radius: var(--rnd); text-transform: uppercase; letter-spacing: 1px; transition: transform .2s, box-shadow .2s, background .3s; box-shadow: 0 4px 20px rgba(26,26,46,.3); border: none; cursor: pointer; }
.tf-action-area .tf-action-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,26,46,.45); background: var(--clr-base-mid); }
.tf-inquiry { max-width: 760px; margin: 0 auto; text-align: left; }
.tf-field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.tf-field { display: flex; flex-direction: column; gap: 6px; }
.tf-field-wide { margin-bottom: 16px; }
.tf-field label { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; color: var(--clr-base); text-transform: uppercase; letter-spacing: .5px; }
.tf-field input, .tf-field select, .tf-field textarea { background: rgba(255,255,255,.95); border: 2px solid transparent; border-radius: var(--rnd); padding: 11px 14px; font-family: 'Nunito Sans', sans-serif; font-size: .95rem; color: var(--clr-base); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; box-sizing: border-box; }
.tf-field input:focus, .tf-field select:focus, .tf-field textarea:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(240,131,48,.2); }
.tf-field select { cursor: pointer; }
.tf-field textarea { resize: vertical; min-height: 110px; }
.tf-field-send { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.tf-field-ok { margin-top: 18px; background: rgba(240,131,48,.2); border: 1px solid rgba(240,131,48,.5); color: var(--clr-base); padding: 12px 20px; border-radius: var(--rnd); font-weight: 600; font-size: .95rem; }

/* BREAKPOINTS */
@media(max-width: 900px) {
  .tf-cards-row { grid-template-columns: repeat(2, 1fr); }
  .tf-layout { grid-template-columns: 1fr; }
  .tf-header { flex-direction: column; align-items: center; padding: 14px 16px; gap: 8px; text-align: center; }
  .tf-header .tf-brand { font-size: 1rem; white-space: nowrap; justify-content: center; }
  .tf-header .tf-dial { font-size: 1.15rem; white-space: nowrap; justify-content: center; background: var(--clr-gold); color: var(--clr-base); padding: 8px 20px; border-radius: 50px; }
  .tf-card .tf-card-title { font-size: .75rem; padding: 14px 6px; letter-spacing: 0; }
  .tf-mobwrap { display: flex; }
  .tf-mobbtn { display: block; }
  nav { padding: 0; }
  .tf-nav { display: none; flex-direction: column; width: 100%; background: var(--clr-accent); }
  .tf-nav.expanded { display: flex; }
  .tf-nav > a, .tf-nav > .tf-ddwrap > a { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,.2); justify-content: center; text-align: center; }
  .tf-ddwrap { width: 100%; }
  .tf-ddwrap > a { display: flex; width: 100%; justify-content: center; }
  .tf-ddlist { position: static; box-shadow: none; border-radius: 0; background: rgba(0,0,0,.12); min-width: 100%; }
  .tf-ddlist a { padding: 14px 24px; justify-content: center; font-size: .85rem; }
  .tf-ddwrap:hover .tf-ddlist { display: none; }
  .tf-ddwrap .tf-ddlist.expanded { display: block !important; }
  footer .tf-ft-nav { gap: 6px 12px; }
}
@media(min-width: 901px) {
  .tf-nav { display: flex !important; justify-content: center; }
  .tf-mobwrap { display: none !important; }
}
@media(max-width: 550px) {
  .tf-cards-row { grid-template-columns: repeat(2, 1fr); }
  .tf-header .tf-brand { font-size: .85rem; }
  .tf-header .tf-dial { font-size: 1.05rem; padding: 7px 18px; }
  .tf-action-area h2 { font-size: 1.5rem; }
  .tf-field-pair { grid-template-columns: 1fr; }
  .tf-field-send { flex-direction: column; align-items: stretch; }
  .tf-body h1 { font-size: 1.7rem; }
  .tf-body h2 { font-size: 1.5rem; }
}
