/* =====================================================================================================
   FIELD REPORT — MOBILE-FIRST DROP-IN
   Clean rebuilt version
   - Mobile first
   - Prevents horizontal overflow
   - Keeps page narrower on phones
===================================================================================================== */

/* =========================================
   GLOBAL SAFETY
========================================= */

html,
body{
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

/* Narrow the actual page shell on phones */
.content-inner{
  width: 100%;
  min-width: 0;
  margin: 0 auto;
}

@media (max-width: 600px){
  .content-inner{
    max-width: 430px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* =========================================
   ROOT FIELD REPORT WRAPPER
========================================= */

.field-report{
  margin-bottom: 2.5rem;
  max-width: 100%;
  min-width: 0;
}

.field-report,
.field-report *{
  box-sizing: border-box;
}

/* =========================================
   MAIN FIELD REPORT PANEL
========================================= */

.field-report-glass{
  max-width: 100%;
  min-width: 0;
  padding: 1.25rem 1rem;
  overflow: visible;
  color: #0e1a2b;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.62),
      rgba(245,248,252,0.68)
    );

  border: 1px solid rgba(180,200,230,0.55);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.6);

  backdrop-filter: blur(14px);
}

/* =========================================
   TOP TEXT
========================================= */

.field-report-kicker{
  margin: 0 0 0.55rem;
  font-family: "Vollkorn", Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(20,40,70,.7);
}

.field-report-title{
  margin: 0.5rem 0 1.25rem;
  text-align: center;
  font-family: "EWOAncient", serif;
  font-size: clamp(1.85rem, 8vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
  color: rgba(12,26,48,.96);

  text-shadow:
    0 1px 0 rgba(255,255,255,.55),
    0 10px 22px rgba(0,0,0,.18);
}

/* =========================================
   FIELD META
========================================= */

.field-meta{
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.25rem 0 1.1rem;
  min-width: 0;
}

.field-meta .meta-row{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.6rem;
  min-width: 0;
}

.field-label{
  font-family: "Vollkorn", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,40,70,.6);
}

.field-value{
  font-weight: 600;
  color: #0e1a2b;
}

.field-meta .field-label{
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: rgba(20,40,70,.55);
}

.field-meta .field-value{
  font-weight: 400;
}

/* =========================================
   PRIMARY STATUS PANEL
========================================= */

.field-report-status{
  display: block;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 1.5rem;
  padding: 1.05rem 1rem;

  text-decoration: none;
  color: inherit;

  font-family: "Vollkorn", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      rgba(255,235,170,.48),
      rgba(255,245,205,.55)
    );

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.field-report-status:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);

  background:
    linear-gradient(
      90deg,
      rgba(255,235,170,.58),
      rgba(255,245,205,.65)
    );
}

.field-report-status,
.field-report-status:hover{
  text-decoration: none;
}

/* =========================================
   GRID
========================================= */

.field-report-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.2rem;

  max-width: 100%;
  min-width: 0;
}

.field-report-grid > *{
  min-width: 0;
  max-width: 100%;
}

/* =========================================
   CARD BASE
========================================= */

.field-item{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;

  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  height: auto;
  overflow: visible;

  padding: 0.95rem 0.9rem;

  background:
    linear-gradient(
      180deg,
      rgba(210,230,255,.55),
      rgba(195,220,250,.45)
    );

  border: 1px solid rgba(170,200,235,.55);
  border-radius: 12px;
}

.field-item__body{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;

  min-width: 0;
  min-height: 0;
  max-width: 100%;
  overflow: visible;
}

.field-item__footer{
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  overflow: visible;
}

.field-item p,
.field-item ul,
.field-item li{
  margin: 0;
}

.field-item ul{
  padding-left: 1.1rem;
}

/* =========================================
   LINKS / TEXT OVERFLOW SAFETY
========================================= */

.field-report a{
  color: rgba(28,60,120,0.88);
  font-weight: 600;
}

.field-report a:not(.field-report-status):hover{
  text-decoration: underline;
}

.field-report p,
.field-report li,
.field-report a,
.field-report-status,
.field-value,
.field-report__small{
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* =========================================
   LIFE CYCLE
========================================= */

.life-cycle{
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
  max-width: 100%;
  min-width: 0;
}

.cycle{
  padding: 0.35rem 0.6rem;
  border-radius: 999px;

  background: rgba(170,190,230,.22);
  border: 1px solid rgba(120,150,210,.35);

  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.cycle.current{
  background:
    linear-gradient(
      180deg,
      rgba(255,235,170,.95),
      rgba(255,220,120,.9)
    );

  border: 1px solid rgba(214,170,92,.95);
  font-weight: 700;
  box-shadow: 0 0 14px rgba(255,210,120,.65);
  transform: scale(1.05);
}

.cycle-notes{
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* =========================================
   SECONDARY BUTTON
========================================= */

.field-report__button{
  display: inline-block;
  max-width: 100%;
  margin-top: 0.65rem;
  padding: 0.5rem 0.8rem;

  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;

  background:
    linear-gradient(
      180deg,
      rgba(200,220,255,.22),
      rgba(170,190,230,.18)
    );

  border: 1px solid rgba(120,150,210,.32);
  border-radius: 10px;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.field-report__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);

  background:
    linear-gradient(
      180deg,
      rgba(200,220,255,.30),
      rgba(170,190,230,.24)
    );
}

/* =========================================
   WEATHER
========================================= */

.field-report__wx{
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: rgba(51,94,155,0.86);
}

.field-item--weather p,
.field-item--weather ul,
.field-item--weather li{
  margin: 0;
}

.field-item--weather ul{
  padding-left: 1.1rem;
}

.field-item--weather .field-report__trends li{
  color: rgba(14,26,43,0.88);
}

.field-report li strong,
.field-report p strong{
  font-weight: 700;
  color: rgba(14,26,43,0.92);
}

.field-report__station{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  max-width: 100%;
  min-width: 0;
}

.field-report__station-link{
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  max-width: 100%;
  min-width: 0;

  padding: 0.25rem 0.55rem;

  font-weight: 700;
  text-decoration: none;
  color: rgba(28,78,216,0.95);

  background: rgba(170,190,230,0.14);
  border: 1px solid rgba(120,150,210,0.22);
  border-radius: 10px;

  transition:
    transform .12s ease,
    box-shadow .12s ease,
    background .12s ease;
}

.field-report__station-link:hover{
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(170,190,230,0.20);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.field-report__station-link:focus-visible{
  outline: 2px solid rgba(28,78,216,0.45);
  outline-offset: 3px;
}

.field-report__small{
  display: inline-block;
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(15,30,55,0.62);
}

/* =========================================
   SHIPPING CALENDAR
========================================= */

.ship-cal{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.55rem;

  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ship-month{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 0.4rem 0.25rem;

  border-radius: 999px;
  border: 1px solid rgba(120,150,210,.35);

  background: rgba(170,190,230,.18);
  color: rgba(14,26,43,.85);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}

.ship-month.preorder{
  background:
    linear-gradient(
      180deg,
      rgba(190,215,255,.85),
      rgba(160,195,240,.70)
    );

  border-color: rgba(120,150,210,.35);
  color: rgba(20,40,70,.85);
}

.ship-month.ship{
  background:
    linear-gradient(
      180deg,
      rgba(200,245,215,.85),
      rgba(165,230,185,.65)
    );

  border-color: rgba(70,150,95,.45);
  color: rgba(10,35,20,.90);
  box-shadow: 0 0 10px rgba(160,230,185,.35);
}

.ship-month.current{
  background:
    linear-gradient(
      180deg,
      rgba(255,235,170,.95),
      rgba(255,220,120,.9)
    );

  border: 1px solid rgba(214,170,92,.95);
  font-weight: 700;
  box-shadow: 0 0 14px rgba(255,210,120,.65);
  transform: scale(1.05);
}

.ship-legend{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(15,30,55,.72);
}

.ship-legend-item{
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ship-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.ship-dot.preorder{
  background: rgb(135,185,250);
}

.ship-dot.ship{
  background: rgba(120,205,150,.90);
}

.ship-cal-note{
  font-size: 0.95rem;
  color: rgba(15,30,55,.78);
}

/* =========================================
   CTA / NOTE HELPERS
========================================= */

.field-report__cta-btn{
  max-width: 100%;
}

.field-report-note{
  font-style: italic;
  color: rgba(15,30,55,.75);
}

/* =========================================
   FIELD REPORT PHOTO
========================================= */

.field-report__photo{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 1.5rem 0;
  overflow: hidden;

  border: 1px solid rgba(80,55,25,.28);
  border-radius: 14px;
}

.field-report__photo .photo-trigger{
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}

.field-report__photo-placeholder{
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 1.5rem 0;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(80,55,25,0.28);
  border-radius: 14px;
  background: transparent;
}

.field-report__photo img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.field-report__caption{
  margin: 0;
  padding: 0.6rem 0.7rem;

  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;

  color: rgba(40,55,80,.7);
}

.field-report__caption .field-label{
  font-weight: 600;
  color: rgba(40,55,80,.8);
}

/* =========================================
   SAFETY OVERRIDES
========================================= */

.field-report .card-glass__body,
.field-report .card-hiero,
.field-report .field-item{
  overflow: visible;
  max-height: none;
  height: auto;
}

/* =========================================
   BREAKPOINTS
========================================= */

@media (min-width: 480px){

  .field-report-glass{
    padding: 1.5rem 1.2rem;
  }

  .field-report-status{
    padding: 1.15rem 1.15rem;
    font-size: 1.12rem;
  }

  .field-item{
    padding: 1rem;
  }

  .ship-cal{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 700px){

  .field-report-glass{
    padding: 1.8rem 1.5rem;
  }

  .field-report-title{
    margin: 0.65rem 0 1.45rem;
    font-size: clamp(2.1rem, 4.5vw, 2.7rem);
  }

  .field-report-status{
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.3rem;
    font-size: 1.2rem;
  }

  .field-report-grid{
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .ship-cal{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .field-report__photo,
  .field-report__photo-placeholder{
    margin: 1.75rem 0;
  }
}

@media (min-width: 1100px){

  .field-report-glass{
    padding: 2.2rem 2.4rem;
  }

  .field-report-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .field-item{
    gap: 0.9rem;
    padding: 0.85rem 1rem;
  }

  .field-report-status{
    padding: 1.35rem 1.4rem;
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}

@media (min-width: 1400px){
  .field-report-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}